/* Fonts */
@font-face {
    font-family: 'Futura';
    src: url('fonts/FUTUR.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/futur18.TTF') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/FUTURALI.TTF') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura';
    src: url('fonts/Futura Md BT Bold.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Book';
    src: url('fonts/Futura Bk BT Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Book';
    src: url('fonts/Futura Bk BT Book Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Futura XK';
    src: url('fonts/FUTURAXK.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Futura', 'Arial', sans-serif;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-top {
    background-color: #9fdad30f;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

.phone-icon {
    width: 30px;
    height: 30px;
}

.phone-icon-custom {
    width: 45px;
    height: 45px;
}

.header-bottom {
    padding: 15px 0;
}

.header-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav li:not(:last-child)::after {
    content: '|';
    margin-left: 20px;
    color: #ccc;
}

.nav a {
    font-family: 'Futura Book', sans-serif;
    text-decoration: none;
    color: #7a968e;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s;
}

.nav a:hover {
    color: #00a8a8;
}

.urofill-logo img {
    height: 60px;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #666;
    transition: 0.3s;
}

.urofill-logo-menu {
    display: none;    
    padding: 20px 0 20px;
    margin-left: 23px;   
}

.urofill-logo-menu img {
    height: 60px;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-image: url('images/capa-com-gabriel.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    position: relative;
}

.hero-overlay {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-family: 'Futura', sans-serif;
    font-size: 100px;
    font-weight: 500;
    color: #0d2d35;
    margin-bottom: 20px;
    letter-spacing: -7px;
}

.subtitle {
    font-family: 'Futura Book', sans-serif;
    font-size: 38px;
    color: #0d2d35;
    font-weight: 600;
    line-height: 39px;
    margin-bottom: 40px;
}

/* CTA Buttons - CONSOLIDADO */
.cta-wrapper {
    position: relative;
    display: inline-block;
}

.cta-button,
.cta-button-urofill,
.cta-button-structure,
.cta-button-locations {
    font-family: 'Futura', sans-serif;
    display: inline-flex;
    align-items: center;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
    padding-right: 70px;
    position: relative;
}


.cta-button {
    background-color: #0d2d35;
    font-size: 22px;
}

@media(max-width:434px) {
    .cta-button {
        font-size: 16px;
    }
}


.cta-button-urofill {
    background-color: #1a1a1a;
    margin-bottom: 10px;    
}

@media(min-width:1025px) {
    .cta-button-urofill {
       margin-top: 80px; 
    }
}


.cta-button-structure,
.cta-button-locations {
    background-color: #9edb56;
    color: black;
    white-space: nowrap;
}



.cta-button-urofill.bottom {
    margin-bottom: 0;
    margin-top: 25px;
}

.button-icon,
.button-icon-urofill,
.button-icon-structure,
.button-icon-locations {
    width: 60px;
    height: 60px;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.button-icon {
    width: 70px;
    height: 70px;
    right: -12px;
}

/* Features Section */
.features {
    background-color: #fff;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.feature-card {
    text-align: center;
}

.feature-icon {
    margin-bottom: 25px;
}

.feature-icon img {
    width: 50px;
    height: 50px;
}

.feature-card h3 {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
    color: #1a3d5c;
    font-size: 20px;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.feature-text {
    max-width: 80%;
    margin: 0 auto;
}

.feature-card p {
    font-family: 'Futura Book', sans-serif;
    font-weight: normal;
    color: #474747;
    font-size: 19px;
    line-height: 20px;
    margin: 0;
}

/* Specialized Care Section */
.specialized-care {
    background-image: url('images/imagem-especialidades.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
}

.specialized-overlay {   
    min-height: 44pc;
    display: flex;
    align-items: center;
}

.specialized-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.specialized-text {
    max-width: 600px;
    padding-right: 40px;
}

.specialized-header {
    display: grid;
    grid-template-columns: 260px 1fr;
    column-gap: 25px;
    align-items: start;
}
.specialized-left .small-title {
    display: inline-block;
    font-family: 'Futura', sans-serif;
    font-size: 40px;
    font-weight: 400;
    color: #3a83a3;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1.9;
}

.specialized-right .highlight-black {
    font-family: 'Futura', sans-serif;
    color: #1a1a1a;  
    margin-bottom: 35px;
    display: block; 
    line-height: 1;
    font-size: 60px;
    font-weight: 500;
}

.specialized-right .specialties-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 30px 0;
}

.specialized-right .specialties-list li {
    font-family: 'Futura Book', sans-serif;
    font-size: 25px;
    color: #3a83a3;
    font-weight: 600;
    margin-bottom: 3px;
    padding-left: 25px;
    position: relative;
    line-height: 1.4;
    white-space: nowrap;    
}

.specialized-right .specialties-list li a {
    color: #3a83a3;
    text-decoration: none;
    display: inline;
    transition: opacity 0.3s;
}

.specialized-right .specialties-list li a:hover {
    opacity: 0.7;
}

.specialized-right .specialties-list li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 19px;
    height: 23px;
    background-image: url('images/icone-seta.png');
    background-size: contain;
    background-repeat: no-repeat;
    top: 52%;
    transform: translateY(-50%);
}
.custom-margin-top {
    margin-top: -100px;
}

/* UroFill Section */
.urofill-section {
    background-color: #f5f5f5;
    padding: 80px 0 60px;
}

.custom-container-Uro-Fill {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 20px;
}

.urofill-content {
    display: grid;
    grid-template-columns: 1fr 1fr;    
    margin-bottom: -20rem;
    align-items: start;
}

@media (max-width:1323px) {
    .urofill-content {
       margin-bottom: -25rem; 
    }
}

.urofill-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.urofill-title {
    font-family: 'Futura', sans-serif;
    font-size: 48px;
    font-weight: 500;
    color: #2b7a9f;
    margin-bottom: 30px;
    letter-spacing: -1px;
    white-space: nowrap;
}

.urofill-logo-container {
    margin-bottom: 10px;
}

.urofill-logo-large {
    max-width: 80%;
    width: 100%;
    height: auto;
}

.urofill-subtitle {
    font-family: 'Futura Book', sans-serif;
    font-size: 16px;
    color: #2b7a9f;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

@media (max-width:1040px) {
    .urofill-subtitle {
        margin-bottom: 0px;
    }
}

.urofill-doctor-image {
    width: 100%;
    max-width: 450px;
}

.urofill-doctor-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-left: 100px;
}

.urofill-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: relative;
    margin-top: -50px;
}

.couples-images {
    max-width: 520px;
    width: 100%;
    margin-bottom: 25px;
}

.couples-images img {
    width: 100%;
    height: auto;
    display: block;
}

.urofill-description {
    max-width: 650px;
    width: 100%;    
}

.urofill-description p {
    font-family: 'Futura Book', sans-serif;
    font-size: 23px;    
    color: #666;       
}

.urofill-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.urofill-feature-card {
    background-color: #4caf50;
    padding: 30px 20px;
    text-align: center;
    border-radius: 5px;
}

.urofill-feature-card h3 {
    font-family: 'Futura', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;   
    letter-spacing: -0.5px;
}

.urofill-feature-card p {
    font-family: 'Futura Book', sans-serif;
    font-size: 24px;
    color: #1a3d1a;    
    margin: 0;
}

/* About Doctor Section */
.about-doctor {
    background-color: #fff;
    padding: 80px 0 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 120px;
    align-items: start;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 110%;
    height: auto;
    display: block;
}

.about-text {
    padding-top: 0;
}

.about-title {
    font-family: 'Futura Book', sans-serif;
    font-size: 36px;
    color: #333;
    font-weight: 400;
    margin: 0;    
}

.about-name {
    font-family: 'Futura', sans-serif;
    font-size: 36px;
    color: #333;
    font-weight: 500;
    margin: -6px 0 15px 0;    
}

.about-text p {
    font-family: 'Futura Book', sans-serif;
    font-size: 20px;
    color: #333;
    line-height: 25px;   
}

.custom-margin-bottom-paragrafos {
    margin-bottom: 20px;
}

.credentials {
    margin-top: 30px;
}

.credentials p {
    font-family: 'Futura Book', sans-serif;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Clinic Structure Section */
.clinic-structure {
    background-color: #fff;
    padding: 40px 0 80px;
    padding-bottom: 0px;
}

.structure-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;    
}

.structure-title {
    flex-shrink: 0;
    margin-top: 35px;
}

.structure-title h2 {
    font-family: 'Futura', sans-serif;
    font-size: 42px;
    color: #333;
    font-weight: 500;
    margin: 0;
    line-height: 1;
    letter-spacing: -1px;
}

.structure-subtitle {
    font-family: 'Futura Book', sans-serif;
    font-size: 24px;
    color: #333;
    margin: 5px 0 0 0;
    text-align: right;
}

.header-line {
    flex: 1;
    height: 3px;
    background-color: #333;
    margin-left: 15px;
}

.structure-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: start;
}

.structure-text {
    padding-right: 20px;
}

.structure-text p {
    font-family: 'Futura Book', sans-serif;
    font-size: 19px;
    color: #333;    
    margin-bottom: 25px;     
}

.author-name {
    font-family: 'Futura Book', sans-serif;
    font-size: 15px;
    color: #333;
    font-style: italic;
    margin-top: 30px;
    font-weight: 300;
}

.structure-gallery {
    width: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.gallery-item {
    width: 100%;
    height: 140px;
    object-fit: cover;
    object-position: center;
    cursor: pointer;
    border-radius: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #9edb56;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    color: #fff;    
    border: none;
    cursor: pointer;
    padding: 20px 25px;
    border-radius: 5px;
    transition: background 0.3s;
    z-index: 10001;
}


.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.blue-line {
    width: 100%;
    height: 15px;
    background-color: #2b7a9f;
    margin-top: 20px;
}

/* Lightbox */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.80);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 50px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: #9edb56;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 35px;
    color: #fff;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
    border-radius: 5px;
    transition: opacity 0.3s;
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    opacity: 0.8;
    color:#9edb56 ;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

/* Locations Section */
.locations {
    background-color: #ffff;
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.locations-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.locations-title {
    font-family: 'Futura Book', sans-serif;
    font-size: 36px;
    color: #333;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.2;
}

.locations-title .title-bold {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
    display: block;
}

.cta-button-locations {
    margin-bottom: 50px;
}

.logo-location {
    width: 100%;
    max-width: 280px;
    align-self: center;
}

.logo-location img {
    width: 100%;
    height: auto;
    display: block;
}

.location-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 90%;
}

.card-header {
    background-color: #e8f4f85c;
    padding: 20px 20px;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #00000017;
    border-radius: 10px 10px 0 0;
}

.card-header h3 {
    font-family: 'Futura', sans-serif;
    font-size: 24px;
    color: #2b7a9f;
    font-weight: 500;
    margin: 0 0 8px 0;
}

.card-subtitle {
    font-family: 'Futura', sans-serif;
    font-size: 19px;
    color: #1a3d5c;
    font-weight: 500;
    margin: 0 0 15px 0;
}

.card-address {
    font-family: 'Futura', sans-serif;
    font-size: 15px;
    color: #1a3d5c;
    font-weight: 500;
    line-height: 1.2;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-icon {
    width: 40px;
    height: 40px;
}

.phone-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ddd {
    font-family: 'Futura', sans-serif;
    font-size: 20px;
    color: #2b7a9f;
    font-weight: 500;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.phone-numbers a {
    font-family: 'Futura', sans-serif;
    font-size: 20px;
    color: #2b7a9f;
    text-decoration: none;
    font-weight: 500;
}

.footer-phone .phone-numbers a {
    font-family: 'Futura', sans-serif;
    font-size: 20px;
    color: #7a968e;
    text-decoration: none;
    font-weight: 500;
}

.phone-numbers a:hover {
    text-decoration: underline;
}

.whatsapp-number {
    font-family: 'Futura', sans-serif;
    font-size: 20px;
    color: #2b7a9f;
    text-decoration: none;
    font-weight: 500;
}

.whatsapp-number:hover {
    text-decoration: underline;
}

.card-image {
    width: 100%;
    flex: 1;
    min-height: 300px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Appointment Section */
.appointment-section {
    background: linear-gradient(135deg, #2b7a9f 0%, #4a9fc0 100%);
    padding: 80px 0;
    overflow-x: hidden;
}

.appointment-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.appointment-left {
    display: flex;
    justify-content: center;
    width: 100%;
}

.whatsapp-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.whatsapp-icon-large img {
    width: 100px;
    height: 100px;
}

.appointment-title {
    font-family: 'Futura Book', sans-serif;
    font-size: 37px;
    color: #333;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 40px;
}

.appointment-title .bold {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
}

.appointment-phone {
    font-family: 'Futura', sans-serif;
    font-size: 42px;
    color: #2b7a9f;
    font-weight: 500;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.appointment-phone:hover {
    text-decoration: underline;
}

.appointment-or {
    font-family: 'Futura Book', sans-serif;
    font-size: 25px;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.appointment-phones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.phone-icon-white {
    width: 50px;
    height: 50px;
}

.ddd-agende-consulta {
    font-family: 'Futura', sans-serif;
    font-size: 40px;
    color: #2b7a9f;
    font-weight: 500;
}

.phones-numbers {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.phones-numbers a {
    font-family: 'Futura', sans-serif;
    font-size: 40px;
    color: #2b7a9f;
    text-decoration: none;
    font-weight: 500;
}

.phones-numbers a:hover {
    text-decoration: underline;
}

.appointment-right {
    padding-left: 20px;
    width: 100%;
    box-sizing: border-box;
}

.faq-title {
    font-family: 'Futura Book', sans-serif;
    font-size: 32px;
    color: #fff;
    font-weight: 400;
    margin-bottom: 35px;
    line-height: 30px;
}

.faq-title .bold {
    font-family: 'Futura', sans-serif;
    font-weight: 500;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-item {
    background-color: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-sizing: border-box;
    max-width: 100%;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    background-color:#ebebeb9e;
}

.faq-icon {
    width: 11px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(90deg);
}

.faq-question span {
    font-family: 'Futura Book', sans-serif;
    font-size: 16px;
    color: #333;
    font-weight: 600;
    word-wrap: break-word;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 15px 25px 15px 55px;
}

.faq-answer p {
    font-family: 'Futura Book', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {    
    padding: 60px 0 0;
    overflow-x: hidden;
    width: 100%;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
    box-sizing: border-box;
    width: 100%;
}

.footer-content {
    display: grid;
    grid-template-columns: 260px 1fr 120px 340px;
    gap: 80px;
    align-items: start;
    justify-content: space-between;
    width: 97%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.footer-logo-col {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-logo {
    width: 220px;
    height: auto;
    max-width: 100%;
}

.footer-menu-col {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-menu li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.menu-arrow {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.footer-menu a {
    font-family: 'Futura Book', sans-serif;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    word-wrap: break-word;
}

.footer-menu a:hover {
    color: #7a968e;
}

.voltar-topo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Futura Book', sans-serif;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
    transition: color 0.3s;
}

.voltar-topo:hover {
    color: #2b7a9f;
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-ddd {
    font-family: 'Futura', sans-serif;
    font-size: 22px;
    color: #7a968e;
    font-weight: 500;
}

.footer-social-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding-top: 5px;
    width: 100%;
}

.social-link img {
    width: 65px;
    height: 65px;
    transition: transform 0.3s;
}

.social-link:hover img {
    transform: scale(1.1);
}

.footer-map-col {
    width: 100%;
    max-width: 340px;
    box-sizing: border-box;
    overflow: hidden;
}

.footer-map {
    width: 100%;
    height: 230px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.footer-bottom {   
    padding: 18px 0;
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    font-family: 'Futura Book', sans-serif;
    font-size: 14px;
    color: #000000;
    margin: 0;
    font-weight: 400;
}

/* ========================================
   MEDIA QUERIES - CONSOLIDADAS
   ======================================== */

/* Tablet Large - 1140px */
@media (max-width: 1140px) {
    .menu-toggle {
        display: flex;
    }

    .urofill-logo {
        display: none;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        z-index: 999;
        visibility: hidden;
        opacity: 0;
    }

    .nav.active {
        max-height: 500px;
        visibility: visible;
        opacity: 1;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        align-items: flex-start;
    }

    .nav li:not(:last-child)::after {
        display: none;
    }

    .header-bottom {
        position: relative;
    }

    .nav.active .urofill-logo-menu {
        display: block;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .nav ul {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 80px;
    }

    .subtitle {
        font-size: 30px;
        line-height: 35px;
    }

    .specialized-header { 
        grid-template-columns: 200px 1fr; 
        column-gap: 28px; 
    }
    
    .specialized-left .small-title { 
        font-size: 32px; 
        line-height: 1.5;
    }
    
    .specialized-right .specialties-list li { 
        font-size: 17px;  
        white-space: nowrap;
    }

    .specialized-right .specialties-list li::before {
        width: 15px;
        height: 15px;
        top: 37%;
        left: 5px;
    }
    
    .specialized-right .highlight-black { 
        font-size: 44px; 
    }

    /* UroFill */
    .urofill-content {
        gap: 40px;
    }
    
    .urofill-title {
        font-size: 40px;
        white-space: normal;
    }
    
    .urofill-logo-large {
        max-width: 350px;
    }
    
    .couples-images {
        max-width: 450px;
    }
    
    .urofill-description {
        margin-left: -80px;
    }

    /* About */
    .about-content {
        grid-template-columns: 350px 1fr;
        gap: 50px;
    }
    
    .about-title,
    .about-name {
        font-size: 32px;
    }
    
    .about-text p {
        font-size: 17px;
    }
    
    .custom-margin-bottom-paragrafos {
        margin-bottom: 8px;
    }

    .about-doctor {
        padding-bottom: 5px;
    }
    
    .credentials p {
        font-size: 15px;
    }

    /* Structure */
    .structure-header {
        flex-wrap: wrap;        
    }
    
    .structure-title {
        flex: 0 0 auto;
    }
    
    .header-line {
        flex: 1;
        min-width: 100px;
    }
    
    .structure-title h2 {
        font-size: 36px;
    }
    
    .structure-subtitle {
        font-size: 20px;
        text-align: left;
    }
    
    .structure-content {
        grid-template-columns: 350px 1fr;
        gap: 40px;
    }
    
    .structure-text p {
        font-size: 16px;
    }
    
    .author-name {
        font-size: 14px;
    }

    .blue-line {
        margin-top: 40px;
    }

    /* Locations */
    .locations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .locations-left {
        grid-column: 1 / -1;
        margin-bottom: 20px;
        align-items: flex-start;
    }
    
    .locations-title {
        font-size: 35px;
        text-align: left;
        align-self: center;
    }
    
    .logo-location {
        align-self: center;
    }

    .cta-button-locations {
        align-self: center;
    }

    /* Appointment */
    .appointment-container {
        gap: 40px;
    }
    
    .whatsapp-card {
        padding: 50px 40px;
        max-width: 500px;
    }
    
    .whatsapp-icon-large img {
        width: 90px;
        height: 90px;
    }
    
    .appointment-title {
        font-size: 30px;
    }
    
    .appointment-phone {
        font-size: 38px;
    }
    
    .ddd-agende-consulta {
        font-size: 26px;
    }
    
    .phones-numbers a {
        font-size: 26px;
    }
    
    .appointment-right {
        padding-left: 0;
    }
    
    .faq-title {
        font-size: 28px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 240px 1fr 100px 300px;
        gap: 50px;
    }

    .footer-map-col {
        max-width: 100%;
    }

    .footer-map {
        width: 100%;
        max-width: 100%;
    }
}

/* Tablet Medium - 1040px - UroFill specific */
@media (max-width: 1040px) {
    .urofill-section {
        padding: 60px 20px 40px;
    }
    
    .urofill-content {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 0;
    }
    
    .urofill-left {
        align-items: center;
        text-align: center;
    }
    
    .urofill-right {
        align-items: center;
        margin-top: 0;
    }
    
    .urofill-title {
        font-size: 36px;
        text-align: center;
        white-space: normal;
    }
    
    .urofill-logo-large {
        max-width: 300px;
    }
    
    .urofill-doctor-image {
        max-width: 350px;
        margin: 0 auto; /* Centraliza no mobile */
    }
    
    .urofill-doctor-image img {
        margin-left: 0px;
    }

    .couples-images {
        max-width: 100%;
    }

    .cta-button-urofill.bottom {
        margin-bottom: 30px;
        margin-top: 40px;
    }

    .urofill-description {
        max-width: 100%;
        margin-left: 0;
    }
    
    .urofill-description p {
        text-align: left;
        font-size: 20px;
    }
    
    .urofill-features {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0; /* Remove o margin negativo no mobile */
    }
}

@media (max-width: 1040px) and (min-width: 670px) {
    .couples-images {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet - 1205px - Specialized specific */
@media (max-width: 1205px) {
    .specialized-right .specialties-list li {
        white-space: normal !important;
    }
}

/* Tablet - 1278px - Footer specific */
@media (max-width: 1278px) {
    .footer-content {
        grid-template-columns: 240px 1fr 100px 300px;
        gap: 50px;
    }
}

/* Tablet Medium - 1100px - Footer grid change */
@media (max-width: 1100px) and (min-width: 601px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "logo menu"
            "social map";
        gap: 50px 40px;
        align-items: start;
        text-align: left;
    }

    .footer-logo-col {
        grid-area: logo;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .footer-menu-col {
        grid-area: menu;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    .footer-menu ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-phone {
        justify-content: flex-start;
    }

    .footer-social-col {
        grid-area: social;
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
        gap: 25px;
    }

    .footer-map-col {
        grid-area: map;
        max-width: 100%;
    }

    .footer-map {
        height: 260px;
    }
}

/* About - 910px */
@media (max-width: 910px) {
    .about-doctor {
        padding: 60px 0 40px;
        padding-bottom: 0px;
    }
    
    .about-image img {
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .about-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 5px;
    }
    
    .about-name {
        font-size: 35px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .about-text p {
        font-size: 16px;
        text-align: left;
    }
    
    .credentials {
        margin-top: 25px;
    }
    
    .credentials p {
        font-size: 15px;
    }
}

/* Structure - 903px */
@media (max-width: 903px) {
    .cta-button-structure {        
        margin-top: 25px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2px;
    }
    
    .gallery-item {
        height: 180px;
    }
}



/* Mobile - 768px */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        min-height: 62pc;
        background-image: url('images/capa-mobile.jpg');
    }

    .hero-overlay {
        padding: 60px 20px;
    }

    .hero-text h1 {
        font-size: 60px;
    }

    .subtitle {
        font-size: 25px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .specialized-care {
        min-height: 600px;
    }
    
    .specialized-overlay {        
        min-height: 600px;
        padding: 40px 0;
    }
    
    .specialized-content {
        justify-content: center;
    }
    
    .specialized-text {
        padding-right: 0;
        max-width: 100%;
        text-align: center;
    }
    
    .specialized-header {
        grid-template-columns: 1fr;
        row-gap: 12px;
        text-align: center;
    }
    
    .specialized-left {
        order: 1;
    }
    
    .specialized-right {
        order: 2;
    }
    
    .specialized-left .small-title,
    .specialized-right .highlight-black {
        display: block;
        margin-left: 0;
        text-align: center;
    }
    
    .specialized-right .specialties-list {
        display: inline-block;
        text-align: left;
        margin: 8px auto 30px auto;
    }

    .custom-margin-top {
        margin-top: -10em;
    }

  /* Mobile - 768px */
@media (max-width: 768px) {
    /* Structure */
    .clinic-structure {
        padding: 30px 0 60px;
        padding-bottom: 0px;
    }
    
    .structure-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .structure-title {
        width: 100%;
    }
    
    .cta-button-structure {
        order: 4;
        align-self: flex-start;
        margin-top: 0px;
    }
    
    .structure-title h2 {
        font-size: 30px;
    }
    
    .structure-subtitle {
        font-size: 18px;
        text-align: left;
    }
    
    .structure-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .structure-text {
        padding-right: 0;
    }
    
    .author-name {
        font-size: 14px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2px;
    }
    
    .gallery-item {
        height: 25rem;
    }
    
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 40px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 35px;
        padding: 15px 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

    /* Locations */
    .locations {
        padding: 60px 0;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .locations-left {
        margin-bottom: 10px;
        align-items: flex-start;
    }

    .location-card {
        height: 100%;
    }
    
    .cta-button-locations {
        font-size: 14px;
        padding: 10px 20px;
        padding-right: 60px;
        margin-bottom: 35px;
    }
    
    .button-icon-locations {
        width: 50px;
        height: 50px;
    }
    
    .logo-location {
        max-width: 240px;
        align-self: center;
    }
    
    .card-header {
        min-height: auto;
        padding: 20px 15px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .card-subtitle,
    .card-address {
        font-size: 15px;
    }
    
    .ddd {
        font-size: 18px;
    }
    
    .phone-numbers a,
    .whatsapp-number {
        font-size: 18px;
    }
    
    .card-image {
        min-height: 240px;
    }

    /* Appointment */
    .appointment-section {
        padding: 60px 0;
    }
    
    .appointment-container {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }
    
    .whatsapp-card {
        max-width: 100%;
        padding: 40px 30px;
    }
    
    .whatsapp-icon-large img {
        width: 80px;
        height: 80px;
    }
    
    .appointment-title {
        font-size: 26px;
    }
    
    .appointment-phone {
        font-size: 34px;
    }
    
    .ddd-agende-consulta {
        font-size: 24px;
    }
    
    .phones-numbers a {
        font-size: 24px;
    }
    
    .appointment-right {
        padding-left: 0;
    }
    
    .faq-title {
        text-align: center;
    }
    
    .faq-item.active .faq-answer {
        padding: 20px 25px 20px 50px;
    }
}

/* Mobile Small - 600px - Footer */
@media (max-width: 600px) {
    .footer-container {
        padding: 0 10px 0px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-menu {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .footer-phone {
        justify-content: center;
    }

    .footer-social-col {
        flex-direction: row;
        justify-content: center;
    }

    .footer-map-col {
        max-width: 100%;
        width: 100%;
    }

    .footer-map {
        width: 100%;
        height: 240px;
        max-width: 100%;
    }

    .footer-bottom p {
        font-size: 13px;
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .social-icon img {
        width: 80%;
        height: 80%;
    }

    .phone-icon {
        width: 25px;
        height: 25px;
    }

    .social-icons {
        gap: 3px;
    }

    .specialized-left .small-title { 
        font-size: 26px; 
    }
    
    .specialized-right .highlight-black { 
        font-size: 32px; 
    }

    /* UroFill */
    .urofill-title {
        font-size: 28px;
        white-space: normal;
    }
    
    .urofill-logo-large {
        max-width: 250px;
    }
    
    .urofill-subtitle {
        font-size: 14px;
    }
    
    .cta-button-urofill {
        font-size: 16px;
        padding: 10px 20px;
        padding-right: 60px;
    }
    
    .button-icon-urofill {
        width: 50px;
        height: 50px;
    }
    
    .urofill-description p {
        font-size: 16px;
    }
    
    .urofill-feature-card h3 {
        font-size: 20px;
    }
    
    .urofill-feature-card p {
        font-size: 16px;
    }

    /* About */
    .about-doctor {
        padding: 40px 0 30px;
        padding-bottom: 0px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-name {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .credentials p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* Mobile Small - 480px */
@media (max-width: 480px) {
    .clinic-structure {
        padding: 30px 0 40px;
        padding-bottom: 0px;
    }
    
    .structure-title h2 {
        font-size: 26px;
    }
    
    .structure-subtitle {
        font-size: 16px;
    }
    
    .cta-button-structure {
        font-size: 14px;
        padding: 10px 20px;
        padding-right: 60px;
    }
    
    .button-icon-structure {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 13px;
    }

    .blue-line {
        margin-top: 30px;
    }
    
    .gallery-item {
        height: 220px;
    }
}
    /* Locations */
    .locations {
        padding: 40px 0;
    }
    
    .locations-title {
        font-size: 28px;
        text-align: left;
    }
    
    .cta-button-locations {
        font-size: 13px;
    }
    
    .card-header {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .card-header h3 {
        font-size: 18px;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
    }
    
    .ddd {
        font-size: 22px;
    }
    
    .phone-numbers a,
    .whatsapp-number {
        font-size: 20px;
    }
    
    .card-image {
        min-height: 200px;
    }

    /* Appointment */
    .appointment-section {
        padding: 40px 0;
    }
    
    .appointment-container {
        padding: 0 10px;
    }
    
    .whatsapp-card {
        padding: 30px 25px;
    }
    
    .whatsapp-icon-large img {
        width: 70px;
        height: 70px;
    }
    
    .appointment-title {
        font-size: 22px;
    }
    
    .appointment-phone {
        font-size: 30px;
    }
    
    .ddd-agende-consulta{
        font-size: 22px;
    }
    
    .phones-numbers a {
        font-size: 22px;
    }
    
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 12px 20px;
    }
    
    .faq-question span {
        font-size: 14px;
    }
    
    .faq-item.active .faq-answer {
        padding: 12px 20px 12px 45px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

.lista-faq {
    font-family: 'Futura Book', sans-serif;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}



html {
    scroll-behavior: smooth;
}

/* Popup Styles */
.specialty-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
    display: inline;
}

.specialty-link:hover {
    opacity: 0.8;
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow-y: auto;
}

.popup-overlay.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup-content {
    background-color: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 50px 40px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #666;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
    padding: 0;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.popup-close:hover {
    color: #2b7a9f;
}

.popup-content h2 {
    font-family: 'Futura', sans-serif;
    font-size: 32px;
    color: #2b7a9f;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.popup-content h3 {
    font-family: 'Futura', sans-serif;
    font-size: 24px;
    color: #333;
    font-weight: 500;
    margin-top: 25px;
    margin-bottom: 15px;
}

.popup-content p,
.popup-content li {
    font-family: 'Futura Book', sans-serif;
    font-size: 22px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 15px;
}

.popup-content ul {
    list-style: none;
    padding-left: 0;
}

.popup-content ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 5px;
}

.popup-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2b7a9f;
    font-size: 24px;
    line-height: 1.6;
    top: 0;
}

/* Media Queries */
@media (max-width: 768px) {
    .popup-content {
        padding: 40px 25px 30px;
        max-height: 85vh;
    }
    
    .popup-content h2 {
        font-size: 26px;
    }
    
    .popup-content h3 {
        font-size: 20px;
    }
    
    .popup-content p,
    .popup-content li {
        font-size: 20px;
    }
}
.phone span a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.phone span a:hover {
    color: #00a8a8;
    text-decoration: underline;
}


@media (min-width: 769px) {
    .phone span a,
    .footer-phone .phone-numbers a,
    .phone-numbers a:not(.whatsapp-number),
    .phones-numbers a {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
    
    .phone span a:hover,
    .footer-phone .phone-numbers a:hover,
    .phone-numbers a:not(.whatsapp-number):hover,
    .phones-numbers a:hover {
        color: inherit;
        text-decoration: none;
    }
}


@media (max-width: 768px) {
    .phone span a,
    .footer-phone .phone-numbers a,
    .phone-numbers a:not(.whatsapp-number),
    .phones-numbers a {
        pointer-events: auto;
        cursor: pointer;
    }
}

