:root {
    /* Colors from Figma */
    --color-deep-blue: #04003F;
    --color-vibrant-green: #00FF37;
    --color-white: #FFFFFF;

    /* Gradients */
    --gradient-blue: linear-gradient(90deg, #042EB8 0%, #04003F 100%);
    --gradient-green: linear-gradient(270deg, #00FF4D 0%, #003F13 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    /* Alt for IvyPresto Headline */
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --section-width: 2560px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-deep-blue);
    line-height: 1.5;
    background-color: #04003F;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

body.no-scroll {
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1290px;
    height: 74px;
    z-index: 1100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-container-glass {
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.20);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 2px solid rgba(252, 252, 252, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
    /* Slightly more padding for a cleaner edge */
}

.nav-container-glass nav {
    flex: 1;
    display: flex;
    margin-right: 60px;
    /* Space between links and button */
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #04003F;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 35px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(90deg, #042EB8 0%, #04003F 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hamburger Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #04003F;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 0, 63, 0.5);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.btn-contato-glass {
    display: flex;
    width: 166px;
    height: 35px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background: linear-gradient(90deg, #042EB8 0%, #04003F 100%);
    color: #FFF;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-contato-glass:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 961px;
    background: url('../img/img hero desktop.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 45px;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.hero-content {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding-top: 134px;
    padding-left: 170px;
}

.hero-text {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.hero-title {
    color: var(--color-deep-blue);
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 300;
    line-height: normal;
}

.hero-crm-line {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin: 5px 0;
}

.hero-crm-line .line {
    flex: 1;
    height: 1px;
    background: var(--color-deep-blue);
    opacity: 0.2;
}

.hero-crm {
    color: var(--color-deep-blue);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
}

.hero-subtitle {
    color: var(--color-deep-blue);
    font-family: var(--font-heading);
    font-size: 25px;
    font-style: italic;
    font-weight: 300;
    line-height: normal;
}

.hero-tagline {
    color: var(--color-deep-blue);
    font-family: var(--font-body);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

.btn-cta {
    display: flex;
    width: 280px;
    height: 52px;
    padding: 0 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid #00FF37;
    background: var(--gradient-green);
    color: #FFFFFF;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 255, 77, 0.3);
}

.icon-whatsapp {
    width: 24px;
    height: 24px;
}

.hero-box {
    display: flex;
    width: 100%;
    max-width: 1380px;
    min-height: 214px;
    padding: 50px 80px;
    justify-content: center;
    align-items: center;
    border-radius: 32px;
    background: var(--gradient-blue);
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(4, 0, 63, 0.3);
}

.hero-box-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.5;
}

.hero-box-content strong {
    font-weight: 700;
}

/* Dobra 2 - Aprofundamento */
.aprof {
    position: relative;
    width: 100%;
    min-height: 961px;
    background: url('../img/img bg dobra 2 desktop.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.aprof-container {
    max-width: 1280px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.aprof-content {
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    color: #FFFFFF;
}

.aprof-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aprof-tag {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 300;
    line-height: normal;
    position: relative;
    width: fit-content;
}

.aprof-tag::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.4);
}

.aprof-title {
    font-family: var(--font-body);
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 10px;
}

.aprof-title strong {
    font-weight: 700;
}

.aprof-text-blocks {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.aprof-text-blocks p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.aprof-text-blocks p strong {
    font-weight: 600;
}

/* Dobra 3 - Sobre a Simpatectomia */
.sobre-simp {
    position: relative;
    width: 100%;
    min-height: 545px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

.sobre-container {
    max-width: 1280px;
    width: 100%;
}

.sobre-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.sobre-text {
    flex: 1;
    max-width: 597px;
    color: var(--color-deep-blue);
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sobre-title {
    font-family: var(--font-body);
    /* Specific to section 3: Inter */
    font-size: 40px;
    font-weight: 600;
    line-height: normal;
}

.sobre-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sobre-description p {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.sobre-description p strong {
    font-weight: 600;
}

.sobre-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.sobre-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 40px;
    /* Rounded corners as per screenshot */
    box-shadow: 0 10px 30px rgba(4, 0, 63, 0.1);
}

/* Dobra 4 - Sobre o Doutor */
.bio {
    position: relative;
    width: 100%;
    min-height: 1090px;
    background: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 20px;
}

.bio-container {
    max-width: 1277px;
    width: 100%;
}

.bio-card {
    position: relative;
    width: 100%;
    max-width: 1277px;
    min-height: 1005px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1277' height='1005' viewBox='0 0 1277 1005' fill='none'%3E%3Cpath d='M563.143 0C229.104 -0.000120259 62.4404 0.883396 14.7518 1.18926C6.51517 1.24209 0 7.93397 0 16.1707V989.777C0 998.067 6.72496 1004.79 15.0152 1004.78L1262.02 1003.52C1270.29 1003.51 1277 996.794 1277 988.515L1277 15C1277 6.71573 1270.32 0 1262.03 3.22254e-06L714.497 0C679.033 -4.96876e-06 676.634 43.5972 641.193 45.2217C603.913 46.9305 600.448 1.34439e-05 563.143 0Z' fill='%2304003F'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
    padding: 100px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
}

.bio-notch {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 23px;
    height: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

.notch-arrow {
    margin-top: -5px;
}

.bio-grid {
    display: flex;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.bio-photo-wrapper {
    flex: 1;
    max-width: 480px;
}

.bio-photo {
    width: 100%;
    height: auto;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.bio-info {
    flex: 1.5;
    color: #FFFFFF;
}

.bio-title {
    font-family: var(--font-heading);
    font-size: 45px;
    font-weight: 300;
    color: #F5D0BF;
    margin-bottom: 30px;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bio-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0.9;
}

.bio-text p strong {
    font-weight: 600;
    opacity: 1;
}

.bio-cta {
    display: flex;
    justify-content: flex-start;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

@media (max-width: 991px) {
    .bio-cta {
        justify-content: center;
    }
}

/* Dobra 5 - Minhas Especialidades */
.especialidades {
    width: 100%;
    background: #FFFFFF;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
}

.especialidades-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.especialidades-header {
    font-family: var(--font-heading);
    font-size: 55px;
    font-weight: 300;
    color: var(--color-deep-blue);
    text-align: center;
}

.especialidades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    justify-items: center;
}

.spec-card {
    display: flex;
    width: 100%;
    max-width: 280px;
    height: 420px;
    padding: 28.285px 24.244px;
    flex-direction: column;
    align-items: center;
    gap: 20.204px;
    border-radius: 20px;
    border: 0.808px solid #04003F;
    background: #FFFFFF;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(4, 0, 63, 0.1);
}

.spec-img-wrapper {
    width: 100%;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.spec-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spec-title {
    color: #04003F;
    text-align: center;
    font-family: var(--font-body);
    font-size: 20.204px;
    font-weight: 600;
    line-height: 28.285px;
}

.spec-text {
    color: #04003F;
    text-align: center;
    font-family: var(--font-body);
    font-size: 16.526px;
    font-weight: 300;
    line-height: 24.244px;
}

/* Dobra 6 - Depoimentos */
.depoimentos {
    width: 100%;
    min-height: 510px;
    background: linear-gradient(93deg, #04003F 24.59%, #042EB8 103.02%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.depoimentos-container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    padding: 80px 60px;
}

.depoimentos-text {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.depoimentos-title {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 35px;
    font-weight: 700;
    line-height: 40px;
}

.depoimentos-subtitle {
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.85;
}

.depoimentos-widget {
    width: 100%;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.depoimentos-widget::before,
.depoimentos-widget::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none;
}

.depoimentos-widget::before {
    left: 0;
    background: linear-gradient(to right, #04003F, transparent);
}

.depoimentos-widget::after {
    right: 0;
    background: linear-gradient(to left, #042EB8, transparent);
}

/* Carousel wrapper */
.reviews-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    animation: reviewsScroll 40s linear infinite;
    width: max-content;
}

.reviews-carousel:hover {
    animation-play-state: paused;
}

@keyframes reviewsScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Review Card */
.review-card {
    flex: 0 0 300px;
    background: #FFFFFF;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    cursor: default;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    flex-shrink: 0;
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.review-name {
    color: #111;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.review-time {
    color: #888;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
}

.review-google-logo {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-stars {
    color: #F9AB00;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
}

.review-text {
    color: #333;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.55;
}

/* ===== Dobra 7: Convênios ===== */
.convenios {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 109px 40px;
    background: linear-gradient(93deg, #04003F 24.59%, #042EB8 103.02%);
}

.convenios-container {
    width: 100%;
    max-width: 1630px;
    margin: 0 auto;
}

.convenios-card {
    display: flex;
    width: 100%;
    padding: 70px 80px 105px;
    flex-direction: column;
    align-items: center;
    gap: 74px;
    border-radius: 32px;
    background: linear-gradient(58deg, #FFF 67.11%, #D9D9D9 101.4%);
}

.convenios-title {
    color: #04003F;
    text-align: center;
    font-family: var(--font-body);
    font-size: 45px;
    font-weight: 600;
    line-height: normal;
}

.convenios-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 59px 50px;
    width: 100%;
    max-width: 1057px;
}

.convenio-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 calc(25% - 38px);
    max-width: 200px;
}

/* Last 5 items (row 3): narrower to fit 5 per row */
.convenio-logo:nth-child(n+9) {
    flex: 0 0 calc(20% - 40px);
    max-width: 170px;
}

.convenio-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.convenios-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.convenios-note {
    color: #04003F;
    text-align: center;
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
}

.convenios-note-italic {
    color: #04003F;
    text-align: center;
    font-family: var(--font-body);
    font-size: 22px;
    font-style: italic;
    font-weight: 400;
    line-height: 28px;
}

.convenios-btn {
    margin-top: 24px;
}

/* ===== Dobra 8: FAQ ===== */
.faq {
    display: flex;
    width: 100%;
    padding: 118px 20px 75px;
    justify-content: center;
    align-items: center;
    background: #FFF;
}

.faq-container {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.faq-title {
    color: #04003F;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    font-weight: 500;
    line-height: 39px;
    text-transform: uppercase;
}

.faq-accordion {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    width: 100%;
    border-radius: 7px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-header {
    display: flex;
    width: 100%;
    min-height: 79px;
    padding: 10px 25px;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(90deg, #008CFF 0%, #04003F 100%);
    transition: background 0.3s ease;
}

.faq-question {
    color: #FFF;
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -1px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.faq-content {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    background: #FFF;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
}

.faq-content p {
    color: #787878;
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    letter-spacing: -0.8px;
    padding: 20px 0;
}

/* Active State */
.faq-item.active .faq-header {
    background: #042EB8;
    /* Solid color as specified */
}

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

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.4s ease-in;
}

/* ===== Dobra 9: Final CTA & Footer ===== */
.final-cta {
    display: flex;
    width: 100%;
    padding: 143.5px 20px 142.5px;
    justify-content: center;
    align-items: center;
    background: linear-gradient(93deg, #04003F 24.59%, #042EB8 103.02%);
    color: #FFF;
}

.final-cta-container {
    width: 100%;
    max-width: 1240px;
    /* Based on paddings from 2561 viewport */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-top {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.cta-text-content {
    flex: 1;
    max-width: 708px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cta-heading {
    font-family: 'Inter', sans-serif;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    text-transform: uppercase;
}

.cta-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-description p {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 28px;
    opacity: 0.9;
}

.cta-image-wrapper {
    flex: 0 0 540px;
}

.cta-portrait {
    width: 100%;
    height: auto;
    border-radius: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.footer-divider {
    width: 100%;
    max-width: 1260px;
    margin-bottom: 60px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: 220px 1fr 220px;
    gap: 100px;
    width: 100%;
    max-width: 1260px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.info-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-icon {
    flex: 0 0 24px;
    margin-top: 5px;
}

.info-link {
    color: #E3E3E3;
    font-family: 'Inter', sans-serif;
    font-size: 19.9px;
    font-weight: 500;
    line-height: 31.8px;
    letter-spacing: -0.8px;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.info-link:hover {
    color: #FFF;
}

.info-text {
    color: #E3E3E3;
    font-family: 'Inter', sans-serif;
    font-size: 19.9px;
    font-weight: 500;
    line-height: 31.8px;
    letter-spacing: -0.8px;
}

.hours {
    flex-direction: column;
    gap: 10px;
}

.hours-title {
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -1px;
}

.hours-text {
    font-family: 'Inter', sans-serif;
    font-size: 19.9px;
    font-weight: 400;
    line-height: 31.8px;
    letter-spacing: -0.8px;
}

.hours-text strong {
    font-weight: 700;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 14px;
    text-align: center;
}

/* Animations */
.hero-text>*,
.hero-box,
.aprof-content>*,
.sobre-text,
.sobre-media,
.bio-grid,
.bio-cta,
.especialidades-header,
.spec-card,
.depoimentos-text,
.depoimentos-widget,
.convenios-card,
.faq-item,
.cta-text-content,
.cta-image-wrapper,
.footer-info-grid>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

.delay-6 {
    transition-delay: 0.6s;
}

/* ============================================================
   RESPONSIVE — Mobile-First Media Queries
   ============================================================ */

/* -------- Large Desktop (> 1200px) -------- */
@media (max-width: 1200px) {
    .cta-top {
        gap: 40px;
    }

    .cta-image-wrapper {
        flex: 0 0 400px;
    }

    .footer-info-grid {
        gap: 40px;
    }
}

/* -------- Medium Desktop / Small Laptop (≤ 1100px) -------- */
@media (max-width: 1100px) {
    .cta-top {
        flex-direction: column;
        text-align: center;
    }

    .cta-text-content {
        align-items: center;
    }

    .cta-image-wrapper {
        flex: 0 0 auto;
        max-width: 450px;
        width: 100%;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }
}

/* -------- Tablet / Bio Card (≤ 991px) -------- */
@media (max-width: 991px) {
    .bio-grid {
        flex-direction: column;
        text-align: center;
    }

    .bio-photo-wrapper {
        max-width: 320px;
        margin-bottom: 40px;
    }

    .bio-card {
        mask-image: none;
        -webkit-mask-image: none;
        border-radius: 40px;
        min-height: auto;
        background-image: none;
        background-color: var(--color-deep-blue);
        padding: 60px 40px;
    }

    .bio-notch {
        display: none;
    }

    .bio-cta {
        justify-content: center;
    }

    .sobre-content {
        flex-direction: column;
        text-align: center;
    }

    .sobre-media {
        justify-content: center;
    }

    .sobre-img {
        max-width: 100%;
    }
}

/* -------- Tablet (≤ 768px) — Mobile Menu + Layout Shifts -------- */
@media (max-width: 768px) {

    /* === Mobile Menu === */
    .menu-toggle {
        display: flex;
    }

    .nav-container-glass {
        padding: 0 20px;
    }

    .nav-container-glass nav {
        margin-right: 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: #FFFFFF;
        padding: 100px 30px 40px;
        z-index: 1080;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-links {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 17px;
        line-height: 1.4;
        border-radius: 12px;
        transition: background 0.2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(4, 46, 184, 0.08);
    }

    .btn-contato-glass {
        width: auto;
        min-width: 100px;
        height: 32px;
        font-size: 13px;
        padding: 0 16px;
        border-radius: 50px;
    }

    /* === Hero === */
    .hero {
        min-height: 700px;
        padding-bottom: 30px;
        background-image: url('../img/img_hero_mobile.webp');
        background-position: center top;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-content {
        padding-top: 110px;
        padding-left: 0;
        justify-content: center;
    }

    .hero-text {
        max-width: 90%;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-crm {
        font-size: 14px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-box {
        padding: 35px 25px;
        border-radius: 20px;
        margin: 0 16px;
    }

    .hero-box-content {
        font-size: 16px;
    }

    /* === Aprofundamento === */
    .aprof {
        min-height: auto;
        padding: 80px 20px;
    }

    .aprof-container {
        justify-content: center;
    }

    .aprof-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

    .aprof-tag {
        font-size: 36px;
    }

    .aprof-tag::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .aprof-title {
        font-size: 26px;
    }

    .aprof-text-blocks p {
        font-size: 17px;
    }

    /* === Simpatectomia === */
    .sobre-simp {
        padding: 60px 20px;
    }

    .sobre-title {
        font-size: 30px;
    }

    .sobre-description p {
        font-size: 17px;
    }

    /* === Bio === */
    .bio {
        padding: 60px 16px;
        min-height: auto;
    }

    .bio-title {
        font-size: 34px;
    }

    .bio-text p {
        font-size: 17px;
    }

    /* === Especialidades === */
    .especialidades {
        padding: 60px 16px;
    }

    .especialidades-header {
        font-size: 36px;
    }

    .especialidades-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .spec-card {
        max-width: 100%;
        height: auto;
    }

    /* === Depoimentos === */
    .depoimentos {
        min-height: auto;
    }

    .depoimentos-container {
        padding: 60px 20px;
        flex-direction: column;
        gap: 30px;
    }

    .depoimentos-text {
        max-width: 100%;
        text-align: center;
    }

    .depoimentos-title {
        font-size: 26px;
        line-height: 32px;
    }

    .depoimentos-subtitle {
        font-size: 17px;
        line-height: 24px;
    }

    /* === Convênios === */
    .convenios {
        padding: 60px 16px;
    }

    .convenios-card {
        padding: 40px 20px 60px;
        gap: 40px;
        border-radius: 20px;
    }

    .convenios-title {
        font-size: 28px;
    }

    .convenios-grid {
        gap: 30px 20px;
    }

    .convenio-logo {
        flex: 0 0 calc(33.33% - 14px);
        max-width: 140px;
    }

    .convenio-logo:nth-child(n+9) {
        flex: 0 0 calc(33.33% - 14px);
        max-width: 140px;
    }

    .convenio-logo img {
        max-height: 55px;
    }

    .convenios-note,
    .convenios-note-italic {
        font-size: 16px;
        line-height: 22px;
    }

    /* === FAQ === */
    .faq {
        padding: 60px 16px 50px;
    }

    .faq-title {
        font-size: 30px;
        line-height: 36px;
    }

    .faq-question {
        font-size: 18px;
        letter-spacing: -0.5px;
    }

    .faq-header {
        min-height: 64px;
        padding: 10px 18px;
    }

    .faq-content p {
        font-size: 16px;
        line-height: 24px;
    }

    /* === Final CTA & Footer === */
    .final-cta {
        padding: 60px 16px;
    }

    .cta-top {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 50px;
    }

    .cta-text-content {
        align-items: center;
    }

    .cta-heading {
        font-size: 28px;
        line-height: 34px;
    }

    .cta-description p {
        font-size: 17px;
        line-height: 24px;
    }

    .cta-image-wrapper {
        flex: 0 0 auto;
        max-width: 380px;
        width: 100%;
    }

    .cta-portrait {
        border-radius: 30px;
    }

    .footer-info-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }

    .info-text,
    .info-link {
        font-size: 16px;
        line-height: 24px;
    }

    .hours-title {
        font-size: 20px;
        line-height: 28px;
    }

    .hours-text {
        font-size: 16px;
        line-height: 24px;
    }

    /* Touch-friendly button sizing */
    .btn-cta {
        min-height: 52px;
        width: 100%;
        max-width: 320px;
        font-size: 15px;
    }

    .btn-contato-glass {
        min-height: 44px;
    }
}

/* -------- Small Smartphones (≤ 480px) — Fine-tuning for 420px -------- */
@media (max-width: 480px) {

    /* Navbar */
    .navbar {
        top: 10px;
        width: 95%;
        height: 60px;
    }

    .nav-container-glass {
        padding: 0 16px;
        border-radius: 30px;
    }

    .menu-toggle {
        width: 26px;
        height: 18px;
    }

    .nav-menu {
        padding: 90px 24px 30px;
    }

    .nav-link {
        font-size: 16px;
        padding: 12px 14px;
    }

    /* Hero */
    .hero {
        min-height: 960px;
        padding-bottom: 8px;
        justify-content: flex-start;
    }

    .hero-container {
        gap: 0;
        padding: 0 12px;
        flex: 1;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-text {
        max-width: 100%;
        gap: 8px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-crm {
        font-size: 12px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .hero-box {
        padding: 40px 35px;
        border-radius: 28px;
        margin: 330px 0px 0px 0px;
        min-height: auto;
        width: 90%;
        max-width: none;
    }

    .hero-box-content {
        font-size: 15px;
        gap: 12px;
        text-align: left;
    }

    /* Aprofundamento */
    .aprof {
        padding: 60px 16px;
    }

    .aprof::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(4, 0, 63, 0.85);
        z-index: 1;
    }

    .aprof-container {
        position: relative;
        z-index: 2;
    }

    .aprof-tag {
        font-size: 28px;
        width: 100%;
        text-align: center;
    }

    .aprof-tag::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .aprof-title {
        font-size: 22px;
    }

    .aprof-text-blocks {
        gap: 18px;
    }

    .aprof-text-blocks p {
        font-size: 15px;
    }

    /* Simpatectomia */
    .sobre-simp {
        padding: 50px 16px;
    }

    .sobre-content {
        gap: 30px;
    }

    .sobre-title {
        font-size: 24px;
    }

    .sobre-description p {
        font-size: 15px;
    }

    .sobre-img {
        border-radius: 20px;
    }

    /* Bio */
    .bio {
        padding: 40px 12px;
    }

    .bio-card {
        padding: 40px 20px;
        border-radius: 24px;
    }

    .bio-grid {
        gap: 30px;
        text-align: left;
        align-items: flex-start;
    }

    .bio-photo-wrapper {
        max-width: 260px;
        margin: 0 auto 30px;
    }

    .bio-info {
        width: 100%;
    }

    .bio-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .bio-text {
        gap: 14px;
    }

    .bio-text p {
        font-size: 15px;
        line-height: 1.5;
    }

    .bio-cta {
        margin-top: 25px;
    }

    /* Especialidades */
    .especialidades {
        padding: 50px 12px;
    }

    .especialidades-container {
        gap: 30px;
    }

    .especialidades-header {
        font-size: 28px;
    }

    .especialidades-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .spec-card {
        max-width: 100%;
        height: auto;
        padding: 24px 20px;
    }

    .spec-img-wrapper {
        height: 150px;
    }

    .spec-title {
        font-size: 18px;
        line-height: 24px;
    }

    .spec-text {
        font-size: 14px;
        line-height: 20px;
    }

    /* Depoimentos */
    .depoimentos-container {
        padding: 40px 12px;
        gap: 24px;
    }

    .depoimentos-title {
        font-size: 22px;
        line-height: 28px;
    }

    .depoimentos-subtitle {
        font-size: 15px;
        line-height: 22px;
    }

    /* Convênios */
    .convenios {
        padding: 40px 10px;
    }

    .convenios-card {
        padding: 30px 14px 40px;
        gap: 28px;
        border-radius: 16px;
    }

    .convenios-title {
        font-size: 22px;
    }

    .convenios-grid {
        gap: 20px 14px;
    }

    .convenio-logo {
        flex: 0 0 calc(50% - 10px);
        max-width: 130px;
    }

    .convenio-logo:nth-child(n+9) {
        flex: 0 0 calc(50% - 10px);
        max-width: 130px;
    }

    .convenio-logo img {
        max-height: 45px;
    }

    .convenios-note,
    .convenios-note-italic {
        font-size: 14px;
        line-height: 20px;
    }

    /* FAQ */
    .faq {
        padding: 40px 12px 40px;
    }

    .faq-container {
        gap: 30px;
    }

    .faq-title {
        font-size: 24px;
        line-height: 30px;
    }

    .faq-question {
        font-size: 15px;
        letter-spacing: 0;
    }

    .faq-header {
        min-height: 56px;
        padding: 10px 14px;
    }

    .faq-content p {
        font-size: 14px;
        line-height: 22px;
        padding: 14px 0;
    }

    .faq-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* Final CTA & Footer */
    .final-cta {
        padding: 40px 12px;
    }

    .cta-top {
        gap: 30px;
        margin-bottom: 35px;
    }

    .cta-heading {
        font-size: 22px;
        line-height: 28px;
    }

    .cta-description p {
        font-size: 15px;
        line-height: 22px;
    }

    .cta-image-wrapper {
        max-width: 300px;
    }

    .cta-portrait {
        border-radius: 24px;
    }

    .footer-divider {
        margin-bottom: 30px;
    }

    .footer-info-grid {
        gap: 24px;
        margin-bottom: 30px;
    }

    .info-text,
    .info-link {
        font-size: 14px;
        line-height: 22px;
    }

    .hours-title {
        font-size: 18px;
        line-height: 24px;
    }

    .hours-text {
        font-size: 14px;
        line-height: 22px;
    }

    .footer-copyright {
        font-size: 12px;
    }

    /* Touch-friendly: larger tap targets */
    .btn-cta {
        min-height: 52px;
        width: 100%;
        max-width: 100%;
        font-size: 15px;
        padding: 0 20px;
    }
}