/* ============================================
   CIFRE ACADEMY - Hero Section
   ============================================ */

/* Academy Slide - Now part of carousel */
.academy-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem var(--spacing-md) var(--spacing-lg);
}

/* Shield Icon in Hero - Positioned at bottom as per reference */
.hero-icon {
    width: 300px;
    height: 300px;
    margin-top: 3rem;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0,212,255,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 102, 255, 0.4));
}

/* Hero has no floating elements - clean design as per reference */

/* Hero Content */
.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Title - Dark blue as per reference */
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.2;
    color: #0a0e27;
    letter-spacing: 3px;
}

.hero h1 span {
    display: block;
    font-size: 1.1rem;
    font-weight: 400;
    color: #475569;
    margin-top: 1.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: normal;
    line-height: 1.6;
}

.hero-content p {
    font-size: 1.25rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* CTA Button - Comenzar Ahora (White Style) */
.btn-start {
    display: inline-block;
    background: white;
    color: #0066FF;
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.btn-start:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: #f8fafc;
}