/* ===================================================================
   CRESCIMANI DERMATOLOGIA — DESIGN SYSTEM (unificado)
   Base: home + componentes de página interna (lp-*)
   =================================================================== */


        /* ============================================
           CRESCIMANI DERMATOLOGIA — DESIGN SYSTEM
           ============================================ */
        :root {
            --gold: #C4A265;
            --gold-light: #D4B87A;
            --gold-dark: #A8884E;
            --cream: #FAF6F0;
            --cream-dark: #F0E8DA;
            --white: #FFFFFF;
            --black: #1A1A1A;
            --gray-900: #2D2D2D;
            --gray-700: #555555;
            --gray-500: #888888;
            --gray-300: #CCCCCC;
            --gray-100: #F5F5F5;
            --green-whatsapp: #25D366;
            --green-whatsapp-dark: #1DA851;
            --green: #25D366;
            --green-dark: #1DA851;
            --font-display: 'Cormorant Garamond', Georgia, serif;
            --font-body: 'Montserrat', 'Segoe UI', sans-serif;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
            --shadow-gold: 0 4px 20px rgba(196,162,101,0.2);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body {
            font-family: var(--font-body);
            color: var(--gray-900);
            background: var(--white);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        /* ============ HEADER / NAV ============ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(196,162,101,0.15);
            transition: var(--transition);
        }
        .header.scrolled {
            box-shadow: var(--shadow-sm);
        }
        .nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        .logo {
            font-family: var(--font-display);
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--gray-900);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span { color: var(--gold); }
        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
            list-style: none;
        }
        .nav-links a {
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--gray-700);
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: var(--transition);
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: var(--transition);
        }
        .nav-links a:hover { color: var(--gold); }
        .nav-links a:hover::after { width: 100%; }
        .nav-links a.nav-cta {
            background: var(--gold);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 50px;
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: var(--transition);
        }
        .nav-links a.nav-cta:hover {
            background: var(--gold-dark);
            color: var(--white);
            transform: translateY(-1px);
            box-shadow: var(--shadow-gold);
        }
        .nav-links a.nav-cta::after { display: none; }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 12px;
            min-width: 48px;
            min-height: 48px;
        }
        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--gray-900);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* ============ HERO ============ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, var(--cream) 0%, var(--white) 50%, var(--cream-dark) 100%);
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 200%;
            background: radial-gradient(ellipse, rgba(196,162,101,0.06) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-content { position: relative; z-index: 2; }
        .hero-badge {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 20px;
            padding: 8px 16px;
            border: 1px solid var(--gold);
            border-radius: 50px;
        }
        .hero h1 {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 400;
            line-height: 1.15;
            color: var(--gray-900);
            margin-bottom: 24px;
        }
        .hero h1 em {
            font-style: italic;
            color: var(--gold);
        }
        .hero-subtitle {
            font-size: 1.1rem;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 16px;
            font-weight: 300;
        }
        .hero-credentials {
            font-size: 0.85rem;
            color: var(--gray-500);
            margin-bottom: 40px;
            letter-spacing: 0.5px;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .hero-image-frame {
            width: 100%;
            max-width: 480px;
            aspect-ratio: 3/4;
            border-radius: var(--radius-lg);
            background: linear-gradient(145deg, var(--cream-dark) 0%, var(--gold-light) 100%);
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .hero-image-frame::after {
            content: 'Dra. Karina Crescimani';
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            font-family: var(--font-display);
            font-size: 1.4rem;
            color: var(--white);
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }
        .hero-float-card {
            position: absolute;
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 16px 20px;
            box-shadow: var(--shadow-md);
            z-index: 3;
        }
        .hero-float-card.card-crm {
            bottom: 40px;
            right: -20px;
            text-align: center;
        }
        .hero-float-card .card-label {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gray-500);
            margin-bottom: 4px;
        }
        .hero-float-card .card-value {
            font-family: var(--font-display);
            font-size: 1.3rem;
            color: var(--gold);
            font-weight: 600;
        }

        /* ============ BUTTONS ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: var(--font-body);
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            cursor: pointer;
            border: none;
            transition: var(--transition);
        }
        .btn-whatsapp {
            background: var(--green-whatsapp);
            color: var(--white);
        }
        .btn-whatsapp:hover {
            background: var(--green-whatsapp-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37,211,102,0.35);
        }
        .btn-outline {
            background: transparent;
            color: var(--gold);
            border: 2px solid var(--gold);
        }
        .btn-outline:hover {
            background: var(--gold);
            color: var(--white);
            transform: translateY(-2px);
        }
        .btn-gold {
            background: var(--gold);
            color: var(--white);
        }
        .btn-gold:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-gold);
        }
        .btn-icon {
            width: 20px;
            height: 20px;
        }

        /* ============ SECTIONS ============ */
        .section {
            padding: 100px 24px;
        }
        .section-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 3px;
            color: var(--gold);
            margin-bottom: 16px;
        }
        .section-title {
            font-family: var(--font-display);
            font-size: 2.8rem;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 16px;
        }
        .section-subtitle {
            font-size: 1.05rem;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 300;
            line-height: 1.7;
        }

        /* ============ ABOUT ============ */
        .about { background: var(--white); }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }
        .about-image {
            width: 100%;
            aspect-ratio: 1/1;
            border-radius: var(--radius-lg);
            background: linear-gradient(145deg, var(--cream) 0%, var(--cream-dark) 100%);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }
        .about-image::after {
            content: '';
            position: absolute;
            inset: -12px;
            border: 1px solid var(--gold);
            border-radius: calc(var(--radius-lg) + 4px);
            opacity: 0.3;
            pointer-events: none;
        }
        .about-content h2 {
            font-family: var(--font-display);
            font-size: 2.4rem;
            font-weight: 400;
            color: var(--gray-900);
            margin-bottom: 24px;
            line-height: 1.2;
        }
        .about-content h2 em { color: var(--gold); font-style: italic; }
        .about-philosophy {
            font-family: var(--font-display);
            font-size: 1.3rem;
            font-style: italic;
            color: var(--gold-dark);
            margin-bottom: 24px;
            line-height: 1.6;
            padding-left: 20px;
            border-left: 3px solid var(--gold);
        }
        .about-text {
            font-size: 0.95rem;
            color: var(--gray-700);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        .about-credentials {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        .credential-card {
            text-align: center;
            padding: 20px 12px;
            background: var(--cream);
            border-radius: var(--radius-sm);
        }
        .credential-card .cred-value {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--gold);
            display: block;
            margin-bottom: 4px;
        }
        .credential-card .cred-label {
            font-size: 0.7rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gray-500);
        }

        /* ============ PROCEDURES ============ */
        .procedures { background: var(--cream); }
        .procedures-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }
        .proc-card {
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .proc-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }
        .proc-card-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--cream-dark) 0%, var(--gold-light) 100%);
            position: relative;
            overflow: hidden;
        }
        .proc-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .proc-card-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: var(--gold);
            color: var(--white);
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 4px 10px;
            border-radius: 50px;
        }
        .proc-card-body {
            padding: 24px;
        }
        .proc-card-category {
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            margin-bottom: 8px;
        }
        .proc-card-title {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 500;
            color: var(--gray-900);
            margin-bottom: 10px;
        }
        .proc-card-desc {
            font-size: 0.88rem;
            color: var(--gray-500);
            line-height: 1.6;
            margin-bottom: 16px;
        }
        .proc-card-cta {
            font-size: 0.78rem;
            font-weight: 600;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }
        .proc-card:hover .proc-card-cta { gap: 12px; }

        /* ============ DIFFERENTIALS ============ */
        .differentials { background: var(--white); }
        .diff-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .diff-card {
            text-align: center;
            padding: 40px 24px;
            border-radius: var(--radius-md);
            transition: var(--transition);
        }
        .diff-card:hover { background: var(--cream); }
        .diff-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--cream);
            border-radius: 50%;
            font-size: 1.5rem;
        }
        .diff-card:hover .diff-icon { background: var(--gold); color: var(--white); }
        .diff-title {
            font-family: var(--font-display);
            font-size: 1.2rem;
            font-weight: 500;
            margin-bottom: 10px;
            color: var(--gray-900);
        }
        .diff-text {
            font-size: 0.85rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* ============ CTA BANNER ============ */
        .cta-banner {
            background: linear-gradient(135deg, var(--gray-900) 0%, #3a3a3a 100%);
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(ellipse at center, rgba(196,162,101,0.1) 0%, transparent 70%);
        }
        .cta-banner-inner {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }
        .cta-banner h2 {
            font-family: var(--font-display);
            font-size: 2.6rem;
            font-weight: 400;
            color: var(--white);
            margin-bottom: 16px;
        }
        .cta-banner p {
            font-size: 1rem;
            color: var(--gray-300);
            margin-bottom: 36px;
            font-weight: 300;
        }
        .cta-banner .btn-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============ CONTACT ============ */
        .contact { background: var(--cream); }
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }
        .contact-info h3 {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 24px;
            color: var(--gray-900);
        }
        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }
        .contact-item-icon {
            width: 44px;
            height: 44px;
            min-width: 44px;
            background: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            box-shadow: var(--shadow-sm);
        }
        .contact-item-text {
            font-size: 0.9rem;
            color: var(--gray-700);
            line-height: 1.6;
        }
        .contact-item-text strong {
            display: block;
            font-size: 0.95rem;
            color: var(--gray-900);
            margin-bottom: 2px;
        }
        .contact-item-text a {
            color: var(--gold);
            text-decoration: none;
        }
        .contact-item-text a:hover { text-decoration: underline; }
        .contact-map {
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            min-height: 400px;
        }
        .contact-map iframe {
            width: 100%;
            height: 100%;
            min-height: 400px;
            border: none;
        }

        /* ============ FOOTER ============ */
        .footer {
            background: var(--gray-900);
            color: var(--gray-300);
            padding: 60px 24px 30px;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 48px;
            margin-bottom: 40px;
        }
        .footer-brand .logo {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 16px;
            display: block;
        }
        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.7;
            color: var(--gray-500);
        }
        .footer h4 {
            font-family: var(--font-display);
            font-size: 1.1rem;
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 500;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a {
            font-size: 0.85rem;
            color: var(--gray-500);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover { color: var(--gold); }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.78rem;
            color: var(--gray-500);
        }
        .footer-social {
            display: flex;
            gap: 16px;
        }
        .footer-social a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255,255,255,0.05);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-500);
            text-decoration: none;
            transition: var(--transition);
            font-size: 0.9rem;
        }
        .footer-social a:hover {
            background: var(--gold);
            color: var(--white);
        }

        /* ============ FLOATING WHATSAPP ============ */
        .whatsapp-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .whatsapp-float-label {
            background: var(--white);
            padding: 10px 18px;
            border-radius: 50px;
            box-shadow: var(--shadow-md);
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--gray-900);
            display: none;
            animation: fadeIn 0.3s ease;
        }
        .whatsapp-float:hover .whatsapp-float-label { display: block; }
        .whatsapp-float-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--green-whatsapp);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(37,211,102,0.4);
            transition: var(--transition);
            text-decoration: none;
        }
        .whatsapp-float-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 28px rgba(37,211,102,0.5);
        }
        .whatsapp-float-btn svg {
            width: 30px;
            height: 30px;
            fill: var(--white);
        }

        /* ============ MOBILE BAR ============ */
        .mobile-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 998;
            background: var(--white);
            border-top: 1px solid var(--gray-100);
            box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
            padding: 8px 16px;
        }
        .mobile-bar-inner {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 8px;
        }
        .mobile-bar-btn {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 4px;
            padding: 10px 8px;
            min-height: 52px;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-size: 0.65rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        .mobile-bar-btn.whatsapp { background: var(--green-whatsapp); color: var(--white); }
        .mobile-bar-btn.phone { background: var(--gold); color: var(--white); }
        .mobile-bar-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: var(--white); }
        .mobile-bar-btn svg { width: 22px; height: 22px; }

        /* ============ FOCUS & ACCESSIBILITY ============ */
        *:focus-visible {
            outline: 2px solid var(--gold);
            outline-offset: 3px;
            border-radius: 4px;
        }
        .btn:focus-visible {
            outline-offset: 4px;
            box-shadow: var(--shadow-gold);
        }
        .proc-card:focus-visible {
            outline-offset: 4px;
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }
        .whatsapp-float-btn:focus-visible {
            outline: 2px solid var(--white);
            outline-offset: 4px;
        }
        /* ============ ANIMATIONS ============ */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .animate-on-scroll {
            opacity: 1;
            transform: none;
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .animate-on-scroll.pre-animate {
            opacity: 0;
            transform: translateY(30px);
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============ RESPONSIVE ============ */
        @media (max-width: 1024px) {
            .hero h1 { font-size: 2.8rem; }
            .procedures-grid { grid-template-columns: repeat(2, 1fr); }
            .diff-grid { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .nav-links.active {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--white);
                padding: 24px;
                gap: 20px;
                box-shadow: var(--shadow-md);
                border-bottom: 2px solid var(--gold);
            }
            .menu-toggle { display: block; }
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
                padding-top: 40px;
            }
            .hero h1 { font-size: 2.4rem; }
            .hero-actions { justify-content: center; }
            .hero-visual { order: -1; }
            .hero-image-frame { max-width: 300px; aspect-ratio: 1/1; }
            .hero-float-card.card-crm { right: 10px; bottom: 20px; }
            .about-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .about-credentials { grid-template-columns: repeat(3, 1fr); }
            .section-title { font-size: 2.2rem; }
            .procedures-grid { grid-template-columns: 1fr; }
            .diff-grid { grid-template-columns: 1fr 1fr; }
            .contact-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
            .cta-banner h2 { font-size: 2rem; }
            .section { padding: 60px 16px; }
            .whatsapp-float { display: none; }
            .mobile-bar { display: block; }
            body { padding-bottom: 80px; }
        }

        @media (max-width: 480px) {
            .hero h1 { font-size: 1.9rem; }
            .hero-badge { font-size: 0.65rem; }
            .btn { padding: 12px 24px; font-size: 0.78rem; }
            .section-title { font-size: 1.8rem; }
            .diff-grid { grid-template-columns: 1fr; }
            .about-credentials { grid-template-columns: 1fr; }
        }
    

/* ============ COMPONENTES DE PÁGINA INTERNA ============ */


        .lp-header {
            background:var(--white); border-bottom:1px solid rgba(196,162,101,0.15);
            padding:16px 24px; display:flex; align-items:center; justify-content:space-between;
            position:sticky; top:0; z-index:100; backdrop-filter:blur(20px);
        }

        .lp-logo { font-family:var(--font-display); font-size:1.3rem; color:var(--gray-900); text-decoration:none; }

        .lp-logo span { color:var(--gold); }

        .lp-header-cta {
            background:var(--green); color:var(--white); padding:10px 24px; border-radius:50px;
            font-size:0.78rem; font-weight:600; text-transform:uppercase; letter-spacing:1.5px;
            text-decoration:none; transition:all 0.3s ease;
        }

        .lp-header-cta:hover { background:var(--green-dark); transform:translateY(-1px); }

        .lp-hero {
            background:linear-gradient(135deg, var(--cream) 0%, var(--white) 60%, var(--cream-dark) 100%);
            padding:80px 24px 60px; text-align:center; position:relative;
        }

        .lp-hero-inner { max-width:800px; margin:0 auto; }

        .lp-badge {
            display:inline-block; font-size:0.7rem; font-weight:600; text-transform:uppercase;
            letter-spacing:3px; color:var(--gold); padding:6px 16px; border:1px solid var(--gold);
            border-radius:50px; margin-bottom:20px;
        }

        .lp-hero h1 {
            font-family:var(--font-display); font-size:3rem; font-weight:400; line-height:1.15;
            margin-bottom:20px; color:var(--gray-900);
        }

        .lp-hero h1 em { font-style:italic; color:var(--gold); }

        .lp-hero-sub {
            font-size:1.1rem; color:var(--gray-700); margin-bottom:12px; font-weight:300; line-height:1.7;
        }

        .lp-hero-cred {
            font-size:0.82rem; color:var(--gray-500); margin-bottom:36px; letter-spacing:0.5px;
        }

        .lp-hero-actions { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

        .btn-icon { width:20px; height:20px; }

        .lp-benefits { padding:80px 24px; background:var(--white); }

        .lp-benefits-inner { max-width:1000px; margin:0 auto; }

        .lp-section-label {
            display:block; text-align:center; font-size:0.72rem; font-weight:600;
            text-transform:uppercase; letter-spacing:3px; color:var(--gold); margin-bottom:12px;
        }

        .lp-section-title {
            font-family:var(--font-display); font-size:2.4rem; font-weight:400;
            text-align:center; margin-bottom:48px; color:var(--gray-900);
        }

        .benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }

        .benefit-card {
            text-align:center; padding:36px 24px; border-radius:var(--radius);
            background:var(--cream); transition:all 0.3s ease;
        }

        .benefit-card:hover { transform:translateY(-4px); box-shadow:var(--shadow); }

        .benefit-icon {
            width:56px; height:56px; margin:0 auto 16px; background:var(--white);
            border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem;
        }

        .benefit-title {
            font-family:var(--font-display); font-size:1.2rem; font-weight:500;
            margin-bottom:8px; color:var(--gray-900);
        }

        .benefit-text { font-size:0.85rem; color:var(--gray-500); line-height:1.6; }

        .lp-how { padding:80px 24px; background:var(--cream); }

        .lp-how-inner { max-width:800px; margin:0 auto; }

        .steps { counter-reset:step; }

        .step {
            display:flex; gap:24px; margin-bottom:36px; align-items:flex-start;
            counter-increment:step;
        }

        .step-num {
            min-width:48px; height:48px; background:var(--gold); color:var(--white);
            border-radius:50%; display:flex; align-items:center; justify-content:center;
            font-family:var(--font-display); font-size:1.3rem; font-weight:600;
        }

        .step-content h3 {
            font-family:var(--font-display); font-size:1.2rem; font-weight:500;
            margin-bottom:6px; color:var(--gray-900);
        }

        .step-content p { font-size:0.9rem; color:var(--gray-700); line-height:1.6; }

        .lp-faq { padding:80px 24px; background:var(--white); }

        .lp-faq-inner { max-width:700px; margin:0 auto; }

        .faq-item { border-bottom:1px solid var(--gray-100); }

        .faq-q {
            width:100%; background:none; border:none; padding:20px 0; cursor:pointer;
            font-family:var(--font-body); font-size:0.95rem; font-weight:600;
            color:var(--gray-900); text-align:left; display:flex; justify-content:space-between;
            align-items:center;
        }

        .faq-q::after { content:'+'; font-size:1.3rem; color:var(--gold); transition:all 0.3s; }

        .faq-q.open::after { content:'\2212'; }

        .faq-a {
            max-height:0; overflow:hidden; transition:max-height 0.3s ease;
            font-size:0.9rem; color:var(--gray-700); line-height:1.7;
        }

        .faq-a.open { max-height:300px; padding-bottom:20px; }

        .lp-cta-final {
            background:linear-gradient(135deg, var(--gray-900), #3a3a3a);
            padding:80px 24px; text-align:center;
        }

        .lp-cta-final h2 {
            font-family:var(--font-display); font-size:2.4rem; font-weight:400;
            color:var(--white); margin-bottom:16px;
        }

        .lp-cta-final p { color:var(--gray-300); margin-bottom:32px; font-weight:300; }

        .lp-cta-final .btn-group { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; }

        .trust-bar {
            background:var(--cream); padding:20px 24px; text-align:center;
            font-size:0.78rem; color:var(--gray-500); letter-spacing:0.5px;
        }

        .trust-bar strong { color:var(--gold); }

        .lp-footer {
            background:var(--gray-900); color:var(--gray-500); padding:30px 24px;
            text-align:center; font-size:0.78rem;
        }

        .lp-footer a { color:var(--gold); text-decoration:none; }

        .wa-float { position:fixed; bottom:28px; right:28px; z-index:999; }

        .wa-float a {
            width:60px; height:60px; border-radius:50%; background:var(--green);
            display:flex; align-items:center; justify-content:center;
            box-shadow:0 4px 20px rgba(37,211,102,0.4); transition:all 0.3s; text-decoration:none;
        }

        .wa-float a:hover { transform:scale(1.1); }

        .wa-float svg { width:30px; height:30px; fill:var(--white); }

        .m-bar {
            display:none; position:fixed; bottom:0; left:0; right:0; z-index:998;
            background:var(--white); border-top:1px solid var(--gray-100);
            box-shadow:0 -4px 20px rgba(0,0,0,0.08); padding:8px 16px;
        }

        .m-bar-inner { display:grid; grid-template-columns:1fr 1fr; gap:8px; }

        .m-bar-btn {
            display:flex; align-items:center; justify-content:center; gap:6px;
            padding:12px; border-radius:8px; text-decoration:none;
            font-size:0.75rem; font-weight:600; text-transform:uppercase; letter-spacing:1px;
        }

        .m-bar-btn.wa { background:var(--green); color:var(--white); }

        .m-bar-btn.ph { background:var(--gold); color:var(--white); }

        .m-bar-btn svg { width:20px; height:20px; }


        .lp-hero-img {
            max-width:520px; margin:40px auto 0; border-radius:var(--radius);
            overflow:hidden; box-shadow:0 8px 40px rgba(0,0,0,0.12);
        }

        .lp-hero-img img {
            width:100%; height:auto; display:block;
            object-fit:cover; max-height:360px;
        }
@media(max-width:768px) {

            .lp-hero h1 { font-size:2.2rem; }

            .benefits-grid { grid-template-columns:1fr; }

            .lp-section-title { font-size:1.9rem; }

            .wa-float { display:none; }

            .m-bar { display:block; }
}

/* ===================================================================
   COMPONENTES ADICIONAIS — arquitetura de páginas SEO
   (carregado depois da base: sobrescreve intencionalmente)
   =================================================================== */

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------------------------------------------------------- logotipo */
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff; font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
}
.logo-text {
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 600;
  color: var(--black); line-height: 1.05; display: flex; flex-direction: column;
}
.logo-text em {
  font-style: normal; font-family: var(--font-body); font-size: 0.6rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 500;
}
.header.scrolled .logo-text { color: var(--black); }

/* -------------------------------------------------------- breadcrumbs */
.breadcrumbs { background: var(--cream); border-bottom: 1px solid var(--cream-dark); padding: 90px 0 0; }
.breadcrumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  padding: 14px 0; margin: 0; font-size: 0.78rem; color: var(--gray-500);
}
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs li + li::before { content: '›'; color: var(--gray-300); }
.breadcrumbs a { color: var(--gray-700); text-decoration: none; }
.breadcrumbs a:hover { color: var(--gold); text-decoration: underline; }
.breadcrumbs li[aria-current] { color: var(--gold-dark); font-weight: 500; }

/* Sem breadcrumb (home), o hero precisa do respiro do header fixo */
main > .lp-hero:first-child { padding-top: 130px; }
.breadcrumbs + main > .lp-hero:first-child { padding-top: 50px; }

/* --------------------------------------------------------------- hero */
.lp-hero-inner {
  max-width: 1200px; display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 56px; align-items: center; text-align: left;
}
.lp-hero-inner.no-img { grid-template-columns: 1fr; max-width: 860px; text-align: center; }
.lp-hero-text { min-width: 0; }
.lp-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 18px; }
.lp-hero-img img { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ------------------------------------------------------------- prosa */
.prose { max-width: 78ch; color: var(--gray-700); font-size: 1rem; line-height: 1.85; }
.lp-benefits-inner > .prose, .lp-benefits-inner > .section-intro { margin-left: auto; margin-right: auto; }
.prose p { margin-bottom: 18px; }
.prose h3 {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--black); margin: 34px 0 12px;
}
.prose ul, .prose ol { margin: 0 0 20px; padding-left: 22px; }
.prose li { margin-bottom: 10px; }
.prose li::marker { color: var(--gold); }
.prose strong { color: var(--gray-900); font-weight: 600; }
.prose a { color: var(--gold-dark); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.section-intro { text-align: center; margin-bottom: 44px; }

.prose .callout {
  background: var(--cream); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 20px 24px; margin: 26px 0; font-size: 0.95rem;
}
.prose .callout p:last-child { margin-bottom: 0; }

/* --------------------------------------------------- grade de links */
.link-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.link-card {
  display: flex; flex-direction: column; gap: 10px;
  background: var(--white); border: 1px solid var(--cream-dark); border-radius: var(--radius-lg);
  padding: 28px 26px; text-decoration: none; transition: var(--transition);
}
.link-card:hover { border-color: var(--gold); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.link-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--black); }
.link-card p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.7; flex: 1; }
.link-more { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold-dark); }

/* ------------------------------------------------------ seção alterna */
.lp-benefits.alt { background: var(--cream); }

/* ------------------------------------------------------------ rodapé */
.lp-footer { background: var(--black); color: var(--gray-300); padding: 70px 0 0; text-align: left; }
.lp-footer .footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 50px;
}
.lp-footer .logo-text { color: #fff; margin-bottom: 18px; }
.lp-footer p { font-size: 0.85rem; line-height: 1.9; color: var(--gray-300); margin-bottom: 14px; }
.footer-addr { color: var(--gray-500) !important; }
.footer-h {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 11px; }
.footer-col a, .lp-footer a { color: var(--gray-300); text-decoration: none; font-size: 0.85rem; transition: var(--transition); }
.footer-col a:hover, .lp-footer a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0 90px; }
.footer-bottom p { font-size: 0.78rem; color: var(--gray-500); margin-bottom: 8px; }
.footer-disclaimer { font-size: 0.72rem !important; line-height: 1.7; max-width: 90ch; }

/* ---------------------------------------------------------- responsivo */
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .lp-hero-actions { justify-content: center; }
  .lp-hero-img { order: -1; max-width: 380px; margin: 0 auto; }
  .prose { margin-left: auto; margin-right: auto; }
  .lp-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .lp-footer .footer-grid { grid-template-columns: 1fr; }
  .breadcrumbs { padding-top: 78px; }
  .breadcrumbs ol { font-size: 0.72rem; }
}
