Skip to main content

Crazy About Her | Netflix Official Site

UNLIMITED TV SHOWS & MOVIES
Sign Out

Crazy About Her

After spending a wild night together, Adri discovers the only way to see Carla again is to become a patient at the psychiatric center where she resides.
Starring:Álvaro Cervantes,Susana Abaitua,Luis Zahera
Watch all you want.

Videos

Crazy About Her

More Details

Watch offline
Available to download
This movie is...
Cynical,Offbeat,Intimate,Inspiring,Romantic
Audio
English,English,European Spanish - Audio Description,European Spanish [Original],European Spanish - Audio Description,European Spanish [Original]
Subtitles
English,English,European Spanish
Cast
Álvaro CervantesSusana AbaituaLuis ZaheraClara SeguraAixa VillagránPaula MaliaNil CardonerTxell AixendriAlberto San Juan

Coming Soon

Comments

Popular posts from this blog

How To Make a Pagination Using HTML and CSS

  CSS Code 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 <style> . center {    text-align : center ; }   .pagination {    display : inline-block ; }   .pagination a {    color : black ;    float : left ;    padding : 8px 16px ;    text-decoration : none ;    transition : background-color . 3 s;    border : 1px solid #ddd ;    margin : 0 4px ; }   .pagination a.active {    background-color : #002468 ;    color : white ; }   .pagination a:hover:not(.active) { background-color : #ddd ;} </style> HTML Code 1 2 3 4 5 6 7 8 9 10 11 12 < div class = "center" >    < div class = "pagination" >    < a href = "#" >&laquo;</ a >    < a href = "#" >1</ a >    < a href = "#" class = "active" >2</ a >    < a href = "#" ...