.oferta-header {
    background: linear-gradient(135deg, #0a2e1a 0%, #1a4a2e 100%);
    padding: 80px 0;
    position: relative;
}

.oferta-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
}

.oferta-header .lead {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 20px;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: #ff5203;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
    content: "›";
}

.razones-section {
    background: white;
}

.razon-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.razon-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: white;
    border-color: #ff5203;
}

.razon-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,82,3,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.razon-icon i {
    font-size: 32px;
    color: #ff5203;
}

.razon-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.razon-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.postulacion-section {
    background: var(--light-gray);
}

.pasos-list {
    padding-right: 20px;
}

.paso-item {
    gap: 15px;
}

.paso-numero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    background: #ff5203;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

.paso-item h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.paso-item p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.postulacion-card {
    border: 2px solid rgba(255,82,3,0.1);
}

.postulacion-card h3 {
    color: var(--dark);
}

.valores-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
}

.valor-card {
    padding: 20px;
    transition: var(--transition);
    border-radius: 16px;
}

.valor-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .oferta-header {
        padding: 60px 0;
    }
    
    .oferta-header h1 {
        font-size: 2rem;
    }
    
    .oferta-header .lead {
        font-size: 1rem;
    }
    
    .razon-card {
        padding: 25px 15px;
    }
    
    .paso-item {
        gap: 12px;
    }
    
    .paso-numero {
        min-width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .postulacion-card {
        padding: 30px 20px !important;
    }
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.hero-buttons .btn {
    font-size: 0.95rem;
    padding: 12px 28px;
}

.hero-buttons .btn-outline-custom {
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-outline-custom:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .hero-buttons .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}
.world-cup-banner {
    background: linear-gradient(135deg, #1a3a2e 0%, #2d5a4a 40%, #1a3a2e 100%);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    border-top: 3px solid #ffd700;
    border-bottom: 3px solid #ffd700;
}

.world-cup-banner::before {
    content: '🏟️ ⚽ 🏆 ⚽ 🏟️ ⚽ 🏆 ⚽ 🏟️';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    font-size: 2rem;
    opacity: 0.05;
    animation: scrollEmojis 20s linear infinite;
    letter-spacing: 50px;
    white-space: nowrap;
}

@keyframes scrollEmojis {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.stadium-effect {
    display: flex;
    gap: 8px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ffd700;
    animation: blinkLight 1.5s ease-in-out infinite;
}

.light:nth-child(2) { animation-delay: 0.3s; }
.light:nth-child(3) { animation-delay: 0.6s; }
.light:nth-child(4) { animation-delay: 0.9s; }
.light:nth-child(5) { animation-delay: 1.2s; }

@keyframes blinkLight {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.2;
        transform: scale(0.5);
    }
}
.subtitle-ball-effect {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    position: relative;
}

.ball-word {
    display: inline-block;
    font-size: 2rem;
    animation: ballWordBounce 2s ease-in-out infinite;
}

.ball-word:last-child {
    animation-delay: 0.5s;
}

@keyframes ballWordBounce {
    0%, 100% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) scale(1.2) rotate(-10deg);
    }
    50% {
        transform: translateY(0) scale(1) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) scale(1.1) rotate(10deg);
    }
}