﻿:root {
    /* Typography */
    --font-primary: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    
    /* Core Colors */
    --color-white: #ffffff;
    --color-text-main: #333;
    --color-text-muted: #555;
    
    /* Brand Colors */
    --color-primary: #8a53cd;
    --color-heading: #1a1a3a;
    --color-accent: #8a53cd;
    --color-accent-hover: #8a53cd;
    
    /* Backgrounds */
    --bg-light: #ffffff;
    --bg-dark: #24244a;
    
    /* Transitions */
    --transition-fast: 0.22s ease;
    --transition-normal: 0.3s ease;
}

/* ============= 1. ESTILOS GENERALES Y RESET =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
    overflow-x: clip;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

iframe {
    display: block;
    max-width: 100%;
}

/* ========== 2. REJILLA / GRID SIMULADO (Por si no carga Bootstrap) ========================= */
.row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.col-sm-1 { width: 8.33%; }
.col-sm-2 { width: 16.66%; }
.col-sm-6 { width: 50%; }
.col-sm-8 { width: 66.66%; }
.col-sm-10 { width: 83.33%; }

@media (max-width: 768px) {
    .row { flex-direction: column; }
    .col-sm-1, .col-sm-2, .col-sm-6, .col-sm-8, .col-sm-10 {
        width: 100% !important;
    }
}

/* ===== 3. HEADER Y NAVEGACI0N ====== */
header {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-page {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: center;
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 5px 7px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    background: rgba(7, 7, 9, 0.92);
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
    width: fit-content;
    min-width: 0;
    max-width: 100%;
}

.nav-brand {
    width: 60px;
    height: 60px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(145deg, #111217, #1d1f26);
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.nav-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
}

.content-list-nav {
    flex: 0 1 auto;
    min-width: 0;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 0;
}

.dropdown-trigger {
    display: none;
}

.list-nav {
    display: flex;
    list-style: none;
    gap: 2px;
    align-items: center;
    justify-content: center;
}

.list-nav li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 11px;
    border-radius: 15px;
    font-weight: 600;
    color: var(--color-white);
    font-size: 1rem;
    letter-spacing: 0.01em;
    border: 1px solid transparent;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-fast), background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.list-nav li.dropdown {
    position: relative;
}

.dropdown-head {
    display: flex;
    align-items: center;
    min-width: 0;
}

.dropdown-head > a {
    flex: 1 1 auto;
    min-width: 0;
}

.dropdown-head > a::after {
    content: '\25BE';
    font-size: 0.6rem;
    margin-left: 6px;
    transition: transform var(--transition-fast);
}

.list-nav li.dropdown:hover .dropdown-head > a::after,
.list-nav li.dropdown:focus-within .dropdown-head > a::after,
.list-nav li.dropdown.is-open .dropdown-head > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 210px;
    width: max-content;
    max-width: min(280px, 82vw);
    background: rgba(7, 7, 9, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
    list-style: none;
    padding: 10px 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 10;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 18px;
    border-radius: 14px;
    background: transparent;
    color: var(--color-white);
    font-weight: 500;
    text-align: left;
    white-space: normal;
}

.dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: none;
}

.list-nav li.dropdown:hover > .dropdown-menu,
.list-nav li.dropdown:focus-within > .dropdown-menu,
.list-nav li.dropdown.is-open > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.list-nav li a:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
}

.list-nav li a::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
    transform: translateX(-140%);
    transition: transform 0.45s ease;
    pointer-events: none;
}

.list-nav li a:hover::after {
    transform: translateX(140%);
}

.list-nav li a.is-active {
    background: linear-gradient(145deg, #5f606c, #464852);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.list-nav li a.nav-cta {
    background: linear-gradient(145deg, #3a187a,  var(--color-primary));
    color: #ffd5b4;
    border-color: rgba(154, 120, 255, 0.16);
}

.list-nav li a.nav-cta:hover {
    background: linear-gradient(145deg, #3a187a,  var(--color-primary));
    color: #fff1e3;
    box-shadow: 0 10px 18px rgba(47, 34, 143, 0.22);
}

.list-nav li a:active {
    transform: translateY(0);
    box-shadow: none;
}

/* Clase que se activa con el Javascript al hacer scroll */
header.fijo {
    top: 10px;
    background: transparent;
    animation: slideDown 0.4s ease;
}

header.fijo .list-nav li a {
    color: var(--color-white);
}

header.fijo .list-nav li a:hover {
    color: var(--color-white);
    border-bottom: none;
}

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

@media (max-width: 900px) {
    header {
        top: 10px;
    }

    .nav-page {
        padding: 0 14px;
    }

    .nav-shell {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-radius: 20px;
        min-height: 76px;
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        gap: 0;
    }

    .nav-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        align-self: flex-end;
        margin-bottom: 12px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.04);
        cursor: pointer;
        transition: background-color var(--transition-fast), transform var(--transition-fast);
    }

    .nav-toggle:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
    }

    .nav-toggle span {
        display: block;
        width: 22px;
        height: 2px;
        margin: 3px 0;
        background: #fff;
        border-radius: 2px;
        transition: transform var(--transition-fast), opacity var(--transition-fast);
    }

    .nav-shell.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-shell.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .nav-shell.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-shell:not(.nav-open) .content-list-nav {
        display: none;
    }

    .nav-shell.nav-open .content-list-nav {
        display: block;
        width: 100%;
        overflow: visible;
    }

    .nav-brand {
        display: inline-flex;
        align-self: flex-start;
        margin: 0 0 12px 0;
    }

    .list-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .list-nav li {
        width: 100%;
        flex: none;
    }

    .list-nav li > a,
    .dropdown-head {
        width: 100%;
        min-height: 52px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
    }

    .list-nav li > a,
    .dropdown-head > a {
        width: 100%;
        min-height: 52px;
        padding: 0 16px;
    }

    .dropdown-head {
        position: relative;
        overflow: hidden;
        align-items: stretch;
    }

    .dropdown-head > a::after {
        display: none;
    }

    .dropdown-trigger {
        width: 52px;
        min-width: 52px;
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        background: transparent;
        color: var(--color-white);
        cursor: pointer;
    }

    .dropdown-trigger:focus-visible,
    .nav-toggle:focus-visible,
    .list-nav a:focus-visible {
        outline: 2px solid rgba(255, 213, 180, 0.9);
        outline-offset: 2px;
    }

    .dropdown-trigger span {
        width: 10px;
        height: 10px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform var(--transition-fast);
    }

    .dropdown.is-open .dropdown-trigger span {
        transform: rotate(-135deg);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        margin-top: 8px;
        box-shadow: none;
        border-radius: 18px;
        padding: 8px;
        max-height: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        overflow: hidden;
        transform: none;
        transition: max-height var(--transition-normal), padding var(--transition-normal);
    }

    .dropdown-menu li a {
        min-height: 48px;
        padding: 12px 18px;
    }

    .dropdown.is-open .dropdown-menu {
        max-height: 280px;
        pointer-events: auto;
    }
}

@media (max-width: 560px) {
    .list-nav li {
        flex-basis: 100%;
    }
}

/* ========= 4. BOTÃƒâ€œN FLOTANTE WHATSAPP ============ */
.wa-button {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    transition: transform var(--transition-normal);
}

.wa-button:hover {
    transform: scale(1.1);
}

.wa-button img {
    width: 72px;
    height: 72px;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.2));
}

/* =========== 5. SECCIÃƒâ€œN PRINCIPAL (HERO)=============== */
.imagenPrincipal {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagenPrincipal video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

/* Capa oscura sobre el video para leer mejor el texto */
.imagenPrincipal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.6);
    z-index: -1;
}

.content-text {
    text-align: center;
    color: var(--color-white);
    padding: 20px;
}

.hero-logo {
    width: min(70%, 420px);
}

.content-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.content-text h3 {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* ============ 6. SECCIONES (Empresa y Oferta) ============= */
section {
    padding: 80px 0;
    position: relative;
}

.section-shell {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: center;
    padding: 0 20px;
}

.oportunidad-shell,
.metodologia-shell,
.oferta-shell {
    max-width: 1200px;
}

.metodologia-header-centered {
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
}

.section-title-full {
    width: 100%;
    margin: 0;
}

/* ============ 6.5 SECCIÃƒâ€œN SERVICIOS ESPECIALIZADOS ============ */
.servicios-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    padding: 30px 0;
    align-items: stretch;
}

@media (max-width: 1100px) { .servicios-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .servicios-grid { grid-template-columns: 1fr; } }

.servicio-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: clamp(24px, 3vw, 35px) clamp(20px, 2.8vw, 25px);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid #f0f0f0;
    min-height: 100%;
}

.servicio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.servicio-icon {
    width: clamp(68px, 8vw, 80px);
    height: clamp(68px, 8vw, 80px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.servicio-card h3 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.servicio-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    max-width: 32ch;
}

/* ============ 7. SECCIÃƒâ€œN LOGROS / DESARROLLOS (Grilla de Tarjetas)===================== */

/* ================== 8. ESLOGAN Y CINTILLO ================== */
.slogan {
    font-family: var(--font-primary);
    background: var(--color-primary);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
}

.content-slogan span {
    font-size: 1.8rem;
    font-weight: 300;
}

.sintillo {
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10%;
    color: var(--color-white);
}

/* ============== 9. CONTACTO Y REDES ==================== */
.contacto {
    background: linear-gradient(158deg,  var(--color-primary) 35%, var(--color-white) 65%);
    padding: 88px 24px 96px;
    overflow: hidden;
}

.contacto-header {
    max-width: 900px;
    margin: 0 auto 42px;
    text-align: center;
    color: var(--color-white);
}

.contacto-kicker {
    display: block;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.28em;
}

.contacto-header h2 {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1;
    margin-bottom: 20px;
}

.contacto-header p {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    opacity: 0.92;
}

.contacto-layout {
    max-width: 1330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    gap: 18px;
    align-items: stretch;
}

.contact-card {
    background: var(--color-white);
    border-radius: 26px;
    padding: 34px 34px 30px;
    box-shadow: 0 18px 42px rgba(9, 17, 60, 0.14);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
}

.contact-form label,
.contact-form-message {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label span,
.contact-form-message span {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1f2859;
}

.contact-form strong {
    color: #cf3b3b;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #d8ddee;
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 1rem;
    color: #23304f;
    background: #fdfdff;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--color-white);
    box-shadow: 0 0 0 4px rgba(46, 67, 184, 0.12);
    transform: translateY(-1px);
}

.contact-form textarea {
    min-height: 130px;
    resize: vertical;
}

.contact-form-footer {
    display: flex;
    justify-content: flex-start;
}

.contact-form-footer button {
    border: none;
    border-radius: 16px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(145deg, #24379b, #3552dd);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(36, 55, 155, 0.2);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form-footer button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(36, 55, 155, 0.24);
}

.ajustar-map {
    border-radius: 20px;
    min-height: 360px;
    margin-bottom: 24px;
}

.contact-info-content h3 {
    font-size: 2rem;
    color: #11152a;
    line-height: 1.15;
    margin-bottom: 22px;
}

.contact-info-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #222b45;
    margin-bottom: 18px;
}

.contact-social {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.contact-social a {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #eef2ff;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.contact-social a:hover {
    transform: translateY(-3px);
    background: #dce5ff;
}

.contact-social a img {
    width: 24px;
    height: 24px;
}

/* ================= 9.5 Estructura QR y Contacto ==================== */
.contact-details-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-top: 25px;
}

.contact-text-col {
    flex: 1;
}

.contact-text-col p {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.contact-text-col p strong {
    color: var(--color-heading);
}

.contact-text-col p a {
    color: var(--color-primary);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.contact-text-col p a:hover {
    color: var(--color-accent);
}

.contact-qr-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-qr-col .qr-box {
    background: var(--color-white);
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(92, 67, 245, 0.12);
    border: 1px solid #eef2ff;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.contact-qr-col .qr-box:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 32px rgba(92, 67, 245, 0.22);
}

.contact-qr-col .qr-box img {
    display: block;
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
}

.contact-qr-col .qr-label {
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

@media (max-width: 540px) {
    .contact-details-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-social {
        justify-content: center;
    }
}

@media (max-width: 980px) {
    .contacto-layout {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 28px 22px 24px;
    }
}

@media (max-width: 640px) {
    .contacto {
        padding: 72px 16px 80px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contacto-kicker,
    .contacto-header p {
        letter-spacing: 0.08em;
    }

    .contact-info-content h3 {
        font-size: 1.6rem;
    }
}

/* ================= 10. FOOTER ==================== */
.footer {
    background: #111;
    color: #aaa;
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer a {
    color: var(--color-white);
    margin: 0 5px;
}

.footer a:hover {
    color:  var(--color-primary);
}

.privacidad {
    text-align: center;
}


@media (max-width: 980px) {

    .section-shell {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}

/* ============ 6.8 SECCIÃƒâ€œN METODOLOGÃƒÂA (NUEVO DISEÃƒâ€˜O) ============ */
.metodologia-section {
    background: var(--bg-light);
    color: var(--color-text-main);
    padding: 100px 20px;
    font-family: var(--font-primary);
}

.metodologia-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.metodologia-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--color-heading);
    margin: 0;
}

.metodologia-header h2 em {
    font-style: italic;
    font-weight: 500;
    color: var(--color-accent);
}

.btn-contacto-metodologia {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: right;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-heading);
    line-height: 1.2;
    transition: transform var(--transition-normal);
}

.btn-contacto-metodologia:hover {
    transform: translateY(-3px);
    color: var(--color-accent-hover);
}

.btn-contacto-metodologia svg {
    color: var(--color-accent);
}

.metodologia-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    padding-bottom: 50px;
}

.metodologia-line {
    position: absolute;
    bottom: 23px;
    left: 10%;
    width: 80%;
    height: 1px;
    border-bottom: 2px dashed #d0d0e0;
    z-index: 1;
}

.metodologia-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.metodologia-icon {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.metodologia-icon svg {
    width: 64px;
    height: 64px;
}

.metodologia-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 15px;
}

.metodologia-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    flex-grow: 1;
}

.metodologia-numero {
    width: 48px;
    height: 48px;
    background: var(--color-white);
    border: 2px solid #5c43f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-top: auto;
    box-shadow: 0 0 15px rgba(92, 67, 245, 0.15) inset;
}

.metodologia-card:nth-child(3) .metodologia-numero {
    border-color: var(--color-accent);
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 0 20px rgba(92, 67, 245, 0.3);
}

.metodologia-beneficios {
    margin-top: 60px;
    background: rgba(0, 0, 0, 0.02);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.metodologia-beneficios h3 {
    font-size: 1.5rem;
    color: var(--color-heading);
    margin-bottom: 20px;
    text-align: center;
}

.metodologia-beneficios ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 0;
}

.metodologia-beneficios li {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.metodologia-beneficios .check {
    color: var(--color-accent);
    font-weight: bold;
}

@media (max-width: 1024px) {
    .metodologia-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 40px;
    }
    .metodologia-line {
        display: none;
    }
    .metodologia-card p {
        margin-bottom: 20px;
    }
    .metodologia-numero {
        margin-top: 15px;
    }
    .metodologia-header h2 {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .metodologia-grid {
        grid-template-columns: 1fr;
    }
    .metodologia-beneficios ul {
        flex-direction: column;
        align-items: center;
    }
    .metodologia-header h2 {
        font-size: 2.2rem;
    }
}

/* ============ 6.9 SECCIÃƒâ€œN EMPRESA (TIPO SPLIT) ============ */
.empresa-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
    font-family: var(--font-primary);
}

.empresa-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.empresa-image {
    flex: 1;
}

.empresa-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    display: block;
    object-fit: cover;
}

.empresa-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.empresa-kicker {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.empresa-heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contexto-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.empresa-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #4a4a5a;
}

.empresa-text strong {
    color: var(--color-heading);
}

.empresa-btn {
    align-self: flex-start;
    margin-top: 40px;
    padding: 16px 36px;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(45, 17, 207, 0.2);
}

.empresa-btn:hover {
    background: var(--color-heading);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(26, 26, 58, 0.2);
}

@media (max-width: 900px) {
    .empresa-container {
        flex-direction: column;
        gap: 50px;
    }
    .empresa-heading {
        font-size: 2.2rem;
    }
}

/* ============ 7. SECCIÃƒâ€œN LOGROS (NUEVO DISEÃƒâ€˜O TARJETAS) ============ */
.logros-section {
    background-color: var(--color-white);
    padding: 100px 20px;
    font-family: var(--font-primary);
}

.logros-container {
    max-width: 1200px;
    margin: 0 auto;
}

.logros-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.logros-kicker {
    display: inline-block;
    background-color: #f2f2f5;
    color: #4a4a5a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logros-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 20px;
}

.logros-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.logros-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.logros-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f5;
}

.logros-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.logros-card-image {
    padding: 40px 20px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fafbfc;
    border-bottom: 1px solid #f0f0f5;
}

.logros-card-image img {
    max-width: 80%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px; 
}

.logros-card-content {
    background: var(--color-white);
    padding: 35px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logros-badge {
    background: rgba(92, 67, 245, 0.1);
    color: var(--color-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.logros-card-content p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.logros-card-content p strong {
    color: var(--color-heading);
    font-weight: 700;
}

@media (max-width: 900px) {
    .logros-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .logros-grid {
        grid-template-columns: 1fr;
    }
}

.logros-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
    justify-content: center;
    width: 100%;
}

.logros-actions a {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    flex: 1;
}

.logros-actions a:hover {
    background: var(--color-accent);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(92, 67, 245, 0.3);
    transform: translateY(-2px);
}


.sintillo {
    gap: 24px;
    flex-wrap: wrap;
}

.content-logo-sintillo,
.content-juego {
    flex: 1 1 280px;
}

.sintillo-logo {
    width: min(35%, 220px);
}

.sintillo-copy {
    color: white;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    text-align: center;
    width: 100%;
}

.contact-info-content h2,
.contact-info-content h3 {
    font-size: 2rem;
    color: #11152a;
    line-height: 1.15;
    margin-bottom: 22px;
}

.contact-text-col,
.contact-info-content,
.contact-card,
.logros-card-content,
.servicio-card,
.metodologia-card,
.empresa-content {
    min-width: 0;
}

.dropdown-menu {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .contact-details-grid {
        flex-direction: column;
    }

    .contact-qr-col {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    section,
    .empresa-section,
    .metodologia-section,
    .logros-section,
    .oferta-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .content-text {
        padding: 24px 18px;
    }

    .content-text h3 {
        font-size: 1.1rem;
    }

    .hero-logo {
        width: min(82%, 360px);
    }

    .wa-button {
        right: 16px;
        bottom: 16px;
    }

    .wa-button img {
        width: 60px;
        height: 60px;
    }

    .sintillo {
        padding: 32px 20px;
        justify-content: center;
        text-align: center;
    }

    .sintillo-logo {
        width: min(56%, 220px);
    }

    .empresa-btn,
    .contact-form-footer button,
    .logros-actions a {
        min-height: 48px;
    }

    .logros-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .metodologia-beneficios {
        padding: 24px 18px;
    }

    .empresa-heading,
    .logros-header h2,
    .oferta-title,
    .contacto-header h2 {
        line-height: 1.1;
    }

    .contact-form-footer {
        justify-content: stretch;
    }

    .contact-form-footer button,
    .empresa-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .contact-card {
        border-radius: 22px;
    }

    .ajustar-map {
        min-height: 280px;
    }

    .contact-qr-col,
    .contact-qr-col .qr-box,
    .contact-text-col {
        width: 100%;
    }

    .contact-qr-col {
        align-items: center;
    }
}

.oferta-section {
    padding: 100px 0;
}

.oferta-header {
    text-align: center;
    margin-bottom: 60px;
}

.oferta-title {
    font-size: clamp(2.25rem, 4vw, 2.8rem);
    color: #1a1a3a;
    font-weight: 800;
    margin-bottom: 20px;
}

.oferta-copy {
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}
