        /* ========================================
       CSS RESET & VARIABLES
       ======================================== */
        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --white: #FFFFFF;
            --off-white: #FEFCFB;
            --blush: #F8E8E2;
            --blush-light: #FDF5F2;
            --rose: #C9A4A4;
            --rose-dark: #B76E79;
            --rose-gold: #D4A08A;
            --dark: #2D2D2D;
            --dark-light: #4A4A4A;
            --gray: #8A8A8A;
            --gray-light: #E8E4E2;

            --font-heading: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'DM Sans', -apple-system, sans-serif;

            --header-h: 72px;
            --max-w: 1200px;
            --section-py: clamp(60px, 10vw, 120px);

            --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
            --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-body);
            font-size: 16px;
            line-height: 1.7;
            color: var(--dark);
            background: var(--off-white);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s var(--ease-smooth);
        }

        ul {
            list-style: none;
        }

        /* ========================================
       TYPOGRAPHY
       ======================================== */
        h1,
        h2,
        h3,
        h4,
        h5 {
            font-family: var(--font-heading);
            font-weight: 500;
            line-height: 1.2;
            color: var(--dark);
        }

        h1 {
            font-size: clamp(2.2rem, 5vw, 3.8rem);
        }

        h2 {
            font-size: clamp(1.8rem, 4vw, 3rem);
        }

        h3 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
        }

        h4 {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
        }

        .accent {
            color: var(--rose-dark);
        }

        .italic {
            font-style: italic;
        }

        /* ========================================
       UTILITIES
       ======================================== */
        .container {
            width: 100%;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-label {
            font-family: var(--font-body);
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--rose-dark);
            margin-bottom: 12px;
            display: block;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--dark-light);
            max-width: 600px;
            line-height: 1.8;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
            transition: all 0.4s var(--ease-out);
        }

        .btn-primary {
            background: var(--rose-dark);
            color: var(--white);
        }

        .btn-primary:hover {
            background: #a25c66;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(183, 110, 121, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--rose-dark);
            border: 2px solid var(--rose-dark);
        }

        .btn-outline:hover {
            background: var(--rose-dark);
            color: var(--white);
            transform: translateY(-2px);
        }

        .btn svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        /* ========================================
       SCROLL ANIMATIONS
       ======================================== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
        }

        .reveal-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .reveal-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
        }

        .reveal-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .delay-1 {
            transition-delay: 0.1s;
        }

        .delay-2 {
            transition-delay: 0.2s;
        }

        .delay-3 {
            transition-delay: 0.3s;
        }

        .delay-4 {
            transition-delay: 0.4s;
        }

        /* ========================================
       MEASURING TAPE (Scroll-linked)
       ======================================== */
        .tape-divider {
            width: 100%;
            overflow: hidden;
            padding: 30px 0;
            position: relative;
        }

        .tape-track {
            display: flex;
            align-items: flex-end;
            height: 50px;
            position: relative;
            will-change: transform;
        }

        .tape-mark {
            flex-shrink: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 10px;
        }

        .tape-mark .line {
            width: 1px;
            background: var(--rose);
            transition: height 0.3s ease;
        }

        .tape-mark.major .line {
            height: 30px;
            width: 2px;
            background: var(--rose-dark);
        }

        .tape-mark.mid .line {
            height: 20px;
        }

        .tape-mark.minor .line {
            height: 12px;
            background: var(--gray-light);
        }

        .tape-mark .num {
            font-family: var(--font-body);
            font-size: 0.65rem;
            color: var(--rose-dark);
            margin-top: 4px;
            font-weight: 600;
        }

        .tape-bg {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--rose), transparent);
        }

        /* ========================================
       HEADER
       ======================================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-h);
            z-index: 1000;
            background: rgba(254, 252, 251, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid transparent;
            transition: all 0.4s var(--ease-smooth);
        }

        .header.scrolled {
            background: rgba(254, 252, 251, 0.95);
            border-bottom-color: var(--gray-light);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
        }

        .header-inner {
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 24px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--dark);
            letter-spacing: -0.5px;
        }

        .logo span {
            color: var(--rose-dark);
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--dark-light);
            position: relative;
            padding: 4px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--rose-dark);
            transition: width 0.3s var(--ease-out);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--rose-dark);
        }

        .nav-cta {
            background: var(--rose-dark) !important;
            color: var(--white) !important;
            padding: 10px 24px !important;
            border-radius: 50px;
            font-weight: 600 !important;
            transition: all 0.3s var(--ease-out) !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: #a25c66 !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--dark);
            border-radius: 2px;
            transition: all 0.3s var(--ease-out);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 320px;
                height: 100vh;
                background: var(--off-white);
                flex-direction: column;
                padding: 100px 40px 40px;
                gap: 24px;
                box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
                transition: right 0.4s var(--ease-out);
                z-index: 999;
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                font-size: 1.1rem;
            }
        }

        /* Mobile overlay */
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.3);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        /* ========================================
       HERO
       ======================================== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: var(--header-h);
            position: relative;
            overflow: hidden;
            background: linear-gradient(165deg, var(--off-white) 0%, var(--blush-light) 50%, var(--blush) 100%);
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            padding: 60px 0;
        }

        .hero-content {
            z-index: 2;
        }

        .hero-crn {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--rose-dark);
            border: 1px solid var(--rose);
            padding: 6px 16px;
            border-radius: 50px;
            margin-bottom: 24px;
        }

        .hero h1 {
            margin-bottom: 24px;
            line-height: 1.15;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--dark-light);
            margin-bottom: 36px;
            max-width: 480px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .hero-badges {
            display: flex;
            gap: 24px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .badge {
            text-align: center;
        }

        .badge-num {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--rose-dark);
            line-height: 1;
        }

        .badge-label {
            font-size: 0.75rem;
            color: var(--gray);
            margin-top: 4px;
        }

        .hero-image {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-frame {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 3/4;
            border-radius: 200px 200px 40px 40px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 30px 80px rgba(183, 110, 121, 0.15);
        }

        .photo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--blush) 0%, var(--rose) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 1.2rem;
            gap: 8px;
        }

        .photo-placeholder svg {
            width: 48px;
            height: 48px;
            opacity: 0.6;
        }

        .photo-placeholder span {
            font-size: 0.8rem;
            opacity: 0.7;
            font-family: var(--font-body);
        }

        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: 16px;
            padding: 16px 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 6s ease-in-out infinite;
        }

        .hero-float-card.card-1 {
            bottom: 10%;
            left: -20px;
        }

        .hero-float-card.card-2 {
            top: 45%;
            right: -10px;
            animation-delay: -3s;
        }

        .float-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .float-icon.green {
            background: #E8F5E0;
        }

        .float-icon.pink {
            background: var(--blush);
        }

        .float-text strong {
            font-size: 0.85rem;
            display: block;
        }

        .float-text span {
            font-size: 0.72rem;
            color: var(--gray);
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        /* Hero decorative circle */
        .hero::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(200, 164, 164, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: auto;
                padding-top: calc(var(--header-h) + 20px);
            }

            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 0 60px;
                text-align: center;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-badges {
                justify-content: center;
            }

            .hero-image {
                order: -1;
            }

            .hero-image-frame {
                max-width: 280px;
            }

            .hero-float-card {
                display: none;
            }
        }

        /* ========================================
       ABOUT / SOBRE
       ======================================== */
        .about {
            padding: var(--section-py) 0;
            background: var(--white);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-wrap {
            position: relative;
        }

        .about-photo {
            width: 100%;
            max-width: 400px;
            aspect-ratio: 4/5;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        }

        .about-photo-accent {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            border-radius: 20px;
            background: var(--blush);
            z-index: -1;
        }

        .about-text h2 {
            margin-bottom: 20px;
        }

        .about-text p {
            color: var(--dark-light);
            margin-bottom: 16px;
            line-height: 1.85;
        }

        .credentials {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 24px;
            margin-bottom: 32px;
        }

        .credential {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 16px;
            background: var(--blush-light);
            border-radius: 12px;
            border-left: 3px solid var(--rose-dark);
        }

        .credential-icon {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            color: var(--rose-dark);
            margin-top: 2px;
        }

        .credential-text {
            font-size: 0.92rem;
            color: var(--dark-light);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .about-photo {
                max-width: 300px;
                margin: 0 auto;
            }

            .about-photo-accent {
                display: none;
            }
        }

        /* ========================================
       PAIN POINTS / DORES
       ======================================== */
        .pains {
            padding: var(--section-py) 0;
            background: var(--blush-light);
            position: relative;
        }

        .pains-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .pain-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            max-width: 900px;
            margin: 0 auto 40px;
        }

        .pain-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 24px;
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
            transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
        }

        .pain-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
        }

        .pain-num {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--rose-dark);
            line-height: 1;
            flex-shrink: 0;
            width: 36px;
        }

        .pain-text {
            font-size: 0.95rem;
            color: var(--dark-light);
            line-height: 1.6;
        }

        .pains-close {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
        }

        .pains-close p {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            color: var(--dark);
            line-height: 1.6;
            font-style: italic;
        }

        /* ========================================
       SERVICES / TRATAMENTOS
       ======================================== */
        .services {
            padding: var(--section-py) 0;
            background: var(--white);
        }

        .services-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }

        .service-card {
            background: var(--off-white);
            border: 1px solid var(--gray-light);
            border-radius: 20px;
            padding: 32px 28px;
            transition: all 0.4s var(--ease-out);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--rose-dark);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s var(--ease-out);
        }

        .service-card:hover {
            border-color: var(--rose);
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(183, 110, 121, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--blush);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .service-card h3 {
            margin-bottom: 12px;
            font-size: 1.2rem;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--dark-light);
            line-height: 1.7;
        }

        /* ========================================
       DIFFERENTIALS / COMO FUNCIONA
       ======================================== */
        .how {
            padding: var(--section-py) 0;
            background: var(--blush-light);
        }

        .how-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
        }

        .step {
            text-align: center;
            position: relative;
        }

        .step-num {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--rose-dark);
            color: var(--white);
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .step h4 {
            margin-bottom: 10px;
        }

        .step p {
            font-size: 0.9rem;
            color: var(--dark-light);
            line-height: 1.7;
        }

        /* ========================================
       ATTENDANCE / ATENDIMENTO
       ======================================== */
        .attendance {
            padding: var(--section-py) 0;
            background: var(--white);
        }

        .attendance-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .att-card {
            padding: 40px 36px;
            border-radius: 24px;
            position: relative;
            overflow: hidden;
        }

        .att-card.online {
            background: linear-gradient(135deg, var(--blush-light), var(--blush));
        }

        .att-card.domiciliar {
            background: linear-gradient(135deg, #F0E8E4, #E8DDD8);
        }

        .att-card-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        }

        .att-card h3 {
            margin-bottom: 12px;
        }

        .att-card p {
            font-size: 0.95rem;
            color: var(--dark-light);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .att-features {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 24px;
        }

        .att-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: var(--dark-light);
        }

        .att-feature svg {
            width: 18px;
            height: 18px;
            color: var(--rose-dark);
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            .attendance-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
       TESTIMONIALS
       ======================================== */
        .testimonials {
            padding: var(--section-py) 0;
            background: var(--dark);
            color: var(--white);
        }

        .testimonials .section-label {
            color: var(--rose);
        }

        .testimonials h2 {
            color: var(--white);
        }

        .testimonials-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px 28px;
            transition: all 0.3s var(--ease-out);
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            color: #F5C34B;
            font-size: 0.9rem;
            letter-spacing: 2px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--rose-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--white);
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.9rem;
        }

        .testimonial-condition {
            font-size: 0.78rem;
            color: rgba(255, 255, 255, 0.5);
        }

        /* ========================================
       CTA SECTION
       ======================================== */
        .cta-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--blush) 0%, var(--blush-light) 100%);
            text-align: center;
        }

        .cta-section h2 {
            margin-bottom: 16px;
        }

        .cta-section p {
            color: var(--dark-light);
            font-size: 1.05rem;
            margin-bottom: 32px;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ========================================
       CONTACT / CONTATO
       ======================================== */
        .contact {
            padding: var(--section-py) 0;
            background: var(--white);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-info h2 {
            margin-bottom: 16px;
        }

        .contact-info>p {
            color: var(--dark-light);
            margin-bottom: 32px;
            line-height: 1.8;
        }

        .contact-channels {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-channel {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: var(--blush-light);
            border-radius: 14px;
            transition: all 0.3s var(--ease-out);
        }

        .contact-channel:hover {
            background: var(--blush);
            transform: translateX(4px);
        }

        .channel-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .channel-icon svg {
            width: 22px;
            height: 22px;
            color: var(--rose-dark);
        }

        .channel-label {
            font-size: 0.78rem;
            color: var(--gray);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }

        .channel-value {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--dark);
        }

        .contact-form-wrap {
            background: var(--off-white);
            border: 1px solid var(--gray-light);
            border-radius: 24px;
            padding: 40px 36px;
        }

        .contact-form-wrap h3 {
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--dark-light);
            margin-bottom: 6px;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-light);
            border-radius: 12px;
            font-family: var(--font-body);
            font-size: 0.92rem;
            color: var(--dark);
            background: var(--white);
            transition: border-color 0.3s;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--rose-dark);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        @media (max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }
        }

        /* ========================================
       FOOTER
       ======================================== */
        .footer {
            background: var(--dark);
            color: rgba(255, 255, 255, 0.6);
            padding: 50px 0 30px;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 12px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 0.88rem;
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-crn {
            margin-top: 16px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--rose);
        }

        .footer-nav h4 {
            color: var(--white);
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 16px;
        }

        .footer-nav a {
            display: block;
            font-size: 0.88rem;
            margin-bottom: 10px;
            transition: color 0.2s;
        }

        .footer-nav a:hover {
            color: var(--rose);
        }

        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .footer-social a:hover {
            border-color: var(--rose-dark);
            background: var(--rose-dark);
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
            fill: rgba(255, 255, 255, 0.7);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 0.8rem;
        }

        @media (max-width: 768px) {
            .footer-inner {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        /* ========================================
       WHATSAPP FLOAT
       ======================================== */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 900;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: #25D366;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
            transition: all 0.3s var(--ease-out);
            animation: pulse-green 2.5s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: var(--white);
        }

        @keyframes pulse-green {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
            }

            70% {
                box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* ========================================
       SCROLL PROGRESS BAR
       ======================================== */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: var(--rose-dark);
            z-index: 1001;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ========================================
       BACK TO TOP
       ======================================== */
        .back-top {
            position: fixed;
            bottom: 90px;
            right: 28px;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--white);
            border: 1px solid var(--gray-light);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 899;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s var(--ease-out);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        }

        .back-top.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .back-top:hover {
            background: var(--rose-dark);
            border-color: var(--rose-dark);
        }

        .back-top:hover svg {
            stroke: var(--white);
        }

        .back-top svg {
            width: 20px;
            height: 20px;
            stroke: var(--dark);
            stroke-width: 2;
            fill: none;
        }

        /* ========================================
       LOADING SCREEN
       ======================================== */
        .loader {
            position: fixed;
            inset: 0;
            background: var(--off-white);
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 20px;
            transition: opacity 0.5s, visibility 0.5s;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-text {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--dark);
        }

        .loader-text span {
            color: var(--rose-dark);
        }

        .loader-bar {
            width: 120px;
            height: 3px;
            background: var(--gray-light);
            border-radius: 3px;
            overflow: hidden;
        }

        .loader-bar::after {
            content: '';
            display: block;
            width: 50%;
            height: 100%;
            background: var(--rose-dark);
            border-radius: 3px;
            animation: load 1s ease-in-out infinite;
        }

        @keyframes load {
            0% {
                transform: translateX(-100%);
            }

            100% {
                transform: translateX(300%);
            }
        }
