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

        a:focus,
        button:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        :root {
            --bg: #0d2e2e;
            --bg-light: #163f3f;
            --gold: #c9a96e;
            --gold-dark: #b08d4f;
            --white: #ffffff;
            --white-90: rgba(255, 255, 255, 0.9);
            --white-70: rgba(255, 255, 255, .7);
            --white-50: rgba(255, 255, 255, .5);
            --dark: #1a1a1a;
            --bg-footer: #081e1e;
            --font-title: 'League Spartan', sans-serif;
            --font-body: 'Merriweather', serif;
            --container: 1140px;
            --header-h: 80px
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-h)
        }

        body {
            font-family: var(--font-body);
            color: var(--white);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-title);
            font-weight: 600;
            line-height: 1.2
        }

        a {
            color: inherit;
            text-decoration: none
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        .container {
            width: 90%;
            max-width: var(--container);
            margin: 0 auto
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-title);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: .95rem;
            transition: all .3s ease;
            cursor: pointer;
            border: none
        }

        .btn-gold {
            background: var(--gold);
            color: var(--dark)
        }

        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 169, 110, .3)
        }

        .btn-outline {
            border: 2px solid var(--white-50);
            color: var(--white);
            background: transparent
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px)
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 12px
        }

        .section-sub {
            color: var(--white-70);
            font-size: 1rem;
            margin-bottom: 48px;
            max-width: 600px
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .8s ease, transform .8s ease
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: var(--bg);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            z-index: 1000;
            transition: background .3s, box-shadow .3s
        }

        .header.scrolled {
            background: rgba(13, 46, 46, .97);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%
        }

        .header-logo img {
            height: 50px;
            width: auto
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px
        }

        .nav a {
            font-family: var(--font-title);
            font-size: .9rem;
            font-weight: 500;
            letter-spacing: .5px;
            color: var(--white-90);
            transition: color .3s;
            position: relative
        }

        .nav a:hover,
        .nav a.active {
            color: var(--gold)
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width .3s
        }

        .nav a:hover::after {
            width: 100%
        }

        .dropdown {
            position: relative
        }

        .dropdown-toggle {
            cursor: pointer
        }

        .dropdown-toggle svg {
            width: 10px;
            margin-left: 4px;
            transition: transform .3s
        }

        .dropdown.open .dropdown-toggle svg {
            transform: rotate(180deg)
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-light);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 12px;
            padding: 8px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
        }

        .dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: .85rem;
            white-space: nowrap
        }

        .dropdown-menu a::after {
            display: none
        }

        .dropdown-menu a:hover {
            background: rgba(201, 169, 110, .1)
        }

        .header .btn {
            padding: 10px 24px;
            font-size: .85rem
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: all .3s
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px)
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px)
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-h);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-h));
            background: var(--bg);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            z-index: 999
        }

        .mobile-menu.open {
            display: flex
        }

        .mobile-menu a {
            font-family: var(--font-title);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--white-90)
        }

        .mobile-menu a:hover {
            color: var(--gold)
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: calc(var(--header-h) + 40px) 0 60px;
            background: linear-gradient(135deg, var(--bg) 0%, #0a2424 50%, #112d2d 100%);
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(201, 169, 110, .04) 0%, transparent 70%);
            pointer-events: none
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 60px
        }

        .hero-content {
            flex: 1;
            z-index: 2
        }

        .hero-label {
            font-family: var(--font-title);
            font-size: .85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px
        }

        .hero-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold)
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            margin-bottom: 16px;
            font-weight: 700
        }

        .hero h1 span {
            color: var(--gold)
        }

        .hero-subtitle {
            font-size: clamp(.95rem, 1.8vw, 1.15rem);
            color: var(--white-70);
            margin-bottom: 36px;
            max-width: 520px;
            line-height: 1.8
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }

        .hero-image {
            flex: 0 0 380px;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            overflow: hidden
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
            width: 100%;
            height: 520px;
            object-fit: cover;
            object-position: top center
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            border-radius: 20px;
            z-index: -1;
            opacity: .3
        }

        /* ABOUT */
        .about {
            padding: 130px 0;
            background: var(--bg)
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 60px
        }

        .about-image {
            flex: 0 0 360px;
            position: relative
        }

        .about-image img {
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
            width: 100%;
            height: 480px;
            object-fit: cover;
            object-position: top center;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: -16px;
            width: 120px;
            height: 120px;
            border-left: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
            border-radius: 0 0 0 16px;
            opacity: .4
        }

        .about-content {
            flex: 1
        }

        .about-content p {
            color: var(--white-70);
            font-size: .95rem;
            margin-bottom: 24px;
            line-height: 1.9
        }

        /* SPECIALTIES */
        .specialties {
            padding: 130px 0;
            background: var(--bg-lighter)
        }

        .specialties .container {
            text-align: center
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px
        }

        .card {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 16px;
            padding: 40px 28px;
            text-align: center;
            transition: all .4s ease;
            position: relative;
            overflow: hidden
        }

        .card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, .13);
            border-color: rgba(201, 169, 110, .5);
            box-shadow: 0 12px 36px rgba(0, 0, 0, .3)
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity .4s
        }

        .card:hover::before {
            opacity: 1
        }

        .card-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: rgba(201, 169, 110, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5
        }

        .card h3 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--white)
        }

        .card p {
            font-size: .85rem;
            color: var(--white-70);
            margin-bottom: 20px;
            line-height: 1.7
        }

        .card-link {
            font-family: var(--font-title);
            font-size: .85rem;
            color: var(--gold);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap .3s
        }

        .card-link:hover {
            gap: 12px
        }

        /* CREDENTIALS */
        .credentials {
            padding: 100px 0;
            background: var(--bg)
        }

        .credentials .section-sub {
            color: var(--gold)
        }

        .credentials-subtitle {
            font-family: var(--font-title);
            font-size: 1rem;
            letter-spacing: 1px;
            color: var(--gold);
            text-align: center;
            margin-bottom: 40px
        }

        /* FAQ */
        .faq-section {
            padding: 130px 0;
            background: var(--bg);
        }

        details.faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        details.faq-item[open] {
            border-color: rgba(201, 169, 110, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

        details.faq-item summary {
            padding: 24px;
            font-family: var(--font-title);
            font-size: 1.15rem;
            color: var(--white);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        details.faq-item summary::after {
            content: "+";
            font-size: 1.4rem;
            color: var(--gold);
            transition: transform 0.3s;
        }

        details.faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-content {
            padding: 0 24px 24px;
            color: var(--white-70);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .credentials .container {
            text-align: center
        }

        .logos-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap
        }

        .credential-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transition: transform .3s
        }

        .credential-item:hover {
            transform: translateY(-4px)
        }

        .credential-item .logo-box {
            background: #ffffff;
            border-radius: 14px;
            padding: 20px 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            min-width: 220px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
            transition: box-shadow .3s
        }

        .credential-item:hover .logo-box {
            box-shadow: 0 8px 32px rgba(201, 169, 110, .3)
        }

        .credential-item img {
            height: 80px;
            width: auto;
            max-width: 180px;
            object-fit: contain
        }

        .credential-item span {
            font-family: var(--font-title);
            font-size: 1rem;
            letter-spacing: 1px;
            color: var(--gold);
            font-weight: 600
        }

        /* TESTIMONIALS */
        .testimonials {
            padding: 130px 0;
            background: var(--bg-lighter);
            overflow: hidden
        }

        .testimonials .container {
            text-align: center
        }

        .carousel {
            position: relative;
            max-width: 700px;
            margin: 0 auto
        }

        .carousel-track {
            display: flex;
            transition: transform .6s ease
        }

        .testimonial {
            min-width: 100%;
            padding: 0 20px
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
            letter-spacing: 4px
        }

        .testimonial blockquote {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--white-90);
            line-height: 1.9;
            margin-bottom: 20px
        }

        .testimonial cite {
            font-family: var(--font-title);
            font-size: .9rem;
            color: var(--gold);
            font-style: normal;
            font-weight: 500
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 32px
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--white-50);
            border: none;
            cursor: pointer;
            transition: all .3s
        }

        .carousel-dot.active {
            background: var(--gold);
            transform: scale(1.2)
        }

        .google-badge {
            margin-top: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-title);
            font-size: .85rem;
            color: var(--white-70)
        }

        .google-badge .stars {
            color: var(--gold)
        }

        /* LOCATION */
        .location {
            padding: 130px 0;
            background: var(--bg)
        }

        .location .container {
            display: flex;
            align-items: center;
            gap: 48px
        }

        .location-info {
            flex: 1
        }

        .location-info h3 {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 8px
        }

        .location-info p {
            color: var(--white-70);
            font-size: .95rem;
            margin-bottom: 20px;
            line-height: 1.8
        }

        .location-map {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
        }

        .location-map iframe {
            width: 100%;
            height: 350px;
            border: 0
        }

        /* COMO AGENDAR */
        .how-to-book {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .how-to-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gold);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-title);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-card p {
            color: var(--white);
            font-size: 1.05rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 500;
        }

        .how-to-footer {
            color: var(--white-70);
            font-size: 0.95rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* CTA */
        .cta {
            padding: 80px 0;
            background: var(--bg-light);
            text-align: center
        }

        .cta h2 {
            color: var(--white);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 16px
        }

        .cta p {
            color: var(--white-70);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto
        }

        .cta .btn {
            color: var(--white);
            font-size: 1.1rem;
            padding: 18px 40px
        }

        .cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, .3)
        }

        /* FOOTER */
        .footer {
            padding: 60px 0 28px;
            background: var(--bg-footer);
            text-align: center
        }

        .footer-logo img {
            height: 50px;
            margin: 0 auto 24px
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 24px
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            border: 1px solid var(--white-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s
        }

        .footer-social a:hover {
            border-color: var(--gold);
            background: rgba(201, 169, 110, .1)
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
            fill: var(--white-70)
        }

        .footer-copy {
            font-size: .8rem;
            color: var(--white-50)
        }

        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
            z-index: 900;
            transition: transform .3s, box-shadow .3s
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 28px rgba(37, 211, 102, .5)
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff
        }

        /* RESPONSIVE */
        @media(max-width:992px) {

            .hero .container,
            .about .container,
            .location .container {
                flex-direction: column;
                text-align: center
            }

            .hero-content,
            .about-content {
                text-align: center
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto
            }

            .hero-buttons {
                justify-content: center
            }

            .hero-image {
                flex: 0 0 auto;
                max-width: 320px;
                order: -1
            }

            .hero-image img {
                height: 420px;
            }

            .about-image {
                flex: 0 0 auto;
                max-width: 300px
            }

            .about-image img {
                height: 400px;
            }

            .section-sub {
                margin-left: auto;
                margin-right: auto
            }

            .hero-label {
                justify-content: center
            }
        }

        @media(max-width:768px) {
            :root {
                --header-h: 68px
            }

            body {
                padding-bottom: 80px;
            }

            .mobile-fixed-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: #0d2e2e;
                border-top: 1px solid rgba(201, 169, 110, 0.3);
                padding: 12px 16px;
                z-index: 950;
                gap: 12px;
                align-items: center;
                justify-content: space-between;
                box-sizing: border-box;
            }

            .mobile-fixed-bar .btn {
                flex: 1;
                font-size: 0.85rem;
                padding: 12px 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                line-height: 1.2;
                text-align: center;
            }

            .whatsapp-float {
                bottom: 90px;
                display: none;
            }

            .nav,
            .header .btn-gold {
                display: none
            }

            .hamburger {
                display: flex
            }

            .hero {
                min-height: auto;
                padding: calc(var(--header-h) + 60px) 0 60px
            }

            .hero-image {
                max-width: 240px
            }

            .hero-image img {
                height: 320px;
            }

            .about-image {
                max-width: 240px;
                margin: 0 auto;
            }

            .about-image img {
                height: 320px;
            }

            .about,
            .specialties,
            .testimonials,
            .location,
            .credentials {
                padding: 60px 0
            }

            .logos-row {
                gap: 24px
            }

            .location .container {
                flex-direction: column
            }

            .location-map iframe {
                height: 260px
            }
        }
    

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

        a:focus,
        button:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        :root {
            --bg: #0d2e2e;
            --bg-light: #163f3f;
            --gold: #c9a96e;
            --gold-dark: #b08d4f;
            --white: #ffffff;
            --white-90: rgba(255, 255, 255, 0.9);
            --white-70: rgba(255, 255, 255, .7);
            --white-50: rgba(255, 255, 255, .5);
            --dark: #1a1a1a;
            --bg-footer: #081e1e;
            --font-title: 'League Spartan', sans-serif;
            --font-body: 'Merriweather', serif;
            --container: 1140px;
            --header-h: 80px
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-h)
        }

        body {
            font-family: var(--font-body);
            color: var(--white);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-title);
            font-weight: 600;
            line-height: 1.2
        }

        a {
            color: inherit;
            text-decoration: none
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        .container {
            width: 90%;
            max-width: var(--container);
            margin: 0 auto
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-title);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: .95rem;
            transition: all .3s ease;
            cursor: pointer;
            border: none
        }

        .btn-gold {
            background: var(--gold);
            color: var(--dark)
        }

        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 169, 110, .3)
        }

        .btn-outline {
            border: 2px solid var(--white-50);
            color: var(--white);
            background: transparent
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px)
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 12px
        }

        .section-sub {
            color: var(--white-70);
            font-size: 1rem;
            margin-bottom: 48px;
            max-width: 600px
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .8s ease, transform .8s ease
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: var(--bg);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            z-index: 1000;
            transition: background .3s, box-shadow .3s
        }

        .header.scrolled {
            background: rgba(13, 46, 46, .97);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%
        }

        .header-logo img {
            height: 50px;
            width: auto
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px
        }

        .nav a {
            font-family: var(--font-title);
            font-size: .9rem;
            font-weight: 500;
            letter-spacing: .5px;
            color: var(--white-90);
            transition: color .3s;
            position: relative
        }

        .nav a:hover,
        .nav a.active {
            color: var(--gold)
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width .3s
        }

        .nav a:hover::after {
            width: 100%
        }

        .dropdown {
            position: relative
        }

        .dropdown-toggle {
            cursor: pointer
        }

        .dropdown-toggle svg {
            width: 10px;
            margin-left: 4px;
            transition: transform .3s
        }

        .dropdown.open .dropdown-toggle svg {
            transform: rotate(180deg)
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-light);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 12px;
            padding: 8px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
        }

        .dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: .85rem;
            white-space: nowrap
        }

        .dropdown-menu a::after {
            display: none
        }

        .dropdown-menu a:hover {
            background: rgba(201, 169, 110, .1)
        }

        .header .btn {
            padding: 10px 24px;
            font-size: .85rem
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: all .3s
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px)
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px)
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-h);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-h));
            background: var(--bg);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            z-index: 999
        }

        .mobile-menu.open {
            display: flex
        }

        .mobile-menu a {
            font-family: var(--font-title);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--white-90)
        }

        .mobile-menu a:hover {
            color: var(--gold)
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: calc(var(--header-h) + 40px) 0 60px;
            background: linear-gradient(135deg, var(--bg) 0%, #0a2424 50%, #112d2d 100%);
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(201, 169, 110, .04) 0%, transparent 70%);
            pointer-events: none
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 60px
        }

        .hero-content {
            flex: 1;
            z-index: 2
        }

        .hero-label {
            font-family: var(--font-title);
            font-size: .85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px justify-content: center;
        }

        .hero-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold)
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            margin-bottom: 16px;
            font-weight: 700
        }

        .hero h1 span {
            color: var(--gold)
        }

        .hero-subtitle {
            font-size: clamp(.95rem, 1.8vw, 1.15rem);
            color: var(--white-70);
            margin-bottom: 36px;
            max-width: 520px;
            line-height: 1.8
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }

        .hero-image {
            flex: 0 0 380px;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            overflow: hidden
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
            width: 100%;
            height: 520px;
            object-fit: cover;
            object-position: top center
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            border-radius: 20px;
            z-index: -1;
            opacity: .3
        }

        /* ABOUT */
        .about {
            padding: 130px 0;
            background: var(--bg)
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 60px
        }

        .about-image {
            flex: 0 0 360px;
            position: relative
        }

        .about-image img {
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
            width: 100%;
            height: 480px;
            object-fit: cover;
            object-position: top center;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: -16px;
            width: 120px;
            height: 120px;
            border-left: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
            border-radius: 0 0 0 16px;
            opacity: .4
        }

        .about-content {
            flex: 1
        }

        .about-content p {
            color: var(--white-70);
            font-size: .95rem;
            margin-bottom: 24px;
            line-height: 1.9
        }

        /* SPECIALTIES */
        .specialties {
            padding: 130px 0;
            background: var(--bg-lighter)
        }

        .specialties .container {
            text-align: center
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px
        }

        .card {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 16px;
            padding: 40px 28px;
            text-align: center;
            transition: all .4s ease;
            position: relative;
            overflow: hidden
        }

        .card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, .13);
            border-color: rgba(201, 169, 110, .5);
            box-shadow: 0 12px 36px rgba(0, 0, 0, .3)
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity .4s
        }

        .card:hover::before {
            opacity: 1
        }

        .card-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: rgba(201, 169, 110, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5
        }

        .card h3 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--white)
        }

        .card p {
            font-size: .85rem;
            color: var(--white-70);
            margin-bottom: 20px;
            line-height: 1.7
        }

        .card-link {
            font-family: var(--font-title);
            font-size: .85rem;
            color: var(--gold);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap .3s
        }

        .card-link:hover {
            gap: 12px
        }

        /* CREDENTIALS */
        .credentials {
            padding: 100px 0;
            background: var(--bg)
        }

        .credentials .section-sub {
            color: var(--gold)
        }

        .credentials-subtitle {
            font-family: var(--font-title);
            font-size: 1rem;
            letter-spacing: 1px;
            color: var(--gold);
            text-align: center;
            margin-bottom: 40px
        }

        /* FAQ */
        .faq-section {
            padding: 130px 0;
            background: var(--bg);
        }

        details.faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        details.faq-item[open] {
            border-color: rgba(201, 169, 110, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

        details.faq-item summary {
            padding: 24px;
            font-family: var(--font-title);
            font-size: 1.15rem;
            color: var(--white);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        details.faq-item summary::after {
            content: "+";
            font-size: 1.4rem;
            color: var(--gold);
            transition: transform 0.3s;
        }

        details.faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-content {
            padding: 0 24px 24px;
            color: var(--white-70);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .credentials .container {
            text-align: center
        }

        .logos-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap
        }

        .credential-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transition: transform .3s
        }

        .credential-item:hover {
            transform: translateY(-4px)
        }

        .credential-item .logo-box {
            background: #ffffff;
            border-radius: 14px;
            padding: 20px 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            min-width: 220px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
            transition: box-shadow .3s
        }

        .credential-item:hover .logo-box {
            box-shadow: 0 8px 32px rgba(201, 169, 110, .3)
        }

        .credential-item img {
            height: 80px;
            width: auto;
            max-width: 180px;
            object-fit: contain
        }

        .credential-item span {
            font-family: var(--font-title);
            font-size: 1rem;
            letter-spacing: 1px;
            color: var(--gold);
            font-weight: 600
        }

        /* TESTIMONIALS */
        .testimonials {
            padding: 130px 0;
            background: var(--bg-lighter);
            overflow: hidden
        }

        .testimonials .container {
            text-align: center
        }

        .carousel {
            position: relative;
            max-width: 700px;
            margin: 0 auto
        }

        .carousel-track {
            display: flex;
            transition: transform .6s ease
        }

        .testimonial {
            min-width: 100%;
            padding: 0 20px
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
            letter-spacing: 4px
        }

        .testimonial blockquote {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--white-90);
            line-height: 1.9;
            margin-bottom: 20px
        }

        .testimonial cite {
            font-family: var(--font-title);
            font-size: .9rem;
            color: var(--gold);
            font-style: normal;
            font-weight: 500
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 32px
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--white-50);
            border: none;
            cursor: pointer;
            transition: all .3s
        }

        .carousel-dot.active {
            background: var(--gold);
            transform: scale(1.2)
        }

        .google-badge {
            margin-top: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-title);
            font-size: .85rem;
            color: var(--white-70)
        }

        .google-badge .stars {
            color: var(--gold)
        }

        /* LOCATION */
        .location {
            padding: 130px 0;
            background: var(--bg)
        }

        .location .container {
            display: flex;
            align-items: center;
            gap: 48px
        }

        .location-info {
            flex: 1
        }

        .location-info h3 {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 8px
        }

        .location-info p {
            color: var(--white-70);
            font-size: .95rem;
            margin-bottom: 20px;
            line-height: 1.8
        }

        .location-map {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
        }

        .location-map iframe {
            width: 100%;
            height: 350px;
            border: 0
        }

        /* COMO AGENDAR */
        .how-to-book {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .how-to-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gold);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-title);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-card p {
            color: var(--white);
            font-size: 1.05rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 500;
        }

        .how-to-footer {
            color: var(--white-70);
            font-size: 0.95rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* CTA */
        .cta {
            padding: 80px 0;
            background: var(--bg-light);
            text-align: center
        }

        .cta h2 {
            color: var(--white);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 16px
        }

        .cta p {
            color: var(--white-70);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto
        }

        .cta .btn {
            color: var(--white);
            font-size: 1.1rem;
            padding: 18px 40px
        }

        .cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, .3)
        }

        /* FOOTER */
        .footer {
            padding: 60px 0 28px;
            background: var(--bg-footer);
            text-align: center
        }

        .footer-logo img {
            height: 50px;
            margin: 0 auto 24px
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 24px
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            border: 1px solid var(--white-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s
        }

        .footer-social a:hover {
            border-color: var(--gold);
            background: rgba(201, 169, 110, .1)
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
            fill: var(--white-70)
        }

        .footer-copy {
            font-size: .8rem;
            color: var(--white-50)
        }

        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
            z-index: 900;
            transition: transform .3s, box-shadow .3s
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 28px rgba(37, 211, 102, .5)
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff
        }

        /* RESPONSIVE */
        @media(max-width:992px) {

            .hero .container,
            .about .container,
            .location .container {
                flex-direction: column;
                text-align: center
            }

            .hero-content,
            .about-content {
                text-align: center
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto
            }

            .hero-buttons {
                justify-content: center
            }

            .hero-image {
                flex: 0 0 auto;
                max-width: 320px;
                order: -1
            }

            .hero-image img {
                height: 420px;
            }

            .about-image {
                flex: 0 0 auto;
                max-width: 300px
            }

            .about-image img {
                height: 400px;
            }

            .section-sub {
                margin-left: auto;
                margin-right: auto
            }

            .hero-label {
                justify-content: center justify-content: center;
            }
        }

        @media(max-width:768px) {
            :root {
                --header-h: 68px
            }

            body {
                padding-bottom: 80px;
            }

            .mobile-fixed-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: #0d2e2e;
                border-top: 1px solid rgba(201, 169, 110, 0.3);
                padding: 12px 16px;
                z-index: 950;
                gap: 12px;
                align-items: center;
                justify-content: space-between;
                box-sizing: border-box;
            }

            .mobile-fixed-bar .btn {
                flex: 1;
                font-size: 0.85rem;
                padding: 12px 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                line-height: 1.2;
                text-align: center;
            }

            .whatsapp-float {
                bottom: 90px;
                display: none;
            }

            .nav,
            .header .btn-gold {
                display: none
            }

            .hamburger {
                display: flex
            }

            .hero {
                min-height: auto;
                padding: calc(var(--header-h) + 60px) 0 60px
            }

            .hero-image {
                max-width: 240px
            }

            .hero-image img {
                height: 320px;
            }

            .about-image {
                max-width: 240px;
                margin: 0 auto;
            }

            .about-image img {
                height: 320px;
            }

            .about,
            .specialties,
            .testimonials,
            .location,
            .credentials {
                padding: 60px 0
            }

            .logos-row {
                gap: 24px
            }

            .location .container {
                flex-direction: column
            }

            .location-map iframe {
                height: 260px
            }
        }
    

        .em-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, var(--bg) 0%, #0a2424 100%);
            position: relative;
            text-align: center;
        }

        .breadcrumb {
            font-size: 0.9rem;
            margin-bottom: 24px;
            color: var(--white-50);
            font-family: var(--font-title);
        }

        .breadcrumb a {
            color: var(--white-90);
            font-weight: 500;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        .em-content {
            padding: 60px 0 100px;
            background: var(--bg);
        }

        .text-block {
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.8;
            color: var(--white-90);
        }

        .text-block h2 {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 24px;
        }

        .text-block h3 {
            font-size: 1.4rem;
            color: var(--white);
            margin: 32px 0 16px;
        }

        .text-block p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .text-block ul {
            margin: 0 0 24px 24px;
            color: var(--white-70);
        }

        .text-block li {
            margin-bottom: 12px;
        }

        .em-toc {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 32px;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .em-toc ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        @media (max-width: 768px) {
            .em-toc ul {
                grid-template-columns: 1fr;
            }
        }

        .em-toc a {
            display: block;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            font-family: var(--font-title);
            font-size: 0.95rem;
            text-decoration: none;
            color: var(--white-90);
            transition: all 0.3s;
        }

        .em-toc a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateX(5px);
        }

        .mg-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }

        .mg-card {
            background: var(--bg-lighter);
            padding: 32px;
            border-radius: 12px;
            border-top: 3px solid var(--gold);
        }

        .mg-card h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .mg-card p {
            font-size: 0.95rem;
            color: var(--white-70);
            line-height: 1.6;
            margin: 0;
        }


        .dr-igor-inline {
            background: var(--bg-lighter);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 40px;
            margin: 60px 0;
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 32px;
            align-items: center;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .dr-igor-inline img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 2px solid var(--gold);
            object-fit: cover;
            justify-self: center;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 768px) {
            .dr-igor-inline {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 24px;
            }

            .dr-igor-inline img {
                margin: 0 auto;
            }
        }

        .highlight-box {
            background: rgba(201, 169, 110, 0.1);
            border-left: 4px solid var(--gold);
            padding: 24px;
            margin: 32px 0;
            border-radius: 0 8px 8px 0;
        }

        .highlight-box p {
            margin: 0;
            color: var(--gold);
            font-family: var(--font-title);
            font-size: 1.1rem;
        }
    

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

        a:focus,
        button:focus {
            outline: 2px solid var(--gold);
            outline-offset: 2px;
        }

        :root {
            --bg: #0d2e2e;
            --bg-light: #163f3f;
            --gold: #c9a96e;
            --gold-dark: #b08d4f;
            --white: #ffffff;
            --white-90: rgba(255, 255, 255, 0.9);
            --white-70: rgba(255, 255, 255, .7);
            --white-50: rgba(255, 255, 255, .5);
            --dark: #1a1a1a;
            --bg-footer: #081e1e;
            --font-title: 'League Spartan', sans-serif;
            --font-body: 'Merriweather', serif;
            --container: 1140px;
            --header-h: 80px
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-h)
        }

        body {
            font-family: var(--font-body);
            color: var(--white);
            background: var(--bg);
            line-height: 1.7;
            overflow-x: hidden
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-title);
            font-weight: 600;
            line-height: 1.2
        }

        a {
            color: inherit;
            text-decoration: none
        }

        img {
            max-width: 100%;
            height: auto;
            display: block
        }

        .container {
            width: 90%;
            max-width: var(--container);
            margin: 0 auto
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-title);
            font-weight: 600;
            padding: 14px 32px;
            border-radius: 50px;
            font-size: .95rem;
            transition: all .3s ease;
            cursor: pointer;
            border: none
        }

        .btn-gold {
            background: var(--gold);
            color: var(--dark)
        }

        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 169, 110, .3)
        }

        .btn-outline {
            border: 2px solid var(--white-50);
            color: var(--white);
            background: transparent
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px)
        }

        .section-title {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 12px
        }

        .section-sub {
            color: var(--white-70);
            font-size: 1rem;
            margin-bottom: 48px;
            max-width: 600px
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity .8s ease, transform .8s ease
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0)
        }

        /* HEADER */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--header-h);
            background: var(--bg);
            border-bottom: 1px solid rgba(255, 255, 255, .06);
            z-index: 1000;
            transition: background .3s, box-shadow .3s
        }

        .header.scrolled {
            background: rgba(13, 46, 46, .97);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .3)
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%
        }

        .header-logo img {
            height: 50px;
            width: auto
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px
        }

        .nav a {
            font-family: var(--font-title);
            font-size: .9rem;
            font-weight: 500;
            letter-spacing: .5px;
            color: var(--white-90);
            transition: color .3s;
            position: relative
        }

        .nav a:hover,
        .nav a.active {
            color: var(--gold)
        }

        .nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width .3s
        }

        .nav a:hover::after {
            width: 100%
        }

        .dropdown {
            position: relative
        }

        .dropdown-toggle {
            cursor: pointer
        }

        .dropdown-toggle svg {
            width: 10px;
            margin-left: 4px;
            transition: transform .3s
        }

        .dropdown.open .dropdown-toggle svg {
            transform: rotate(180deg)
        }

        .dropdown-menu {
            position: absolute;
            top: calc(100% + 12px);
            left: 50%;
            transform: translateX(-50%);
            background: var(--bg-light);
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 12px;
            padding: 8px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all .3s;
            box-shadow: 0 12px 32px rgba(0, 0, 0, .4)
        }

        .dropdown.open .dropdown-menu {
            opacity: 1;
            visibility: visible
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 20px;
            font-size: .85rem;
            white-space: nowrap
        }

        .dropdown-menu a::after {
            display: none
        }

        .dropdown-menu a:hover {
            background: rgba(201, 169, 110, .1)
        }

        .header .btn {
            padding: 10px 24px;
            font-size: .85rem
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: all .3s
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px)
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px)
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: var(--header-h);
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-h));
            background: var(--bg);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 28px;
            z-index: 999
        }

        .mobile-menu.open {
            display: flex
        }

        .mobile-menu a {
            font-family: var(--font-title);
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--white-90)
        }

        .mobile-menu a:hover {
            color: var(--gold)
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: calc(var(--header-h) + 40px) 0 60px;
            background: linear-gradient(135deg, var(--bg) 0%, #0a2424 50%, #112d2d 100%);
            position: relative;
            overflow: hidden
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(201, 169, 110, .04) 0%, transparent 70%);
            pointer-events: none
        }

        .hero .container {
            display: flex;
            align-items: center;
            gap: 60px
        }

        .hero-content {
            flex: 1;
            z-index: 2
        }

        .hero-label {
            font-family: var(--font-title);
            font-size: .85rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px
        }

        .hero-label::before {
            content: '';
            width: 40px;
            height: 1px;
            background: var(--gold)
        }

        .hero h1 {
            font-size: clamp(2.4rem, 5vw, 3.8rem);
            margin-bottom: 16px;
            font-weight: 700
        }

        .hero h1 span {
            color: var(--gold)
        }

        .hero-subtitle {
            font-size: clamp(.95rem, 1.8vw, 1.15rem);
            color: var(--white-70);
            margin-bottom: 36px;
            max-width: 520px;
            line-height: 1.8
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap
        }

        .hero-image {
            flex: 0 0 380px;
            position: relative;
            z-index: 2;
            border-radius: 20px;
            overflow: hidden
        }

        .hero-image img {
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
            width: 100%;
            height: 520px;
            object-fit: cover;
            object-position: top center
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--gold);
            border-radius: 20px;
            z-index: -1;
            opacity: .3
        }

        /* ABOUT */
        .about {
            padding: 130px 0;
            background: var(--bg)
        }

        .about .container {
            display: flex;
            align-items: center;
            gap: 60px
        }

        .about-image {
            flex: 0 0 360px;
            position: relative
        }

        .about-image img {
            border-radius: 16px;
            box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
            width: 100%;
            height: 480px;
            object-fit: cover;
            object-position: top center;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: -16px;
            width: 120px;
            height: 120px;
            border-left: 3px solid var(--gold);
            border-bottom: 3px solid var(--gold);
            border-radius: 0 0 0 16px;
            opacity: .4
        }

        .about-content {
            flex: 1
        }

        .about-content p {
            color: var(--white-70);
            font-size: .95rem;
            margin-bottom: 24px;
            line-height: 1.9
        }

        /* SPECIALTIES */
        .specialties {
            padding: 130px 0;
            background: var(--bg-lighter)
        }

        .specialties .container {
            text-align: center
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 24px
        }

        .card {
            background: rgba(255, 255, 255, .08);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 16px;
            padding: 40px 28px;
            text-align: center;
            transition: all .4s ease;
            position: relative;
            overflow: hidden
        }

        .card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, .13);
            border-color: rgba(201, 169, 110, .5);
            box-shadow: 0 12px 36px rgba(0, 0, 0, .3)
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: opacity .4s
        }

        .card:hover::before {
            opacity: 1
        }

        .card-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: rgba(201, 169, 110, .1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center
        }

        .card-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--gold);
            fill: none;
            stroke-width: 1.5
        }

        .card h3 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--white)
        }

        .card p {
            font-size: .85rem;
            color: var(--white-70);
            margin-bottom: 20px;
            line-height: 1.7
        }

        .card-link {
            font-family: var(--font-title);
            font-size: .85rem;
            color: var(--gold);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap .3s
        }

        .card-link:hover {
            gap: 12px
        }

        /* CREDENTIALS */
        .credentials {
            padding: 100px 0;
            background: var(--bg)
        }

        .credentials .section-sub {
            color: var(--gold)
        }

        .credentials-subtitle {
            font-family: var(--font-title);
            font-size: 1rem;
            letter-spacing: 1px;
            color: var(--gold);
            text-align: center;
            margin-bottom: 40px
        }

        /* FAQ */
        .faq-section {
            padding: 130px 0;
            background: var(--bg);
        }

        details.faq-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }

        details.faq-item[open] {
            border-color: rgba(201, 169, 110, 0.4);
            background: rgba(255, 255, 255, 0.05);
        }

        details.faq-item summary {
            padding: 24px;
            font-family: var(--font-title);
            font-size: 1.15rem;
            color: var(--white);
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        details.faq-item summary::-webkit-details-marker {
            display: none;
        }

        details.faq-item summary::after {
            content: "+";
            font-size: 1.4rem;
            color: var(--gold);
            transition: transform 0.3s;
        }

        details.faq-item[open] summary::after {
            transform: rotate(45deg);
        }

        .faq-content {
            padding: 0 24px 24px;
            color: var(--white-70);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .credentials .container {
            text-align: center
        }

        .logos-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap
        }

        .credential-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            transition: transform .3s
        }

        .credential-item:hover {
            transform: translateY(-4px)
        }

        .credential-item .logo-box {
            background: #ffffff;
            border-radius: 14px;
            padding: 20px 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            min-width: 220px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
            transition: box-shadow .3s
        }

        .credential-item:hover .logo-box {
            box-shadow: 0 8px 32px rgba(201, 169, 110, .3)
        }

        .credential-item img {
            height: 80px;
            width: auto;
            max-width: 180px;
            object-fit: contain
        }

        .credential-item span {
            font-family: var(--font-title);
            font-size: 1rem;
            letter-spacing: 1px;
            color: var(--gold);
            font-weight: 600
        }

        /* TESTIMONIALS */
        .testimonials {
            padding: 130px 0;
            background: var(--bg-lighter);
            overflow: hidden
        }

        .testimonials .container {
            text-align: center
        }

        .carousel {
            position: relative;
            max-width: 700px;
            margin: 0 auto
        }

        .carousel-track {
            display: flex;
            transition: transform .6s ease
        }

        .testimonial {
            min-width: 100%;
            padding: 0 20px
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 20px;
            letter-spacing: 4px
        }

        .testimonial blockquote {
            font-size: 1.05rem;
            font-style: italic;
            color: var(--white-90);
            line-height: 1.9;
            margin-bottom: 20px
        }

        .testimonial cite {
            font-family: var(--font-title);
            font-size: .9rem;
            color: var(--gold);
            font-style: normal;
            font-weight: 500
        }

        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 32px
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--white-50);
            border: none;
            cursor: pointer;
            transition: all .3s
        }

        .carousel-dot.active {
            background: var(--gold);
            transform: scale(1.2)
        }

        .google-badge {
            margin-top: 40px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: var(--font-title);
            font-size: .85rem;
            color: var(--white-70)
        }

        .google-badge .stars {
            color: var(--gold)
        }

        /* LOCATION */
        .location {
            padding: 130px 0;
            background: var(--bg)
        }

        .location .container {
            display: flex;
            align-items: center;
            gap: 48px
        }

        .location-info {
            flex: 1
        }

        .location-info h3 {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 8px
        }

        .location-info p {
            color: var(--white-70);
            font-size: .95rem;
            margin-bottom: 20px;
            line-height: 1.8
        }

        .location-map {
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
        }

        .location-map iframe {
            width: 100%;
            height: 350px;
            border: 0
        }

        /* COMO AGENDAR */
        .how-to-book {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .how-to-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .step-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: var(--gold);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-title);
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 20px;
        }

        .step-card p {
            color: var(--white);
            font-size: 1.05rem;
            line-height: 1.5;
            margin: 0;
            font-weight: 500;
        }

        .how-to-footer {
            color: var(--white-70);
            font-size: 0.95rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 24px;
            max-width: 600px;
            margin: 0 auto;
            text-align: center;
        }

        /* CTA */
        .cta {
            padding: 80px 0;
            background: var(--bg-light);
            text-align: center
        }

        .cta h2 {
            color: var(--white);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 16px
        }

        .cta p {
            color: var(--white-70);
            font-size: 1rem;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto
        }

        .cta .btn {
            color: var(--white);
            font-size: 1.1rem;
            padding: 18px 40px
        }

        .cta .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, .3)
        }

        /* FOOTER */
        .footer {
            padding: 60px 0 28px;
            background: var(--bg-footer);
            text-align: center
        }

        .footer-logo img {
            height: 50px;
            margin: 0 auto 24px
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 24px
        }

        .footer-social a {
            width: 44px;
            height: 44px;
            border: 1px solid var(--white-50);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all .3s
        }

        .footer-social a:hover {
            border-color: var(--gold);
            background: rgba(201, 169, 110, .1)
        }

        .footer-social a svg {
            width: 20px;
            height: 20px;
            fill: var(--white-70)
        }

        .footer-copy {
            font-size: .8rem;
            color: var(--white-50)
        }

        /* WHATSAPP FLOAT */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 60px;
            height: 60px;
            background: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
            z-index: 900;
            transition: transform .3s, box-shadow .3s
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 28px rgba(37, 211, 102, .5)
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: #fff
        }

        /* RESPONSIVE */
        @media(max-width:992px) {

            .hero .container,
            .about .container,
            .location .container {
                flex-direction: column;
                text-align: center
            }

            .hero-content,
            .about-content {
                text-align: center
            }

            .hero-subtitle {
                margin-left: auto;
                margin-right: auto
            }

            .hero-buttons {
                justify-content: center
            }

            .hero-image {
                flex: 0 0 auto;
                max-width: 320px;
                order: -1
            }

            .hero-image img {
                height: 420px;
            }

            .about-image {
                flex: 0 0 auto;
                max-width: 300px
            }

            .about-image img {
                height: 400px;
            }

            .section-sub {
                margin-left: auto;
                margin-right: auto
            }

            .hero-label {
                justify-content: center
            }
        }

        @media(max-width:768px) {
            :root {
                --header-h: 68px
            }

            body {
                padding-bottom: 80px;
            }

            .mobile-fixed-bar {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                background: #0d2e2e;
                border-top: 1px solid rgba(201, 169, 110, 0.3);
                padding: 12px 16px;
                z-index: 950;
                gap: 12px;
                align-items: center;
                justify-content: space-between;
                box-sizing: border-box;
            }

            .mobile-fixed-bar .btn {
                flex: 1;
                font-size: 0.85rem;
                padding: 12px 6px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 6px;
                line-height: 1.2;
                text-align: center;
            }

            .whatsapp-float {
                bottom: 90px;
                display: none;
            }

            .nav,
            .header .btn-gold {
                display: none
            }

            .hamburger {
                display: flex
            }

            .hero {
                min-height: auto;
                padding: calc(var(--header-h) + 60px) 0 60px
            }

            .hero-image {
                max-width: 240px
            }

            .hero-image img {
                height: 320px;
            }

            .about-image {
                max-width: 240px;
                margin: 0 auto;
            }

            .about-image img {
                height: 320px;
            }

            .about,
            .specialties,
            .testimonials,
            .location,
            .credentials {
                padding: 60px 0
            }

            .logos-row {
                gap: 24px
            }

            .location .container {
                flex-direction: column
            }

            .location-map iframe {
                height: 260px
            }
        }



        to {
            opacity: 1;
            transform: translateY(0);
        }
        }
    

        .em-content {
            padding: 80px 0;
            background: var(--bg);
        }

        .em-toc {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(201, 169, 110, 0.3);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 48px;
        }

        .em-toc ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 12px;
        }

        .em-toc a {
            color: var(--white-70);
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .em-toc a:hover {
            color: var(--gold);
        }

        .em-toc a::before {
            content: '›';
            color: var(--gold);
        }

        .text-block {
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .text-block h2,
        .text-block h3 {
            color: var(--white);
            margin-top: 40px;
            margin-bottom: 16px;
        }

        .text-block p {
            margin-bottom: 20px;
            color: var(--white-90);
        }

        .highlight-box {
            background: rgba(201, 169, 110, 0.05);
            border-left: 4px solid var(--gold);
            padding: 24px;
            border-radius: 0 8px 8px 0;
            margin: 32px 0;
        }

        .highlight-box strong {
            color: var(--gold);
        }

        .symptoms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 32px 0;
        }

        .symptom-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 24px;
            border-radius: 12px;
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .symptom-card svg {
            color: var(--gold);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .symptom-title {
            font-family: var(--font-title);
            font-size: 1.1rem;
            color: var(--gold);
            margin-bottom: 8px;
            font-weight: 600;
        }

        .em-hero {
            padding: 160px 0 80px;
            background: linear-gradient(135deg, var(--bg) 0%, #0a2424 100%);
            position: relative;
            text-align: center;
        }

        .breadcrumb {
            color: var(--white-50);
            font-size: 0.9rem;
            margin-bottom: 24px;
            display: flex;
            justify-content: center;
            gap: 8px;
            align-items: center;
        }

        .breadcrumb a {
            transition: color 0.3s;
        }

        .breadcrumb a:hover {
            color: var(--gold);
        }

        .dr-igor-inline {
            background: var(--bg-light);
            border-radius: 16px;
            padding: 40px;
            display: grid;
            grid-template-columns: minmax(auto, 200px) 1fr;
            gap: 32px;
            align-items: center;
            margin: 60px auto;
            max-width: 900px;
        }

        @media (max-width: 768px) {
            .dr-igor-inline {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 24px;
            }

            .dr-igor-inline img {
                margin: 0 auto;
            }
        }

        .dr-igor-inline img {
            border-radius: 50%;
            border: 2px solid var(--gold);
            width: 150px;
            height: 150px;
            object-fit: cover;
        }

        @keyframes fadeDown {
            from {
                opacity: 0;
                transform: translateY(-8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mg-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }



        .mg-card h4 {
            color: var(--gold);
            font-size: 1.2rem;
            margin-bottom: 12px;
        }

        .mg-card p {
            font-size: 0.95rem;
            color: var(--white-70);
            line-height: 1.6;
            margin: 0;
        }
    