/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a1625;
    --secondary-dark: #2d2438;
    --accent-purple: #8b5cf6;
    --accent-purple-light: #a78bfa;
    --accent-pink: #ec4899;
    --accent-rose: #f472b6;
    --accent-pink-light: #fda4af;
    --light-cream: #f3e9d4;
    --text-light: #ffffff;
    --text-muted: rgba(243, 233, 212, 0.85);
    --card-bg: rgba(45, 36, 56, 0.6);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 22, 37, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.navbar-brand {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--light-cream);
    letter-spacing: -0.3px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-purple-light);
    transition: width 0.3s ease;
}

.navbar-link:hover {
    color: var(--light-cream);
}

.navbar-link:hover::after {
    width: 100%;
}

.navbar-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    color: var(--light-cream);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.navbar-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-cream);
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 12px 20px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 22, 37, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .navbar-toggle {
        display: block;
    }
    
    .navbar-cta {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 110vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
    padding-bottom: 150px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-purple) 100%);
    background-image: 
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600'),
        linear-gradient(135deg, rgba(43, 26, 45, 0.95) 0%, rgba(79, 0, 109, 0.95) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    overflow: hidden;
    z-index: 1;
}

@media (max-height: 850px) {
    .hero-section {
        min-height: 125vh;
        padding-bottom: 180px;
    }
}

@media (max-height: 750px) {
    .hero-section {
        min-height: 140vh;
        padding-bottom: 200px;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--primary-dark) 100%);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.hero-logo-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-text-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

/* Logo Container - Estilo TRON */
.logo-container {
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in;
    display: inline-block;
    position: relative;
    padding: 0;
    border-radius: 25px;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" viewBox="0 0 32 32"><circle cx="16" cy="16" r="14" fill="rgba(139, 92, 246, 0.3)" stroke="rgba(139, 92, 246, 0.8)" stroke-width="1"/><circle cx="16" cy="16" r="3" fill="rgba(139, 92, 246, 1)"/></svg>') 16 16, auto;
}



/* Punto de luz que recorre el borde - SUAVE */
.logo-container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle,
        rgba(224, 195, 252, 0.7) 0%,
        rgba(192, 132, 252, 0.6) 30%,
        rgba(168, 85, 247, 0.5) 50%,
        rgba(138, 43, 226, 0.4) 70%,
        transparent 100%
    );
    border-radius: 50%;
    filter: blur(3px);
    box-shadow: 
        0 0 15px rgba(192, 132, 252, 0.4),
        0 0 25px rgba(168, 85, 247, 0.3),
        0 0 35px rgba(138, 43, 226, 0.2);
    top: -10px;
    left: -10px;
    animation: smoothBorderTravel 5s linear infinite;
    pointer-events: none;
    z-index: 15;
}

/* Resplandor del punto de luz */
.logo-inner::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.3),
        rgba(192, 132, 252, 0.25),
        rgba(168, 85, 247, 0.15),
        transparent
    );
    border-radius: 50%;
    filter: blur(25px);
    top: -50px;
    left: -50px;
    animation: smoothBorderTravel 5s linear infinite;
    pointer-events: none;
    z-index: -1;
}

/* Rastro de luz detrás del punto */
.logo-inner::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle,
        rgba(192, 132, 252, 0.25),
        rgba(168, 85, 247, 0.18),
        rgba(138, 43, 226, 0.12),
        transparent
    );
    border-radius: 50%;
    filter: blur(15px);
    top: -30px;
    left: -30px;
    animation: smoothTrailTravel 5s linear infinite;
    pointer-events: none;
    z-index: -1;
}

.logo-inner {
    background: linear-gradient(135deg, 
        rgba(20, 15, 30, 0.98),
        rgba(30, 20, 40, 0.98)
    );
    padding: 25px 35px;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 5;
    border: 2px solid rgba(138, 43, 226, 0.4);
    box-shadow: 
        inset 0 0 30px rgba(138, 43, 226, 0.2),
        0 0 40px rgba(138, 43, 226, 0.4),
        0 10px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.logo-container:hover .logo-inner {
    border-color: rgba(168, 85, 247, 0.6);
    box-shadow: 
        inset 0 0 40px rgba(138, 43, 226, 0.3),
        0 0 60px rgba(138, 43, 226, 0.6),
        0 10px 60px rgba(0, 0, 0, 0.7);
    transform: translateY(-3px);
}

.agency-logo {
    max-width: 220px;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 20;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.3));
}

.agency-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.5));
}

/* Animación TRON - Luz recorriendo el borde */
@keyframes tronLight {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin: 0;
    white-space: nowrap;
}

.highlight-text-hero {
    background: linear-gradient(135deg, #c084fc, #e0c3fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-intro {
    padding: 20px 0;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--text-light);
    padding: 12px 20px;
    background: rgba(79, 0, 109, 0.2);
    border-radius: 10px;
    border-left: 3px solid var(--accent-purple);
    border-top: 1px solid rgba(139, 92, 246, 0.7);
    border-bottom: 1px solid rgba(139, 92, 246, 0.7);
    transition: all 0.3s ease;
    animation: borderBlink 1.5s ease-in-out infinite;
}

@keyframes borderBlink {
    0%, 100% {
        border-top-color: rgba(139, 92, 246, 0.7);
        border-bottom-color: rgba(139, 92, 246, 0.7);
    }
    50% {
        border-top-color: rgba(139, 92, 246, 0);
        border-bottom-color: rgba(139, 92, 246, 0);
    }
}

.feature-item:hover {
    background: rgba(79, 0, 109, 0.3);
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--light-cream);
}

.hero-positions {
    padding: 20px 0;
}

.positions-label {
    font-size: 1.1rem;
    color: var(--light-cream);
    margin-bottom: 15px;
    font-weight: 600;
}

.positions-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.position-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(138, 43, 226, 0.3);
    color: var(--light-cream);
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(192, 132, 252, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.position-tag:hover {
    background: rgba(138, 43, 226, 0.5);
    border-color: var(--light-cream);
    transform: translateY(-2px);
}

.position-tag-more {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-purple));
    border-color: var(--accent-pink);
    font-weight: 600;
}

.position-tag-more:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

.hero-cta {
    display: flex;
    gap: 15px;
    padding-top: 10px;
}

/* Floating Animation Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-item {
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(243, 233, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.float-item:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.float-item:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
    width: 150px;
    height: 150px;
}

.float-item:nth-child(3) {
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
    width: 80px;
    height: 80px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-60px) translateX(-20px);
    }
    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--accent-purple), #7a00a8);
    color: var(--light-cream);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(79, 0, 109, 0.4);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(79, 0, 109, 0.6);
}

.cta-button i {
    margin-right: 8px;
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--light-cream);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--light-cream);
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: var(--light-cream);
    color: var(--primary-dark);
}

.cta-button-secondary i {
    margin-right: 8px;
}

.cta-button-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 35px;
    background: transparent;
    color: var(--light-cream);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid rgba(192, 132, 252, 0.5);
    transition: all 0.3s ease;
}

.cta-button-outline:hover {
    background: rgba(192, 132, 252, 0.1);
    border-color: var(--light-cream);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(192, 132, 252, 0.3);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-in 1.2s both;
}

.fade-in-delay-5 {
    animation: fadeIn 1s ease-in 1.5s both;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animación desde la derecha para las cards de posiciones */
.slide-from-right {
    opacity: 0;
    animation: slideFromRight 0.8s ease-out forwards;
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Section Styles */
section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
    background: var(--primary-dark);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 15px;
    color: var(--light-cream);
    font-weight: 600;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: autoHover 5.5s ease-in-out infinite;
}

@keyframes autoHover {
    0%, 20%, 100% {
        color: var(--light-cream);
        transform: scale(1);
        filter: none;
    }
    10% {
        color: #ffffff;
        transform: scale(1.05);
        filter: drop-shadow(0 0 25px rgba(145, 102, 247, 0.8)) drop-shadow(0 0 40px rgba(145, 102, 247, 0.6));
    }
}

.section-title::after {
    animation: autoHoverLine 5.5s ease-in-out infinite;
}

.section-title:hover {
    color: #ffffff !important;
    transform: scale(1.05) !important;
    filter: drop-shadow(0 0 25px rgba(145, 102, 247, 0.8)) drop-shadow(0 0 40px rgba(145, 102, 247, 0.6)) !important;
    animation-play-state: paused !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #9166f7, #a78bfa, #9166f7, transparent);
    transition: transform 0.3s ease;
}

@keyframes autoHoverLine {
    0%, 20%, 100% {
        transform: translateX(-50%) scaleX(0);
    }
    10% {
        transform: translateX(-50%) scaleX(1);
    }
}

.section-title:hover::after {
    transform: translateX(-50%) scaleX(1) !important;
    animation-play-state: paused !important;
}

.section-intro {
    text-align: center;
    font-size: 1.02rem;
    margin-bottom: 35px;
    color: var(--text-muted);
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.55;
}

/* Efecto typewriter */
.typewriter-container {
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.typewriter-text {
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--light-cream);
    font-size: 1.15rem;
    display: inline;
    line-height: 1.8;
    font-weight: 300;
    letter-spacing: 0.3px;
    white-space: pre-line;
}

.typewriter-text::after {
    content: '|';
    color: var(--accent-purple-light);
    animation: blink 0.7s step-end infinite;
    margin-left: 3px;
}

.typewriter-text.finished::after {
    display: none;
}

@keyframes blink {
    from, to {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.section-footer {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 50px;
    color: var(--text-muted);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-footer i {
    margin-right: 8px;
    color: var(--light-cream);
}

/* Why Section */
.why-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    position: relative;
    z-index: 2;
}

/* Carrusel 3D Curvo - Efecto de apilamiento */
.carousel-3d-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 30px auto 0;
    padding: 50px 40px 60px;
    perspective: 2000px;
    overflow: hidden;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 460px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.benefit-card {
    background: rgba(43, 26, 45, 0.85);
    backdrop-filter: blur(8px);
    padding: 28px 24px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Cards en el carrusel - Transición REAL con movimiento fluido */
.carousel-card {
    position: absolute;
    width: 300px;
    min-height: 270px;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -135px;
    cursor: default;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform-origin: center center;
}

/* Card central - La más grande y adelante SIN flotación para transición suave */
.carousel-card.active {
    transform: translateX(0) translateY(-50px) scale(1.2);
    z-index: 50;
    opacity: 1;
    box-shadow: 
        0 40px 100px rgba(139, 92, 246, 0.85),
        0 0 130px rgba(236, 72, 153, 0.65),
        0 25px 70px rgba(0, 0, 0, 0.45);
}

/* Cards laterales - Posiciones específicas con movimiento real */

/* Primera a la derecha */
.carousel-card.right-1 {
    transform: translateX(280px) translateY(10px) scale(0.95);
    z-index: 40;
    opacity: 1;
}

/* Segunda a la derecha */
.carousel-card.right-2 {
    transform: translateX(480px) translateY(30px) scale(0.85);
    z-index: 30;
    opacity: 1;
}

/* Primera a la izquierda */
.carousel-card.left-1 {
    transform: translateX(-280px) translateY(10px) scale(0.95);
    z-index: 40;
    opacity: 1;
}

/* Segunda a la izquierda */
.carousel-card.left-2 {
    transform: translateX(-480px) translateY(30px) scale(0.85);
    z-index: 30;
    opacity: 1;
}

/* Mejorar legibilidad del texto */
.carousel-card h3,
.carousel-card p {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Desactivar cursor pointer en cards del carrusel */
.carousel-card {
    cursor: default !important;
}

/* Animación sutil de entrada */
@keyframes carouselFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-3d-container {
    animation: carouselFadeIn 0.8s ease-out;
}

/* Desactivar brillo en cards del carrusel */
.carousel-card::before {
    display: none !important;
}

/* Indicadores del carrusel - Más cerca y clicables */
.carousel-indicators {
    display: flex !important;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
    position: relative;
    z-index: 100;
    background: rgba(26, 22, 37, 0.92);
    padding: 16px 32px;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    pointer-events: all;
}

.carousel-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 
        0 3px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.1);
    pointer-events: all;
}

.carousel-indicator.active {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    border-color: var(--light-cream);
    box-shadow: 
        0 0 25px rgba(139, 92, 246, 1),
        0 5px 18px rgba(0, 0, 0, 0.5),
        inset 0 2px 5px rgba(255, 255, 255, 0.2);
    transform: scale(1.4);
}

.carousel-indicator:hover {
    background: rgba(139, 92, 246, 0.8);
    transform: scale(1.25);
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.6),
        0 4px 15px rgba(0, 0, 0, 0.4);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.4) 55%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 70%,
        transparent 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
}

/* Hover solo para cards que NO son del carrusel */
.benefit-card:not(.carousel-card):hover {
    transform: translateY(-12px) scale(1.02);
    background: rgba(139, 92, 246, 0.15);
    border-color: var(--accent-purple-light);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.1);
}

.benefit-card.shine::before {
    animation: shine 0.7s ease forwards;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.benefit-icon {
    font-size: 2.8rem;
    margin-bottom: 18px;
    color: #ffffff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.benefit-card:hover .benefit-icon {
    color: #ffffff;
    transform: scale(1.15);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.5));
}

.benefit-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--light-cream);
    font-weight: 700;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    transition: opacity 0.5s ease;
}

.benefit-card p {
    color: rgba(243, 233, 212, 0.85);
    font-size: 0.92rem;
    line-height: 1.55;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    transition: opacity 0.5s ease;
}

/* Animación de contenido para cards del carrusel */
.carousel-card .benefit-icon,
.carousel-card h3,
.carousel-card p {
    transition: all 1.2s ease;
}

/* Contenido más visible en card activa */
.carousel-card.active .benefit-icon {
    opacity: 1;
    transform: scale(1);
}

.carousel-card.active h3,
.carousel-card.active p {
    opacity: 1;
}

/* Contenido menos visible en cards laterales */
.carousel-card:not(.active) .benefit-icon,
.carousel-card:not(.active) h3,
.carousel-card:not(.active) p {
    opacity: 0.9;
}

/* Positions Section */
.positions-section {
    background-image: url('assets/images/5940692_3041356.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 2;
}

.positions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(244, 114, 182, 0.2) 50%,
        rgba(255, 255, 255, 0.3) 100%
    );
    mix-blend-mode: overlay;
    z-index: -1;
}

.positions-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
}

.positions-section .section-title {
    color: rgba(26, 22, 37, 0.95);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
    animation: autoHoverDark 5.5s ease-in-out infinite !important;
}

@keyframes autoHoverDark {
    0%, 20%, 100% {
        color: var(--primary-dark);
        transform: scale(1);
        filter: none;
    }
    10% {
        color: #ffffff;
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 35px rgba(236, 72, 153, 0.7));
    }
}

.positions-section .section-title::after {
    animation: autoHoverLine 5.5s ease-in-out infinite !important;
}

.positions-section .section-title:hover {
    color: #ffffff !important;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.9)) drop-shadow(0 0 35px rgba(236, 72, 153, 0.7)) !important;
    transform: scale(1.05) !important;
    animation-play-state: paused !important;
}

.positions-section .section-intro {
    color: rgba(26, 22, 37, 0.8);
}

.positions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
}

.positions-grid .position-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
}

@media (max-width: 1024px) {
    .positions-grid .position-card {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .positions-grid {
        flex-direction: column;
    }
    
    .positions-grid .position-card {
        flex: 1 1 100%;
    }
}

.position-card {
    background: rgba(26, 22, 37, 0.95);
    backdrop-filter: blur(10px);
    padding: 32px 28px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.position-card:hover {
    border-color: var(--accent-purple);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2);
    background: rgba(35, 30, 45, 0.98);
}

.position-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: var(--accent-purple-light);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.15),
        rgba(168, 85, 247, 0.1)
    );
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
}

.position-icon i {
    font-size: 2.5rem;
}

.position-card:hover .position-icon {
    color: var(--light-cream);
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3),
        rgba(168, 85, 247, 0.25)
    );
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.4);
    transform: scale(1.1);
}

.position-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--light-cream);
    font-weight: 600;
    letter-spacing: -0.2px;
    text-align: center;
}

.position-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.apply-section {
    text-align: center;
    margin-top: 50px;
}

.positions-section .cta-button-secondary {
    background: linear-gradient(180deg, 
        rgba(168, 85, 247, 0.9) 0%,
        rgba(139, 92, 246, 0.95) 50%,
        rgba(236, 72, 153, 0.9) 100%
    );
    color: var(--light-cream);
    border: 2px solid rgba(100, 100, 120, 0.6);
    box-shadow: 
        0 4px 20px rgba(168, 85, 247, 0.4),
        0 8px 35px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: levitate 3s ease-in-out infinite;
}

@keyframes levitate {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.positions-section .cta-button-secondary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.positions-section .cta-button-secondary:hover {
    background: linear-gradient(180deg, 
        rgba(168, 85, 247, 1) 0%,
        rgba(139, 92, 246, 1) 50%,
        rgba(236, 72, 153, 1) 100%
    );
    color: var(--light-cream);
    border-color: rgba(120, 120, 140, 0.7);
    box-shadow: 
        0 6px 30px rgba(168, 85, 247, 0.7),
        0 12px 50px rgba(236, 72, 153, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.positions-section .cta-button-secondary:hover::before {
    opacity: 1;
}

.apply-section-old {
    text-align: center;
    margin-top: 60px;
}

.apply-section p {
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.apply-section p i {
    margin-right: 8px;
    color: var(--light-cream);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(180deg, var(--secondary-dark) 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(139, 92, 246, 0.4),
        0 0 80px rgba(139, 92, 246, 0.2);
    border-color: var(--accent-purple-light);
}

.testimonial-video {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.testimonial-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(243, 233, 212, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--light-cream);
}

.testimonial-content {
    padding: 25px;
}

.testimonial-text {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.85rem;
    color: var(--light-cream);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(79, 0, 109, 0.3);
    color: var(--light-cream);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid rgba(243, 233, 212, 0.2);
}

.social-link:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

/* About Section */
.about-section {
    background: var(--primary-dark);
    position: relative;
    z-index: 2;
}

/* About Section - Layout Horizontal con Glassmorphism */
.about-section {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.05) 0%,
        rgba(139, 92, 246, 0.05) 50%,
        rgba(244, 114, 182, 0.05) 100%
    );
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.about-left, .about-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Columna Izquierda */
.about-intro {
    font-family: 'Georgia', serif;
}

.about-year {
    font-size: 0.9rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.about-year span {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-top: 5px;
}

.about-year-inline {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: 'Georgia', serif;
    font-style: italic;
}

.about-mission-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    font-family: 'Georgia', serif;
    font-style: italic;
    margin-top: 20px;
}

.about-mission-text strong {
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-mission-box {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.15), 
        rgba(244, 114, 182, 0.1),
        rgba(139, 92, 246, 0.1)
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(244, 114, 182, 0.3);
    box-shadow: 
        0 8px 32px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.about-mission-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.about-mission-box h3 {
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.about-mission-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--light-cream);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-style: normal;
    position: relative;
    z-index: 1;
}

.about-stats {
    display: flex;
    gap: 30px;
}

.about-stats-text {
    margin-top: 25px;
}

.about-stats-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.about-stats-text .highlight-number {
    font-weight: 700;
    font-size: 1.1rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats-text .highlight-location {
    font-weight: 600;
    color: var(--light-cream);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: rgba(236, 72, 153, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(244, 114, 182, 0.25);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 114, 182, 0.5);
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Columna Derecha */
.values-title {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-pink-light), var(--accent-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 600;
}

.values-intro {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.08),
        rgba(244, 114, 182, 0.05),
        rgba(139, 92, 246, 0.08)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(244, 114, 182, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: levitateCard 3.5s ease-in-out infinite;
}

.value-card:nth-child(1) {
    animation-delay: 0s;
}

.value-card:nth-child(2) {
    animation-delay: 0.5s;
}

.value-card:nth-child(3) {
    animation-delay: 1s;
}

@keyframes levitateCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.1),
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover {
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.15),
        rgba(244, 114, 182, 0.1),
        rgba(139, 92, 246, 0.12)
    );
    border-color: rgba(244, 114, 182, 0.4);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 40px;
}

.value-card h4 {
    font-size: 1.15rem;
    color: var(--light-cream);
    margin-bottom: 5px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.about-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.about-footer p {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-footer i {
    background: linear-gradient(135deg, var(--accent-pink), var(--accent-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1rem;
}

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Form Section */
.form-section {
    background: linear-gradient(180deg, #0b070d 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 2;
}

.application-form {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(236, 72, 153, 0.08),
        rgba(139, 92, 246, 0.08)
    );
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 25px;
    border: 1px solid rgba(244, 114, 182, 0.3);
    box-shadow: 
        0 10px 40px rgba(236, 72, 153, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group-full {
    height: 100%;
}

.form-group-full textarea {
    height: calc(100% - 35px);
    min-height: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-rose), var(--accent-pink-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(26, 22, 37, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(244, 114, 182, 0.25);
    border-radius: 12px;
    color: var(--text-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-pink);
    background: rgba(26, 22, 37, 0.8);
    box-shadow: 
        0 0 0 3px rgba(236, 72, 153, 0.15),
        0 4px 20px rgba(236, 72, 153, 0.2);
}

/* Resplandor suave para el input de nombre cuando se activa */
.form-group input.glow-input {
    animation: inputGlow 2s ease-in-out;
}

@keyframes inputGlow {
    0%, 100% {
        border-color: rgba(244, 114, 182, 0.25);
        background: rgba(26, 22, 37, 0.6);
        box-shadow: 0 0 0 0 rgba(236, 72, 153, 0);
    }
    50% {
        border-color: var(--accent-pink);
        background: rgba(236, 72, 153, 0.15);
        box-shadow: 
            0 0 0 4px rgba(236, 72, 153, 0.3),
            0 0 40px rgba(236, 72, 153, 0.5),
            inset 0 0 30px rgba(236, 72, 153, 0.25),
            inset 0 0 60px rgba(236, 72, 153, 0.15);
    }
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-submit {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(244, 114, 182, 0.2);
}

.form-submit .cta-button {
    padding: 16px 40px;
    font-size: 1rem;
    background: linear-gradient(180deg, 
        rgba(168, 85, 247, 0.9) 0%,
        rgba(139, 92, 246, 0.95) 50%,
        rgba(236, 72, 153, 0.9) 100%
    );
    border: 2px solid rgba(100, 100, 120, 0.6);
    box-shadow: 
        0 4px 20px rgba(168, 85, 247, 0.4),
        0 8px 35px rgba(236, 72, 153, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-submit .cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.2) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-submit .cta-button:hover {
    background: linear-gradient(180deg, 
        rgba(168, 85, 247, 1) 0%,
        rgba(139, 92, 246, 1) 50%,
        rgba(236, 72, 153, 1) 100%
    );
    border-color: rgba(120, 120, 140, 0.7);
    box-shadow: 
        0 6px 30px rgba(168, 85, 247, 0.7),
        0 12px 50px rgba(236, 72, 153, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.form-submit .cta-button:hover::before {
    opacity: 1;
}

@media (max-width: 968px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-form {
        padding: 35px 25px;
    }
    
    .form-group-full textarea {
        min-height: 150px;
    }
}

/* Footer */
.footer {
    background: #0b070d;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(243, 233, 212, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact a {
    color: var(--light-cream);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-purple);
}

.footer-contact i {
    margin-right: 8px;
    color: var(--accent-purple);
}

.footer-social {
    display: flex;
    gap: 20px;
    perspective: 1000px;
}

.footer-social a {
    width: 50px;
    height: 50px;
    background: rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-cream);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    transform: rotateX(-90deg);
    opacity: 0;
    transform-origin: 50% 100%;
    position: relative;
}

/* Animación de levantamiento real estilo AE86 - rota desde la base */
.footer-social a.popup {
    animation: popupHeadlightReal 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.footer-social a:nth-child(2).popup {
    animation-delay: 0.5s;
}

@keyframes popupHeadlightReal {
    0% {
        transform: rotateX(-90deg);
        opacity: 0;
    }
    60% {
        transform: rotateX(5deg);
        opacity: 1;
    }
    80% {
        transform: rotateX(-2deg);
    }
    100% {
        transform: rotateX(0deg);
        opacity: 1;
    }
}

/* Efecto de alumbrado suave que pasa de uno a otro - color del botón Aplicar */
.footer-social a.glow {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(167, 139, 250, 0.4),
        0 5px 20px rgba(139, 92, 246, 0.5);
}

.footer-social a:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 233, 212, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-values {
    font-style: italic;
    color: var(--light-cream);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text-section {
        align-items: center;
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .logo-inner {
        padding: 15px 25px;
    }
    
    .agency-logo {
        max-width: 160px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px;
    }
    
    .hero-logo-section {
        order: 1;
    }
    
    .hero-text-section {
        order: 2;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .positions-tags {
        justify-content: center;
    }
    
    .cta-button, .cta-button-outline {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .positions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Animaciones para las cards en móvil */
    .position-card.slide-from-right:nth-child(1) {
        animation-name: slideFromTop !important;
    }
    
    .position-card.slide-from-right:nth-child(2) {
        animation-name: slideFromRight !important;
    }
    
    .position-card.slide-from-right:nth-child(3) {
        animation-name: slideFromBottom !important;
    }
    
    .position-card.slide-from-right:nth-child(4) {
        animation-name: slideFromLeft !important;
    }
    
    .position-card.slide-from-right:nth-child(5) {
        animation-name: slideFromTop !important;
    }
    
    .application-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animaciones para móvil */
@keyframes slideFromTop {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromBottom {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 480px) {
    .logo-inner {
        padding: 12px 20px;
    }
    
    .agency-logo {
        max-width: 130px;
    }
}

/* Botones flotantes de redes sociales */
.floating-social-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-social-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.8), rgba(168, 85, 247, 0.8));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-cream);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.4s ease;
    transform: rotateX(-90deg);
    opacity: 0;
    transform-origin: 50% 100%;
    position: relative;
    animation: popupHeadlightReal 1.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.floating-social-btn:nth-child(2) {
    animation-delay: 0.5s;
}

.floating-social-btn.glow {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.6),
        0 0 40px rgba(167, 139, 250, 0.4),
        0 5px 20px rgba(139, 92, 246, 0.5);
}

.floating-social-btn:hover {
    background: var(--accent-purple);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .floating-social-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-social-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .floating-social-buttons {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-social-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Botón Scroll to Top con efecto neón spinner */
.scroll-to-top {
    position: fixed;
    bottom: 165px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(26, 22, 37, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top.scrolling {
    opacity: 1;
}

.scroll-to-top.idle {
    opacity: 0.7;
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    border-color: var(--accent-purple-light);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

.scroll-to-top i {
    font-size: 1.2rem;
    color: var(--light-cream);
    position: relative;
    z-index: 2;
}

/* Spinner neón que gira al hacer scroll */
.scroll-spinner {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--accent-purple);
    border-right-color: var(--accent-purple-light);
    border-bottom-color: var(--accent-pink);
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.5),
        inset 0 0 10px rgba(139, 92, 246, 0.3);
}

.scroll-to-top.scrolling .scroll-spinner {
    opacity: 1;
    animation: neonSpin 1s linear infinite;
}

@keyframes neonSpin {
    0% {
        transform: rotate(0deg);
        box-shadow: 
            0 0 15px rgba(139, 92, 246, 0.5),
            inset 0 0 10px rgba(139, 92, 246, 0.3);
    }
    50% {
        box-shadow: 
            0 0 25px rgba(236, 72, 153, 0.6),
            inset 0 0 15px rgba(236, 72, 153, 0.4);
    }
    100% {
        transform: rotate(360deg);
        box-shadow: 
            0 0 15px rgba(139, 92, 246, 0.5),
            inset 0 0 10px rgba(139, 92, 246, 0.3);
    }
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 145px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-spinner {
        width: 51px;
        height: 51px;
    }
    
    /* Carrusel responsive - Efecto apilamiento en móvil */
    .carousel-3d {
        height: 360px;
    }
    
    .carousel-card {
        width: 240px;
        min-height: 230px;
        margin-left: -120px;
    }
    
    .carousel-card.active {
        transform: translateX(0) translateY(-35px) scale(1.15);
    }
    
    @keyframes float {
        0%, 100% {
            transform: translateX(0) translateY(-35px) scale(1.15);
        }
        50% {
            transform: translateX(0) translateY(-45px) scale(1.15);
        }
    }
    
    .carousel-card.left-1 {
        transform: translateX(-220px) translateY(8px) scale(0.92);
        z-index: 40;
    }
    
    .carousel-card.right-1 {
        transform: translateX(220px) translateY(8px) scale(0.92);
        z-index: 40;
    }
    
    .carousel-card.left-2 {
        transform: translateX(-380px) translateY(25px) scale(0.82);
        z-index: 30;
        opacity: 0.75;
    }
    
    .carousel-card.right-2 {
        transform: translateX(380px) translateY(25px) scale(0.82);
        z-index: 30;
        opacity: 0.75;
    }
}

@media (max-width: 1200px) {
    .carousel-card.left-2 {
        transform: translateX(-420px) translateY(28px) scale(0.83);
        opacity: 0.78;
    }
    
    .carousel-card.right-2 {
        transform: translateX(420px) translateY(28px) scale(0.83);
        opacity: 0.78;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Animación suave recorriendo el borde */
@keyframes smoothBorderTravel {
    0% {
        top: -10px;
        left: -10px;
    }
    24.9% {
        top: -10px;
        left: calc(100% - 10px);
    }
    25% {
        top: -10px;
        left: calc(100% - 10px);
    }
    49.9% {
        top: calc(100% - 10px);
        left: calc(100% - 10px);
    }
    50% {
        top: calc(100% - 10px);
        left: calc(100% - 10px);
    }
    74.9% {
        top: calc(100% - 10px);
        left: -10px;
    }
    75% {
        top: calc(100% - 10px);
        left: -10px;
    }
    99.9% {
        top: -10px;
        left: -10px;
    }
    100% {
        top: -10px;
        left: -10px;
    }
}

/* Animación del resplandor (mismo recorrido) */
@keyframes smoothTrailTravel {
    0% {
        top: -30px;
        left: -30px;
    }
    24.9% {
        top: -30px;
        left: calc(100% - 30px);
    }
    25% {
        top: -30px;
        left: calc(100% - 30px);
    }
    49.9% {
        top: calc(100% - 30px);
        left: calc(100% - 30px);
    }
    50% {
        top: calc(100% - 30px);
        left: calc(100% - 30px);
    }
    74.9% {
        top: calc(100% - 30px);
        left: -30px;
    }
    75% {
        top: calc(100% - 30px);
        left: -30px;
    }
    99.9% {
        top: -30px;
        left: -30px;
    }
    100% {
        top: -30px;
        left: -30px;
    }
}




/* ============================================ */
/* SOBRE NOSOTROS - OPCIÓN 2 (PROFESIONAL Y SEXY) */
/* ============================================ */

.about-section-v2 {
    background: linear-gradient(180deg, 
        var(--primary-dark) 0%,
        var(--secondary-dark) 50%,
        var(--primary-dark) 100%
    );
    position: relative;
    overflow: hidden;
}

.about-section-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-subtitle-v2 {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-purple-light);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Content Paragraphs */
.about-content-v2 {
    max-width: 900px;
    margin: 0 auto 50px;
    animation: fadeInUp 0.8s ease-out;
}

.about-intro-v2,
.about-mission-v2 {
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
    font-weight: 300;
}

.about-mission-v2 {
    margin-bottom: 0;
}

.highlight-year {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-pink);
}

.highlight-gradient {
    color: var(--accent-pink);
    font-weight: 600;
}

/* Values Section */
.values-section-v2 {
    max-width: 1000px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.values-title-v2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: center;
}

.values-intro-v2 {
    text-align: center;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 35px;
}

.values-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.value-item-v2 {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border-left: 3px solid var(--accent-pink);
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(236, 72, 153, 0.08);
}

.value-item-v2:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
    border-left-color: var(--accent-pink);
    box-shadow: 0 6px 25px rgba(236, 72, 153, 0.2);
}

.value-item-v2 i {
    font-size: 1.6rem;
    color: var(--accent-pink);
    min-width: 38px;
    margin-top: 3px;
}

.value-item-v2 h4 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 5px;
    font-weight: 600;
}

.value-item-v2 p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Footer Info */
.about-footer-v2 {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 14px;
    border: 1px solid rgba(168, 85, 247, 0.25);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}

.footer-item-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.footer-item-v2 i {
    font-size: 1.4rem;
    color: var(--accent-pink);
}

/* Responsive */
@media (max-width: 968px) {
    .values-grid-v2 {
        grid-template-columns: 1fr;
    }
    
    .about-footer-v2 {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-item-v2 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-intro-v2,
    .about-mission-v2 {
        font-size: 1.05rem;
    }
}


/* ============================================ */
/* LÍNEAS CINÉTICAS - ESTILO MANGA */
/* ============================================ */

.kinetic-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.kinetic-line {
    position: absolute;
    left: -100%;
    width: 90%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(168, 85, 247, 0.7) 20%,
        rgba(168, 85, 247, 1) 50%,
        rgba(168, 85, 247, 0.7) 80%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
    opacity: 0;
    animation: kineticMove 2s ease-out forwards, kineticLoop 6s ease-in-out 2s infinite;
}

/* Primera animación rápida e impactante */
@keyframes kineticMove {
    0% {
        left: -100%;
        opacity: 0;
        transform: scaleX(0.5);
    }
    15% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        left: 120%;
        opacity: 0;
        transform: scaleX(0.8);
    }
}

/* Animación continua más visible */
@keyframes kineticLoop {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        left: 120%;
        opacity: 0;
    }
}

/* Responsive - Ocultar en móvil */
@media (max-width: 768px) {
    .kinetic-lines {
        display: none;
    }
}


/* ============================================ */
/* MODAL DE ÉXITO CON CONFETTI */
/* ============================================ */

.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.success-modal.show {
    display: flex;
}

.success-content {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.95),
        rgba(236, 72, 153, 0.95)
    );
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-icon {
    font-size: 5rem;
    color: #ffffff;
    margin-bottom: 20px;
    animation: bounceIn 0.8s ease-out 0.3s both;
}

.success-content h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.success-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 30px;
}

.success-close {
    padding: 15px 40px;
    background: #ffffff;
    color: var(--accent-purple);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.success-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* Confetti */
.confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0;
    animation: confettiFall 3s ease-out forwards;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}


/* ============================================ */
/* SECCIÓN DE BENEFICIOS */
/* ============================================ */

.benefits-section {
    background: linear-gradient(135deg, 
        var(--accent-purple) 0%,
        var(--accent-pink) 100%
    );
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.benefits-section .section-title {
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.benefits-section .section-title i {
    color: var(--primary-dark);
}

.benefits-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.benefit-list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 1);
}

.benefit-list-item i {
    font-size: 2rem;
    color: var(--accent-purple);
    min-width: 40px;
    text-align: center;
}

.benefit-list-item span {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .benefits-list-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-list-item {
        padding: 20px 25px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================ */
/* SECCIÓN DE CULTURA */
/* ============================================ */

.culture-section {
    background: linear-gradient(180deg, #0b070d 0%, var(--primary-dark) 100%);
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.culture-quote {
    background: linear-gradient(135deg, 
        rgba(139, 92, 246, 0.3),
        rgba(236, 72, 153, 0.3)
    );
    backdrop-filter: blur(15px);
    color: var(--light-cream);
    padding: 40px 60px;
    border-radius: 15px;
    margin: 35px auto 50px;
    font-style: italic;
    font-size: 1.2em;
    line-height: 1.8;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
    border: 1px solid rgba(139, 92, 246, 0.4);
    position: relative;
    max-width: 900px;
    text-align: center;
    z-index: 1;
}

.culture-quote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 2.5em;
    color: rgba(139, 92, 246, 0.25);
    z-index: 0;
}

.culture-quote::after {
    content: '\f10e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 2.5em;
    color: rgba(236, 72, 153, 0.25);
    z-index: 0;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 40px;
    margin-top: 30px;
}

.culture-item {
    padding: 0;
    background: transparent;
    border: none;
}

.culture-item h3 {
    color: var(--accent-purple-light);
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.culture-item h3 i {
    color: var(--accent-pink);
    font-size: 1.2em;
}

.culture-item p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05em;
}

@media (max-width: 768px) {
    .culture-quote {
        padding: 35px 40px;
        font-size: 1.05em;
    }
    
    .culture-quote::before {
        font-size: 2em;
        top: 10px;
        left: 10px;
        opacity: 0.3;
    }
    
    .culture-quote::after {
        font-size: 2em;
        bottom: 10px;
        right: 10px;
        opacity: 0.3;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .culture-item h3 {
        font-size: 1.2em;
    }
}


/* Modo oscuro para botones flotantes en secciones claras */
.floating-social-btn.dark-mode {
    background: linear-gradient(135deg, rgba(26, 22, 37, 0.9), rgba(45, 36, 56, 0.9)) !important;
    border: 1px solid rgba(139, 92, 246, 0.4);
}

.floating-social-btn.dark-mode.glow {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark)) !important;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(167, 139, 250, 0.6),
        0 5px 20px rgba(139, 92, 246, 0.7);
}

.scroll-to-top.dark-mode {
    background: rgba(26, 22, 37, 0.95) !important;
    border: 2px solid rgba(139, 92, 246, 0.6);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.5);
}


/* Botón de aplicar en tarjetas de posiciones */
.position-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-purple-light));
    color: var(--light-cream);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 20px auto 0;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
    width: fit-content;
}

.position-apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, var(--accent-purple-light), var(--accent-purple));
}

.position-apply-btn i {
    font-size: 1rem;
}

/* Tags clicables en hero */
.position-tag {
    text-decoration: none;
    display: inline-block;
}

.position-tag:hover {
    text-decoration: none;
}


/* Efecto de volteo de naipes para las tarjetas */
.position-card {
    transform-style: preserve-3d;
    transform: rotateY(90deg);
    opacity: 0;
}

.position-card.flip-in {
    animation: flipCard 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes flipCard {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

/* Delays escalonados para cada tarjeta */
.position-card:nth-child(1).flip-in {
    animation-delay: 0.1s;
}

.position-card:nth-child(2).flip-in {
    animation-delay: 0.2s;
}

.position-card:nth-child(3).flip-in {
    animation-delay: 0.3s;
}

.position-card:nth-child(4).flip-in {
    animation-delay: 0.4s;
}

.position-card:nth-child(5).flip-in {
    animation-delay: 0.5s;
}

.position-card:nth-child(6).flip-in {
    animation-delay: 0.6s;
}

.position-card:nth-child(7).flip-in {
    animation-delay: 0.7s;
}

.position-card:nth-child(8).flip-in {
    animation-delay: 0.8s;
}
