/* ==========================================
   HERO SECTION - Diseño Enterprise
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ==========================================
   LADO IZQUIERDO: CONTENIDO
   ========================================== */
.hero__content {
    padding: 80px 40px;
    padding-left: 70px; /* 30px más a la derecha */
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    max-width: 640px;
}

/* Título Principal */
.hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -0.03em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Subtítulo */
.hero__subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 480px;
}

/* ==========================================
   BOTÓN E ICONOS
   ========================================== */
.hero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    min-width: 160px;
    cursor: pointer;
}

.hero__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero__button:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 3px;
}

/* Iconos */
.hero__icons {
    display: flex;
    gap: 16px;
}

.hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    cursor: pointer;
}

.hero__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.hero__icon:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   LADO DERECHO: IMAGEN
   ========================================== */
.hero__image-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}
/* ==========================================
   HERO SECTION - Estilo Cyd Stumpel Enterprise
   ========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #fef3c7 0%, #ffffff 50%, #dbeafe 100%);
    background: #fefce8; /* Crema muy claro */
    position: relative;
    overflow: hidden;
}

/* Elemento decorativo - Gradiente sutil tipo Cyd */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    position: relative;
    z-index: 1;
}

/* ==========================================
   CONTENIDO - Tipografía Bold tipo Cyd
   ========================================== */
.hero__content {
    padding: 120px 40px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    max-width: 720px;
    order: 2; /* Contenido después en mobile */
}

/* Título ULTRA-BOLD tipo Cyd */
.hero__title {
    font-size: clamp(3.5rem, 12vw, 7rem);
    font-weight: 900;
    color: #1e3a8a; /* Azul marino */
    line-height: 0.95;
    margin: 0 0 var(--spacing-8) 0;
    letter-spacing: -0.04em;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Subtítulo - Más pequeño y sutil */
.hero__subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    color: #64748b; /* Gris azulado */
    font-weight: 400;
    margin: 0 0 var(--spacing-12) 0;
    line-height: 1.4;
    max-width: 480px;
}

/* ==========================================
   BOTÓN - Estilo minimalista
   ========================================== */
.hero__actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-8);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-12);
}

.hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-4) var(--spacing-8);
    background: #1e3a8a; /* Azul marino */
    color: #ffffff;
    font-weight: 600;
    font-size: var(--font-size-base);
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.hero__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #f59e0b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.hero__button:hover {
    transform: translateY(-3px);
    color: #1e3a8a;
}

.hero__button:hover::before {
    opacity: 1;
}

.hero__button:focus-visible {
    outline: 3px solid #1e3a8a;
    outline-offset: 3px;
}

/* Iconos - Minimalistas */
.hero__icons {
    display: flex;
    gap: var(--spacing-4);
}

.hero__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #64748b;
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: var(--radius-md);
}

.hero__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.hero__icon:hover {
    color: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-3px);
}

/* ==========================================
   BADGES PROFESIONALES - Tipo Cyd pero enterprise
   ========================================== */
.hero__badges {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
    margin-top: var(--spacing-8);
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(30, 58, 138, 0.1);
    border: 1px solid rgba(30, 58, 138, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: #1e3a8a;
}

.hero__badge--gold {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border-color: #d4af37;
    color: #92400e;
}

/* ==========================================
   IMAGEN - Lado izquierdo tipo Cyd
   ========================================== */
.hero__image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 600px;
    order: 1; /* Imagen primero en mobile */
    margin-bottom: var(--spacing-12);
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Efecto circular tipo Cyd pero más sutil */
    border-radius: 50%;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.2);
}

/* Elemento decorativo detrás de la imagen */
.hero__image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 550px;
    height: 550px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.3) 0%, rgba(30, 58, 138, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
}

/* ==========================================
   TABLET (768px+)
   ========================================== */
@media (min-width: 768px) {
    .hero__container {
        grid-template-columns: 1.2fr 1fr; /* Más espacio al contenido */
        gap: var(--spacing-12);
    }

    .hero__content {
        padding: var(--spacing-20) var(--spacing-12);
        padding-left: var(--spacing-16);
        min-height: 100vh;
        order: 1; /* Contenido primero en desktop */
    }

    .hero__image-wrapper {
        height: auto;
        min-height: 100vh;
        margin-bottom: 0;
        order: 2;
    }

    .hero__image {
        max-width: none;
        border-radius: var(--radius-xl); /* Menos redondo en desktop */
    }

    .hero__title {
        font-size: clamp(4rem, 10vw, 8rem);
    }
}

/* ==========================================
   DESKTOP (1024px+)
   ========================================== */
@media (min-width: 1024px) {
    .hero__content {
        padding: var(--spacing-24) var(--spacing-16);
        padding-left: var(--spacing-20);
    }

    .hero__button {
        padding: var(--spacing-5) var(--spacing-10);
        font-size: var(--font-size-lg);
        min-width: 180px;
    }

    .hero__icon {
        width: 56px;
        height: 56px;
    }

    .hero__icon svg {
        width: 26px;
        height: 26px;
    }
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--spacing-4);
    background: #1e3a8a;
    color: #ffffff;
    padding: var(--spacing-3) var(--spacing-6);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
}

.skip-link:focus {
    top: var(--spacing-4);
}

/* ==========================================
   RESPONSIVE - TABLET (768px+)
   ========================================== */
@media (min-width: 768px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
    }

    .hero__content {
        padding: 100px 60px;
        padding-left: 90px; /* 30px más a la derecha */
    }

    .hero__image-wrapper {
        min-height: 100vh;
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP (1024px+)
   ========================================== */
@media (min-width: 1024px) {
    .hero__content {
        padding: 120px 80px;
        padding-left: 110px; /* 30px más a la derecha */
    }

    .hero__button {
        padding: 20px 40px;
        font-size: 18px;
        min-width: 180px;
    }

    .hero__icon {
        width: 48px;
        height: 48px;
    }

    .hero__icon svg {
        width: 24px;
        height: 24px;
    }
}

/* ==========================================
   RESPONSIVE - DESKTOP GRANDE (1440px+)
   ========================================== */
@media (min-width: 1440px) {
    .hero__content {
        padding: 140px 100px;
        padding-left: 130px; /* 30px más a la derecha */
    }
}

/* ==========================================
   SKIP LINK (Accesibilidad)
   ========================================== */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: #3b82f6;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
}