* { margin: 0; padding: 0; box-sizing: border-box; }

        :root {
            --verde-oscuro: #0a3d2e;
            --verde-medio: #156247;
            --verde-claro: #1db57a;
            --verde-brillante: #22d98a;
            --verde-suave: #a8f0d0;
            --verde-palido: #e8f8f0;
            --dorado: #c9a227;
            --dorado-claro: #f0c93a;
            --blanco: #ffffff;
            --gris-claro: #f4f7f5;
            --gris-texto: #4a5568;
            --sombra: rgba(10,61,46,0.15);
        }

        body {
            font-family: 'DM Sans', sans-serif;
            line-height: 1.6;
            color: #2d3748;
            overflow-x: hidden;
            background: var(--blanco);
        }

        /* ===== HEADER ===== */
        header {
            background: linear-gradient(135deg, var(--verde-oscuro) 0%, var(--verde-medio) 100%);
            padding: 0.8rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
        }

        /* ===== LOGO SVG ===== */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
        }

        .logo-svg {
            width: 52px;
            height: 52px;
            filter: drop-shadow(0 2px 8px rgba(201,162,39,0.4));
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }

        .logo-text .brand-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--blanco);
            letter-spacing: 0.5px;
        }

        .logo-text .brand-tagline {
            font-size: 0.65rem;
            font-weight: 500;
            color: var(--dorado-claro);
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            list-style: none;
        }

        .nav-menu li a {
            color: rgba(255,255,255,0.88);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.92rem;
            transition: all 0.3s ease;
            padding: 0.5rem 0.9rem;
            border-radius: 8px;
            letter-spacing: 0.3px;
        }

        .nav-menu li a:hover {
            color: var(--verde-brillante);
            background: rgba(29,181,122,0.12);
        }

        .login-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, var(--dorado), var(--dorado-claro));
            color: var(--verde-oscuro) !important;
            padding: 0.7rem 1.4rem !important;
            border-radius: 25px !important;
            font-weight: 700 !important;
            box-shadow: 0 4px 15px rgba(201,162,39,0.4);
            transition: all 0.3s ease !important;
        }

        .login-btn:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(201,162,39,0.6) !important;
            background: linear-gradient(135deg, var(--dorado-claro), var(--dorado)) !important;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 26px;
            height: 2.5px;
            background: var(--verde-brillante);
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; }
        .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

        /* ===== MODAL LOGIN ===== */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0; top: 0;
            width: 100%; height: 100%;
            background: rgba(0,0,0,0.75);
            backdrop-filter: blur(4px);
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        @keyframes slideDown { from { transform: translateY(-40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

        .modal-content {
            background: linear-gradient(160deg, var(--verde-oscuro) 0%, #0e5038 100%);
            margin: 4% auto;
            border: 2px solid rgba(29,181,122,0.4);
            border-radius: 20px;
            width: 90%;
            max-width: 460px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,162,39,0.2);
            animation: slideDown 0.3s ease;
            overflow: hidden;
        }

        .modal-header {
            background: linear-gradient(135deg, var(--dorado), var(--dorado-claro));
            padding: 1.4rem 1.8rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h2 { color: var(--verde-oscuro); margin: 0; font-size: 1.3rem; font-family: 'Playfair Display', serif; }
        .close { color: var(--verde-oscuro); font-size: 1.8rem; font-weight: bold; cursor: pointer; transition: transform 0.3s; }
        .close:hover { transform: rotate(90deg); }

        .modal-body { padding: 2rem 2rem 2.5rem; }

        .form-group-login { margin-bottom: 1.3rem; }
        .form-group-login label { display: block; margin-bottom: 0.4rem; color: var(--verde-brillante); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.5px; }

        .form-group-login input {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1.5px solid rgba(29,181,122,0.35);
            border-radius: 10px;
            font-size: 0.95rem;
            background: rgba(255,255,255,0.07);
            color: var(--blanco);
            transition: all 0.3s;
            font-family: 'DM Sans', sans-serif;
        }

        .form-group-login input:focus { outline: none; border-color: var(--verde-brillante); background: rgba(255,255,255,0.1); box-shadow: 0 0 0 3px rgba(34,217,138,0.15); }
        .form-group-login input::placeholder { color: rgba(255,255,255,0.35); }

        .login-submit-btn {
            width: 100%;
            padding: 1rem;
            background: linear-gradient(135deg, var(--dorado), var(--dorado-claro));
            color: var(--verde-oscuro);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 0.5rem;
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 0.5px;
        }

        .login-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 20px rgba(201,162,39,0.5); }

        .login-links { display: flex; justify-content: center; margin-top: 1.2rem; }
        .login-links a { color: var(--verde-brillante); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
        .login-links a:hover { color: var(--verde-suave); text-decoration: underline; }

        .create-account { text-align: center; margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid rgba(29,181,122,0.2); }
        .create-account p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin-bottom: 0.4rem; }
        .create-account a { color: var(--dorado-claro); text-decoration: none; font-weight: 600; }

        /* ===== HERO ===== */
        .hero {
            background: linear-gradient(145deg, var(--verde-oscuro) 0%, var(--verde-medio) 55%, #1e8a5e 100%);
            padding: 130px 2rem 90px;
            text-align: center;
            color: var(--blanco);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%; left: -50%;
            width: 200%; height: 200%;
            background: radial-gradient(ellipse at 60% 40%, rgba(29,181,122,0.15) 0%, transparent 60%),
                        radial-gradient(ellipse at 20% 80%, rgba(201,162,39,0.08) 0%, transparent 50%);
            animation: slowPulse 8s ease-in-out infinite alternate;
        }

        @keyframes slowPulse { from { transform: scale(1); } to { transform: scale(1.05); } }

        .hero-pattern {
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 80px);
        }

        .hero-content { max-width: 820px; margin: 0 auto; position: relative; z-index: 1; }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(201,162,39,0.15);
            border: 1px solid rgba(201,162,39,0.4);
            color: var(--dorado-claro);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.82rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.8s ease;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.4rem;
            font-weight: 900;
            margin-bottom: 1.2rem;
            line-height: 1.15;
            animation: fadeInUp 1s ease 0.1s backwards;
        }

        .hero h1 span { color: var(--verde-brillante); }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: rgba(255,255,255,0.82);
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease 0.2s backwards;
            font-weight: 300;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.3s backwards;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: linear-gradient(135deg, var(--dorado), var(--dorado-claro));
            color: var(--verde-oscuro);
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 6px 25px rgba(201,162,39,0.4);
        }

        .cta-button:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(201,162,39,0.5); }

        .cta-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            background: transparent;
            border: 2px solid rgba(255,255,255,0.5);
            color: var(--blanco);
            padding: 1rem 2.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .cta-outline:hover { border-color: var(--verde-brillante); color: var(--verde-brillante); transform: translateY(-2px); }

        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .hero-stats {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-top: 3.5rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.5s backwards;
        }

        .stat-item { text-align: center; }
        .stat-number { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--verde-brillante); display: block; }
        .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); letter-spacing: 0.5px; }

        /* ===== SECTIONS ===== */
        .section-header { text-align: center; margin-bottom: 3.5rem; }
        .section-tag { display: inline-block; color: var(--verde-medio); font-size: 0.78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 0.7rem; }
        .section-title { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--verde-oscuro); line-height: 1.2; }
        .section-title span { color: var(--verde-medio); }
        .section-line { width: 50px; height: 3px; background: linear-gradient(90deg, var(--verde-medio), var(--verde-brillante)); margin: 1rem auto 0; border-radius: 2px; }

        /* ===== BENEFICIOS ===== */
        .beneficios { padding: 90px 2rem; background: var(--gris-claro); }
        .container { max-width: 1200px; margin: 0 auto; }

        .beneficios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.8rem; }

        .beneficio-card {
            background: var(--blanco);
            padding: 2.2rem 1.8rem;
            border-radius: 16px;
            text-align: center;
            transition: all 0.35s ease;
            box-shadow: 0 4px 20px var(--sombra);
            border: 1px solid rgba(29,181,122,0.08);
            position: relative;
            overflow: hidden;
        }

        .beneficio-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--verde-medio), var(--verde-brillante));
            transform: scaleX(0);
            transition: transform 0.35s ease;
        }

        .beneficio-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px var(--sombra); }
        .beneficio-card:hover::before { transform: scaleX(1); }

        .beneficio-icon {
            width: 68px; height: 68px;
            background: linear-gradient(135deg, var(--verde-palido), #d0f0e4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.2rem;
            transition: all 0.35s ease;
        }

        .beneficio-card:hover .beneficio-icon { background: linear-gradient(135deg, var(--verde-medio), var(--verde-brillante)); }
        .beneficio-icon i { font-size: 1.7rem; color: var(--verde-medio); transition: color 0.35s ease; }
        .beneficio-card:hover .beneficio-icon i { color: var(--blanco); }
        .beneficio-card h3 { color: var(--verde-oscuro); margin-bottom: 0.8rem; font-size: 1.15rem; font-weight: 700; }
        .beneficio-card p { color: var(--gris-texto); font-size: 0.92rem; line-height: 1.7; }

        /* ===== REQUISITOS ===== */
        .requisitos { padding: 90px 2rem; background: var(--blanco); }

        .requisitos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }

        .requisito-item {
            background: linear-gradient(135deg, var(--verde-palido), #f0fbf6);
            padding: 1.6rem;
            border-radius: 14px;
            border-left: 4px solid var(--verde-claro);
            transition: all 0.3s ease;
            cursor: default;
        }

        .requisito-item:hover { transform: translateX(6px); box-shadow: 0 6px 20px var(--sombra); }
        .requisito-item .req-icon { font-size: 1.6rem; color: var(--verde-medio); margin-bottom: 0.7rem; display: block; }
        .requisito-item strong { display: block; color: var(--verde-oscuro); margin-bottom: 0.3rem; font-size: 0.95rem; }
        .requisito-item p { color: var(--gris-texto); font-size: 0.88rem; }

        /* ===== CALCULADORA ===== */
        .calculadora { padding: 90px 2rem; background: linear-gradient(160deg, var(--verde-oscuro) 0%, #0e5038 100%); position: relative; overflow: hidden; }
        .calculadora::before { content: ''; position: absolute; top: -30%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(29,181,122,0.12) 0%, transparent 70%); }

        .calc-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }

        .calc-title { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--blanco); margin-bottom: 0.5rem; }
        .calc-subtitle { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 0.95rem; }

        .calc-field { margin-bottom: 1.8rem; }
        .calc-field label { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.7rem; color: var(--verde-brillante); font-weight: 600; font-size: 0.9rem; }
        .calc-field label span { color: var(--dorado-claro); font-size: 1.05rem; font-weight: 700; background: rgba(201,162,39,0.12); padding: 0.2rem 0.8rem; border-radius: 20px; }

        .calc-field input[type="range"] {
            width: 100%;
            -webkit-appearance: none;
            height: 6px;
            border-radius: 3px;
            background: rgba(255,255,255,0.15);
            outline: none;
            cursor: pointer;
        }

        .calc-field input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 20px; height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dorado), var(--dorado-claro));
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(201,162,39,0.5);
            transition: transform 0.2s;
        }

        .calc-field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }

        .range-limits { display: flex; justify-content: space-between; margin-top: 0.4rem; color: rgba(255,255,255,0.4); font-size: 0.75rem; }

        .calc-input-num {
            width: 100%;
            padding: 0.85rem 1rem;
            background: rgba(255,255,255,0.08);
            border: 1.5px solid rgba(29,181,122,0.3);
            border-radius: 10px;
            color: var(--blanco);
            font-size: 1rem;
            font-family: 'DM Sans', sans-serif;
            transition: border-color 0.3s;
        }

        .calc-input-num:focus { outline: none; border-color: var(--verde-brillante); background: rgba(255,255,255,0.12); }

        /* Resultados */
        .calc-result {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(29,181,122,0.2);
            border-radius: 20px;
            padding: 2rem;
        }

        .result-title { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--verde-brillante); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.6rem; }

        .result-main {
            background: linear-gradient(135deg, rgba(29,181,122,0.15), rgba(201,162,39,0.08));
            border-radius: 14px;
            padding: 1.5rem;
            text-align: center;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(201,162,39,0.2);
        }

        .result-cuota-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.4rem; }
        .result-cuota { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--dorado-claro); line-height: 1; }
        .result-cuota small { font-size: 1.2rem; }

        .result-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem; }

        .detail-item { background: rgba(255,255,255,0.05); padding: 1rem; border-radius: 10px; text-align: center; }
        .detail-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 0.3rem; }
        .detail-value { font-size: 1.05rem; font-weight: 700; color: var(--blanco); }
        .detail-value.accent { color: var(--verde-brillante); }

        /* Tabla amortización */
        .tabla-toggle {
            width: 100%;
            padding: 0.85rem;
            background: rgba(29,181,122,0.12);
            border: 1.5px solid rgba(29,181,122,0.35);
            color: var(--verde-brillante);
            border-radius: 10px;
            cursor: pointer;
            font-size: 0.92rem;
            font-weight: 600;
            font-family: 'DM Sans', sans-serif;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .tabla-toggle:hover { background: rgba(29,181,122,0.2); border-color: var(--verde-brillante); }

        .tabla-container {
            display: none;
            margin-top: 1.5rem;
            max-height: 350px;
            overflow-y: auto;
            border-radius: 12px;
            border: 1px solid rgba(29,181,122,0.2);
        }

        .tabla-container.show { display: block; }

        .tabla-amort {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.82rem;
        }

        .tabla-amort thead th {
            background: rgba(29,181,122,0.2);
            color: var(--verde-brillante);
            padding: 0.7rem 0.9rem;
            text-align: right;
            font-weight: 600;
            position: sticky;
            top: 0;
            letter-spacing: 0.5px;
        }

        .tabla-amort thead th:first-child { text-align: center; }

        .tabla-amort tbody tr { border-bottom: 1px solid rgba(255,255,255,0.05); transition: background 0.2s; }
        .tabla-amort tbody tr:hover { background: rgba(29,181,122,0.07); }
        .tabla-amort tbody td { padding: 0.55rem 0.9rem; color: rgba(255,255,255,0.8); text-align: right; }
        .tabla-amort tbody td:first-child { text-align: center; color: var(--verde-brillante); font-weight: 600; }

        .tabla-container::-webkit-scrollbar { width: 6px; }
        .tabla-container::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); }
        .tabla-container::-webkit-scrollbar-thumb { background: rgba(29,181,122,0.4); border-radius: 3px; }

        /* ===== INFO LEGAL ===== */
        .info-legal { background: var(--verde-oscuro); color: var(--blanco); padding: 80px 2rem; }
        .info-legal-content { max-width: 1100px; margin: 0 auto; }
        .info-legal h2 { font-family: 'Playfair Display', serif; color: var(--dorado-claro); margin-bottom: 1rem; font-size: 2rem; }
        .info-legal p { margin-bottom: 1rem; line-height: 1.9; color: rgba(255,255,255,0.8); }
        .info-legal h3 { color: var(--verde-brillante); margin-top: 2rem; margin-bottom: 0.8rem; font-size: 1.1rem; }
        .info-legal ul { list-style: none; padding-left: 0; }
        .info-legal ul li { padding: 0.45rem 0 0.45rem 1.6rem; position: relative; color: rgba(255,255,255,0.78); font-size: 0.95rem; }
        .info-legal ul li:before { content: "✓"; position: absolute; left: 0; color: var(--verde-brillante); font-weight: bold; }
        .disclaimer { background: rgba(201,162,39,0.08); padding: 1.5rem 1.8rem; border-radius: 12px; margin-top: 2rem; border: 1px solid rgba(201,162,39,0.25); }
        .disclaimer h3 { color: var(--dorado-claro); }
        .disclaimer p { color: rgba(255,255,255,0.75); }

        /* ===== TESTIMONIOS ===== */
        .testimonios { padding: 90px 2rem; background: var(--gris-claro); }

        .testimonios-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.8rem; }

        .testimonio-card {
            background: var(--blanco);
            border-radius: 18px;
            padding: 2rem;
            box-shadow: 0 6px 25px var(--sombra);
            border: 1px solid rgba(29,181,122,0.1);
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .testimonio-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px var(--sombra); }

        .testimonio-card::before {
            content: '"';
            position: absolute;
            top: -10px; left: 1.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 5rem;
            color: var(--verde-claro);
            opacity: 0.25;
            line-height: 1;
        }

        .testimonio-stars { color: var(--dorado); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
        .testimonio-text { color: var(--gris-texto); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }

        .testimonio-author { display: flex; align-items: center; gap: 1rem; }

        .author-avatar {
            width: 50px; height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--blanco);
            flex-shrink: 0;
        }

        .author-info strong { display: block; color: var(--verde-oscuro); font-size: 0.95rem; }
        .author-info span { color: var(--gris-texto); font-size: 0.8rem; }

        .verified-badge { display: inline-flex; align-items: center; gap: 0.3rem; color: var(--verde-medio); font-size: 0.75rem; font-weight: 600; margin-top: 0.2rem; }

        /* ===== FORMULARIO ===== */
        .formulario { padding: 90px 2rem; background: var(--blanco); }

        .form-container {
            max-width: 620px;
            margin: 0 auto;
            background: var(--blanco);
            padding: 3rem;
            border-radius: 22px;
            box-shadow: 0 15px 50px var(--sombra);
            border: 1px solid rgba(29,181,122,0.1);
        }

        .form-group { margin-bottom: 1.4rem; }
        .form-group label { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.5rem; color: var(--verde-oscuro); font-weight: 600; font-size: 0.9rem; }
        .form-group label i { color: var(--verde-claro); }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.9rem 1.1rem;
            border: 1.5px solid #e2e8f0;
            border-radius: 10px;
            font-size: 0.95rem;
            transition: all 0.3s;
            font-family: 'DM Sans', sans-serif;
            color: #2d3748;
            background: #fafcfb;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--verde-claro);
            box-shadow: 0 0 0 3px rgba(29,181,122,0.1);
            background: var(--blanco);
        }

        .form-group textarea { resize: vertical; min-height: 110px; }

        .submit-btn {
            width: 100%;
            padding: 1.1rem;
            background: linear-gradient(135deg, var(--verde-medio), var(--verde-brillante));
            color: var(--blanco);
            border: none;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            font-family: 'DM Sans', sans-serif;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(29,181,122,0.4); }
        .submit-btn:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

        .success-message {
            display: none;
            background: linear-gradient(135deg, var(--verde-medio), var(--verde-brillante));
            color: var(--blanco);
            padding: 1.1rem 1.4rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            text-align: center;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .success-message.show { display: flex; align-items: center; justify-content: center; gap: 0.5rem; animation: slideDown 0.3s ease; }

        .error-message {
            display: none;
            background: #fff5f5;
            color: #c53030;
            border: 1px solid #feb2b2;
            padding: 1rem 1.4rem;
            border-radius: 12px;
            margin-bottom: 1.5rem;
            font-size: 0.9rem;
        }

        .error-message.show { display: block; animation: slideDown 0.3s ease; }

        .form-note { font-size: 0.8rem; color: var(--gris-texto); text-align: center; margin-top: 1rem; }
        .form-note i { color: var(--verde-claro); }

        /* ===== FOOTER ===== */
        footer { background: var(--verde-oscuro); color: var(--blanco); padding: 3.5rem 2rem 1.5rem; }

        .footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; margin-bottom: 2.5rem; }

        .footer-section h3 { color: var(--dorado-claro); margin-bottom: 1rem; font-family: 'Playfair Display', serif; font-size: 1.1rem; }
        .footer-section p,
        .footer-section a { color: rgba(255,255,255,0.65); text-decoration: none; display: block; margin-bottom: 0.5rem; font-size: 0.9rem; line-height: 1.7; transition: color 0.2s; }
        .footer-section a:hover { color: var(--verde-brillante); }

        .footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--blanco); }
        .footer-desc { color: rgba(255,255,255,0.55) !important; font-size: 0.88rem !important; line-height: 1.8 !important; margin-top: 0.5rem; }

        .footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-size: 0.82rem; }

        /* ===== BOTONES FLOTANTES ===== */
        .floating-buttons { position: fixed; bottom: 22px; left: 22px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }

        .floating-btn {
            width: 56px; height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blanco);
            font-size: 1.35rem;
            text-decoration: none;
            box-shadow: 0 4px 18px rgba(0,0,0,0.3);
            transition: all 0.35s ease;
        }

        .whatsapp-btn { background: #25D366; }
        .call-btn { background: var(--verde-medio); }

        .floating-btn:hover { transform: scale(1.18); box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

        @keyframes pulse { 0%, 100% { box-shadow: 0 4px 18px rgba(0,0,0,0.3); } 50% { box-shadow: 0 4px 25px rgba(37,211,102,0.5); } }
        .whatsapp-btn { animation: pulse 2.5s infinite; }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 968px) {
            .menu-toggle { display: flex; }
            .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background: var(--verde-oscuro); width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 15px 30px rgba(0,0,0,0.4); padding: 2rem 0; gap: 0; }
            .nav-menu.active { left: 0; }
            .nav-menu li { width: 100%; }
            .nav-menu li a { display: block; padding: 0.9rem 1rem; width: 100%; border-radius: 0; }
            .nav-menu .login-btn { margin: 0.8rem auto; width: 70%; justify-content: center; border-radius: 25px !important; }
            .calc-wrapper { grid-template-columns: 1fr; gap: 2rem; }
        }

        @media (max-width: 768px) {
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.05rem; }
            .section-title { font-size: 2rem; }
            .form-container { padding: 2rem 1.5rem; }
            .hero-stats { gap: 1.5rem; }
            .result-details { grid-template-columns: 1fr; }
        }