    /* -------------------------------------------------------------
       1. VARIABLES Y DISEÑO DEL SISTEMA (SOC BRAND GUIDELINES)
       ------------------------------------------------------------- */
    :root {
        /* Colores Primarios */
        --green-primary: #006D4F;
        --green-complementary: #4ED176;

        /* Colores Secundarios */
        --blue-primary: #079DFE;
        --blue-light: #52DEFF;
        --orange-accent: #FF7150;

        /* Escala de Grises y Fondos */
        --dark-ink: #063C2F;
        --text-dark: #1D312C;
        --text-muted: #5F7870;
        --bg-light: #F8FAF7;
        --bg-white: #FFFFFF;
        --border-color: rgba(0, 109, 78, 0.08);

        /* Sombras y Efectos */
        --shadow-premium: 0 24px 60px rgba(0, 60, 47, 0.05), 0 1px 3px rgba(0, 60, 47, 0.02);
        --shadow-hover: 0 32px 72px rgba(0, 60, 47, 0.08), 0 1px 4px rgba(0, 60, 47, 0.03);
        --transition-smooth: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    }

    /* -------------------------------------------------------------
       2. REGLAS GENERALES Y RESET
       ------------------------------------------------------------- */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        font-family: var(--font-primary);
        background-color: var(--bg-light);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
    }

    a {
        text-decoration: none;
        color: inherit;
        transition: var(--transition-smooth);
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* Barra de progreso de lectura */
    .progress-bar {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        width: 0;
        background: linear-gradient(90deg, var(--green-primary), var(--green-complementary), var(--orange-accent));
        z-index: 1000;
    }

    /* -------------------------------------------------------------
       3. NAVEGACIÓN STICKY
       ------------------------------------------------------------- */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        z-index: 900;
        display: flex;
        align-items: center;
        transition: var(--transition-smooth);
    }

    .nav-container {
        width: 100%;
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo-link {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .logo-svg {
        width: 180px;
        height: auto;
    }

    .logo-link img {
        width: 180px;
        height: auto;
        max-width: 100%;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: var(--text-muted);
        white-space: nowrap;
    }

    .nav-link:hover {
        color: var(--green-primary);
    }

    /* Dropdown Menu Styles */
    .nav-dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-trigger {
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
    }

    .chevron-icon {
        transition: transform 0.3s ease;
    }

    @media (min-width: 769px) {
        .nav-dropdown:hover .chevron-icon {
            transform: rotate(180deg);
            color: var(--green-primary);
        }
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid var(--border-color);
        border-radius: 16px;
        padding: 24px;
        display: grid;
        grid-template-columns: 280px 240px;
        gap: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        z-index: 1000;
        margin-top: 10px;
    }

    /* Bridge to keep dropdown open on mouse move */
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
    }

    @media (min-width: 769px) {
        .nav-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
    }

    .dropdown-column {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .dropdown-title {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--text-muted);
        letter-spacing: 0.05em;
        margin-bottom: 8px;
        padding-left: 12px;
    }

    .dropdown-item {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 10px 12px;
        border-radius: 10px;
        transition: background 0.2s ease, transform 0.2s ease;
        text-decoration: none;
    }

    .dropdown-item:hover {
        background: rgba(0, 109, 79, 0.05);
        transform: translateY(-1px);
    }

    .item-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark-ink);
        transition: color 0.2s ease;
    }

    .dropdown-item:hover .item-name {
        color: var(--green-primary);
    }

    .item-desc {
        font-size: 11px;
        color: var(--text-muted);
        line-height: 1.4;
    }

    .nav-cta {
        background-color: var(--green-primary);
        color: var(--bg-white);
        padding: 12px 24px;
        border-radius: 999px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 10px 20px rgba(0, 109, 79, 0.15);
    }

    .nav-cta:hover {
        background-color: var(--dark-ink);
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(0, 109, 79, 0.2);
    }

    .menu-button {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--green-primary);
        padding: 8px;
    }

    /* -------------------------------------------------------------
       4. SECCIÓN HERO (APPLE/STRIPE STYLE)
       ------------------------------------------------------------- */
    .hero {
        min-height: 100vh;
        padding: 140px 24px 60px;
        background: radial-gradient(circle at 80% 20%, rgba(78, 209, 118, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 20% 85%, rgba(255, 113, 80, 0.06) 0%, transparent 40%),
            var(--bg-white);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 64px;
        align-items: center;
        width: 100%;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-kicker {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(78, 209, 118, 0.12);
        color: var(--green-primary);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-bottom: 24px;
    }

    .brand-kicker::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: var(--green-complementary);
    }

    /* Fila de Datos Comerciales Clave (Novedad de Impacto) */
    .commercial-pills {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .pill-item {
        background: var(--bg-light);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        padding: 10px 16px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
        display: flex;
        align-items: center;
        gap: 8px;
        box-shadow: 0 2px 4px rgba(0, 60, 47, 0.02);
    }

    .pill-item strong {
        color: var(--orange-accent);
        font-weight: 800;
        font-size: 14px;
    }

    .hero-title {
        font-size: clamp(42px, 5vw, 68px);
        line-height: 1.05;
        font-weight: 900;
        color: var(--dark-ink);
        letter-spacing: -0.03em;
        margin-bottom: 20px;
    }

    .hero-title span {
        background: linear-gradient(135deg, var(--green-primary) 0%, var(--blue-primary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-description {
        font-size: clamp(18px, 1.25vw, 21px);
        color: var(--text-muted);
        margin-bottom: 36px;
        max-width: 600px;
        font-weight: 400;
    }

    .hero-actions {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 18px 36px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 700;
        transition: var(--transition-smooth);
        cursor: pointer;
    }

    .btn-primary {
        background-color: var(--orange-accent);
        color: var(--bg-white);
        box-shadow: 0 12px 24px rgba(255, 113, 80, 0.18);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(255, 113, 80, 0.28);
        background-color: #f25b38;
    }

    .btn-secondary {
        background-color: var(--bg-white);
        border: 1.5px solid var(--border-color);
        color: var(--text-dark);
    }

    .btn-secondary:hover {
        background-color: var(--bg-light);
        border-color: var(--text-muted);
        transform: translateY(-2px);
    }

    /* Dashboard Premium del Hero */
    .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
    }

    .dashboard-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid var(--border-color);
        border-radius: 28px;
        padding: 32px;
        width: 100%;
        max-width: 440px;
        box-shadow: var(--shadow-premium);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .db-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }

    .db-badge {
        font-size: 12px;
        font-weight: 700;
        color: var(--green-primary);
        background: rgba(78, 209, 118, 0.15);
        padding: 6px 12px;
        border-radius: 999px;
    }

    .db-title {
        font-size: 15px;
        font-weight: 700;
        color: var(--text-muted);
    }

    .db-value {
        font-size: 40px;
        font-weight: 900;
        color: var(--dark-ink);
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        display: flex;
        align-items: baseline;
        gap: 4px;
    }

    .db-value span {
        font-size: 18px;
        color: var(--green-complementary);
        font-weight: 700;
    }

    .db-chart {
        height: 120px;
        display: flex;
        align-items: flex-end;
        gap: 16px;
        padding-top: 10px;
    }

    .db-bar {
        flex: 1;
        background: linear-gradient(180deg, var(--green-complementary), var(--green-primary));
        border-radius: 8px 8px 0 0;
        height: 20%;
        min-height: 15px;
        animation: riseBar 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        opacity: 0.85;
    }

    .db-bar:nth-child(2) {
        animation-delay: 0.1s;
        height: 55%;
    }

    .db-bar:nth-child(3) {
        animation-delay: 0.2s;
        height: 35%;
        background: linear-gradient(180deg, var(--blue-light), var(--blue-primary));
    }

    .db-bar:nth-child(4) {
        animation-delay: 0.3s;
        height: 85%;
    }

    .db-bar:nth-child(5) {
        animation-delay: 0.4s;
        height: 60%;
        background: linear-gradient(180deg, var(--orange-accent), #e05e3f);
    }

    @keyframes riseBar {
        from {
            height: 0%;
        }
    }

    .db-stats {
        margin-top: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
    }

    .db-stat-item p {
        font-size: 12px;
        color: var(--text-muted);
        margin-bottom: 2px;
    }

    .db-stat-item h4 {
        font-size: 16px;
        font-weight: 700;
        color: var(--dark-ink);
    }

    /* -------------------------------------------------------------
       Fila de Logos de Bancos (Prueba Social de Impacto)
       ------------------------------------------------------------- */
    .partner-logos {
        width: 100%;
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 24px 0;
        border-top: 1px solid var(--border-color);
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        overflow: hidden;
    }

    .partner-title {
        font-size: 12px;
        font-weight: 700;
        color: var(--text-muted);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-align: center;
        padding: 0 24px;
    }

    .logos-carousel {
        width: 100%;
        overflow: hidden;
        position: relative;
        mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    }

    .logos-track {
        display: flex;
        width: max-content;
        animation: scrollLeft 35s linear infinite;
    }

    .logos-group {
        display: flex;
        align-items: center;
        justify-content: space-around;
        gap: 48px;
        padding-right: 48px;
        flex-shrink: 0;
    }

    .logo-item {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 38px;
        flex-shrink: 0;
    }

    .logo-item img {
        height: 100%;
        width: auto;
        max-width: 120px;
        object-fit: contain;
        filter: grayscale(1);
        opacity: 0.6;
        mix-blend-mode: multiply;
        transition: var(--transition-smooth);
    }

    .logo-item img:hover {
        filter: none;
        opacity: 1;
    }

    @keyframes scrollLeft {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }

    /* -------------------------------------------------------------
       5. SECCIÓN DE LÍNEAS DE NEGOCIO (SERVICIOS)
       ------------------------------------------------------------- */
    .section {
        padding: 100px 24px;
    }

    .section-dark {
        background: linear-gradient(135deg, var(--green-primary) 0%, var(--dark-ink) 100%);
        color: var(--bg-white);
    }

    .section-dark .section-title {
        color: var(--bg-white);
    }

    .section-dark .section-description {
        color: rgba(255, 255, 255, 0.8);
    }

    .section-dark .section-kicker {
        color: var(--green-complementary);
    }

    .section-dark .card-service {
        background-color: var(--bg-white);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    }

    .section-dark .card-service:hover {
        background-color: var(--bg-white);
        border-color: var(--green-complementary);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    }

    .section-dark .card-title {
        color: var(--dark-ink);
    }

    .section-dark .card-description {
        color: var(--text-muted);
    }

    .section-dark .card-link {
        color: var(--green-primary);
    }


    .section-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-kicker {
        font-size: 12px;
        font-weight: 800;
        color: var(--green-primary);
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 12px;
        display: block;
    }

    .section-title {
        font-size: clamp(32px, 3.5vw, 48px);
        font-weight: 800;
        color: var(--dark-ink);
        letter-spacing: -0.02em;
        line-height: 1.2;
    }

    .section-description {
        font-size: 16px;
        color: var(--text-muted);
        margin-top: 16px;
    }

    .grid-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }

    .card-service {
        background-color: var(--bg-white);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-card);
        padding: 44px;
        box-shadow: var(--shadow-premium);
        transition: var(--transition-smooth);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        overflow: hidden;
    }

    .card-service:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(0, 109, 79, 0.15);
    }

    /* Etiqueta Comercial (Badge) de Impacto */
    .card-badge {
        position: absolute;
        top: 24px;
        right: 24px;
        font-size: 11px;
        font-weight: 800;
        padding: 4px 10px;
        border-radius: 999px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .badge-green {
        background: rgba(78, 209, 118, 0.15);
        color: var(--green-primary);
    }

    .badge-orange {
        background: rgba(255, 113, 80, 0.15);
        color: var(--orange-accent);
    }

    .badge-blue {
        background: rgba(7, 157, 230, 0.15);
        color: var(--blue-primary);
    }

    .card-icon-wrapper {
        width: 56px;
        height: 56px;
        background: rgba(7, 157, 230, 0.08);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
        color: var(--blue-primary);
    }

    .card-service:nth-child(2n) .card-icon-wrapper {
        background: rgba(78, 209, 118, 0.08);
        color: var(--green-primary);
    }

    .card-service:nth-child(3n) .card-icon-wrapper {
        background: rgba(255, 113, 80, 0.08);
        color: var(--orange-accent);
    }

    .card-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--dark-ink);
        margin-bottom: 12px;
        margin-top: 8px;
    }

    .card-description {
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 24px;
        flex-grow: 1;
        line-height: 1.5;
    }

    .card-link {
        font-size: 14px;
        font-weight: 700;
        color: var(--green-primary);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .card-link svg {
        transition: var(--transition-smooth);
    }

    .card-service:hover .card-link svg {
        transform: translateX(4px);
    }

    /* -------------------------------------------------------------
       6. SECCIÓN DE PROCESO (CÓMO TRABAJAMOS)
       ------------------------------------------------------------- */
    .timeline {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 40px;
        margin-top: 40px;
    }

    .timeline-item {
        position: relative;
        background: var(--bg-white);
        padding: 32px;
        border-radius: 20px;
        border: 1px solid var(--border-color);
    }

    .timeline-number {
        font-size: 14px;
        font-weight: 800;
        color: var(--green-primary);
        background: rgba(0, 109, 79, 0.08);
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }

    .timeline-title {
        font-size: 18px;
        font-weight: 700;
        color: var(--dark-ink);
        margin-bottom: 10px;
    }

    .timeline-text {
        font-size: 14px;
        color: var(--text-muted);
    }

    /* -------------------------------------------------------------
       7. FORMULARIO DE ASESORÍA Y CTA (CONFIANZA)
       ------------------------------------------------------------- */
    .cta-section {
        background-color: var(--bg-white);
    }

    .cta-wrapper {
        max-width: 1100px;
        margin: 0 auto;
        background: linear-gradient(135deg, var(--green-primary) 0%, var(--dark-ink) 100%);
        border-radius: 36px;
        padding: 60px;
        color: var(--bg-white);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center;
        box-shadow: 0 40px 80px rgba(0, 60, 47, 0.15);
    }

    .cta-wrapper[style*="var(--bg-light)"] {
        color: var(--text-dark) !important;
    }

    .cta-content h2 {
        font-size: clamp(28px, 3vw, 40px);
        font-weight: 800;
        letter-spacing: -0.02em;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .cta-content p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 32px;
    }

    .trust-bullets {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .bullet-item {
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 15px;
        font-weight: 500;
    }

    .bullet-icon {
        color: var(--green-complementary);
        flex-shrink: 0;
    }

    .form-box {
        background: var(--bg-white);
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        color: var(--text-dark);
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        display: block;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--text-dark);
    }

    .form-input {
        width: 100%;
        padding: 14px 18px;
        border-radius: 12px;
        border: 1.5px solid var(--border-color);
        background-color: var(--bg-light);
        font-family: var(--font-primary);
        font-size: 14px;
        outline: none;
        transition: var(--transition-smooth);
    }

    .form-input:focus {
        border-color: var(--green-primary);
        background-color: var(--bg-white);
        box-shadow: 0 0 0 4px rgba(0, 109, 79, 0.08);
    }

    .btn-submit {
        width: 100%;
        border: none;
        background-color: var(--green-primary);
        color: var(--bg-white);
        padding: 16px;
        border-radius: 12px;
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(0, 109, 79, 0.12);
        transition: var(--transition-smooth);
    }

    .btn-submit:hover {
        background-color: var(--dark-ink);
        transform: translateY(-2px);
    }

    .form-note {
        text-align: center;
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 14px;
    }

    /* -------------------------------------------------------------
       8. FOOTER
       ------------------------------------------------------------- */
    .footer {
        background-color: var(--bg-light);
        border-top: 1px solid var(--border-color);
        padding: 60px 24px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 32px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .footer-logo {
        width: 140px;
    }

    .footer-slogan {
        font-size: 13px;
        color: var(--text-muted);
        font-weight: 500;
    }

    .footer-legal {
        font-size: 13px;
        color: var(--text-muted);
    }

    /* WhatsApp Flotante Rediseñado */
    .whatsapp-float {
        position: fixed;
        bottom: 24px;
        right: 24px;
        background-color: #25D366;
        color: var(--bg-white);
        width: 56px;
        height: 56px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
        z-index: 800;
        transition: var(--transition-smooth);
    }

    .whatsapp-float:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4);
    }

    /* -------------------------------------------------------------
       9. RESPONSIVIDAD (MOBILE-FIRST)
       ------------------------------------------------------------- */
    @media (max-width: 992px) {
        .hero {
            padding-top: 120px;
            min-height: auto;
        }

        .hero-wrapper {
            grid-template-columns: 1fr;
            gap: 48px;
        }

        .hero-content {
            align-items: center;
            text-align: center;
        }

        .hero-description {
            margin-left: auto;
            margin-right: auto;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-visual {
            order: -1;
            /* Muestra el dashboard encima del texto en móviles */
        }

        .cta-wrapper {
            grid-template-columns: 1fr !important;
            padding: 40px 24px !important;
            border-radius: 24px !important;
        }
    }

    @media (max-width: 768px) {
        .logo-link img {
            width: 140px;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 40px 24px;
            gap: 24px;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            overflow-y: auto;
            z-index: 999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            align-items: stretch;
        }

        .nav-links.active {
            display: flex;
            animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        }

        .nav-dropdown {
            width: 100%;
        }

        .dropdown-menu {
            position: static;
            transform: none;
            opacity: 1;
            visibility: visible;
            box-shadow: none;
            padding: 12px 0 0 16px;
            grid-template-columns: 1fr;
            gap: 16px;
            display: none;
            background: transparent;
            border: none;
        }

        .nav-dropdown.active .dropdown-menu {
            display: grid;
        }

        .nav-dropdown.active .chevron-icon {
            transform: rotate(180deg);
            color: var(--green-primary);
        }

        .dropdown-column {
            gap: 8px;
        }

        .dropdown-title {
            font-size: 11px;
            margin-bottom: 4px;
            padding-left: 0;
        }

        .dropdown-item {
            padding: 8px 0;
        }

        .dropdown-item:hover {
            background: none;
            transform: none;
        }

        .nav-cta {
            text-align: center;
            width: 100%;
        }

        .menu-button {
            display: block;
        }

        .section {
            padding: 70px 20px;
        }

        .form-box {
            padding: 24px;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }

    /* -------------------------------------------------------------
       13. ESTILOS DE FORMULARIO DE CONTACTO, TOASTS Y TURNSTILE
       ------------------------------------------------------------- */
    .google-contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        background: var(--bg-white);
        padding: 8px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        text-align: left;
    }

    .form-label {
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
    }

    .form-input, .form-select {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid rgba(0, 109, 78, 0.15);
        border-radius: 10px;
        font-family: var(--font-primary);
        font-size: 15px;
        background-color: var(--bg-light);
        color: var(--text-dark);
        outline: none;
        transition: var(--transition-smooth);
    }

    .form-input:focus, .form-select:focus {
        border-color: var(--green-primary);
        background-color: var(--bg-white);
        box-shadow: 0 0 0 3px rgba(0, 109, 78, 0.1);
    }

    .form-input::placeholder {
        color: var(--text-muted);
        opacity: 0.7;
    }

    .btn-submit {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 28px;
        background: var(--green-primary);
        color: var(--bg-white);
        border: none;
        border-radius: 12px;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: var(--transition-smooth);
        box-shadow: 0 4px 12px rgba(0, 109, 78, 0.15);
    }

    .btn-submit:hover:not(:disabled) {
        background: #00563e;
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 109, 78, 0.25);
    }

    .btn-submit:active:not(:disabled) {
        transform: translateY(0);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
        background: var(--text-muted);
    }

    /* Estado de carga con Spinner */
    .btn-submit-text {
        transition: opacity 0.2s;
    }
    
    .btn-loading .btn-submit-text {
        opacity: 0;
    }

    .btn-loading {
        position: relative;
    }

    .btn-loading::after {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        top: calc(50% - 10px);
        left: calc(50% - 10px);
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

    /* Cloudflare Turnstile Wrapper */
    .cf-turnstile-container {
        display: flex;
        justify-content: center;
        margin: 10px 0;
        min-height: 65px;
    }

    /* Toast Notifications System */
    .toast-container {
        position: fixed;
        bottom: 24px;
        right: 24px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        z-index: 10000;
        pointer-events: none;
    }

    .toast {
        pointer-events: auto;
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 300px;
        max-width: 400px;
        padding: 16px 20px;
        background: var(--bg-white);
        border-left: 5px solid var(--green-primary);
        box-shadow: 0 10px 30px rgba(0, 60, 47, 0.12);
        border-radius: 12px;
        color: var(--text-dark);
        font-family: var(--font-primary);
        font-size: 14px;
        font-weight: 500;
        transform: translateX(120%);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s;
        opacity: 0;
    }

    .toast.toast-show {
        transform: translateX(0);
        opacity: 1;
    }

    .toast-success {
        border-left-color: var(--green-complementary);
    }

    .toast-error {
        border-left-color: var(--orange-accent);
    }

    .toast-info {
        border-left-color: var(--blue-primary);
    }

    .toast-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .toast-content {
        flex-grow: 1;
    }

    /* Estilo para Mensaje de Éxito del Formulario */
    .form-success-container {
        text-align: center;
        padding: 40px 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        animation: fadeIn 0.5s ease forwards;
    }

    .success-icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: rgba(78, 209, 118, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--green-complementary);
        margin-bottom: 8px;
    }

    .success-icon-wrapper svg {
        width: 40px;
        height: 40px;
    }

    .success-title {
        font-size: 22px;
        font-weight: 800;
        color: var(--text-dark);
    }

    .success-message {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.5;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 480px) {
        .toast-container {
            left: 16px;
            right: 16px;
            bottom: 16px;
        }
        .toast {
            min-width: auto;
            max-width: 100%;
        }
    }