/* Estilos para la sección hero con efecto de partículas */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0C54A0 0%, #1e3a8a 50%, #0C54A0 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Contenedor de partículas */
#particles-js {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Contenido del hero sobre las partículas */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 2rem 0;
}

.hero-inner > div {
    flex: 1;
    max-width: 50%;
    padding-right: 2rem;
}

.hero-inner h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-inner p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-inner strong {
    color: #eda635;
    font-weight: 600;
}

/* Logo de la plataforma en hero */
.hero-logo {
    text-align: center;
    margin-bottom: 1.5rem;
}

.hero-logo img {
    filter: drop-shadow(0 2px 4px rgba(255, 255, 255, 1));
    transition: transform 0.3s ease;
}

.hero-logo img:hover {
    transform: scale(1.05);
}

/* Botones CTA */
.cta-row {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-row .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-row .btn:first-child {
    background: #eda635;
    color: #ffffff !important;
    border-color: #ffffff;
    font-weight: 700;
}

.cta-row .btn:first-child:hover {
    background: #eda635;
    border-color: #eda635;
    color: #eda635 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
    filter: brightness(1.1);
}

.cta-row .btn-outline {
    background: transparent;
    color: white !important;
    border-color: white;
}

.cta-row .btn-outline:hover {
    background: white;
    color: #0C54A0 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

/* Figura del hero - Mantener diseño circular original */
.hero-figure {
    /* flex: 1; */
    max-width: 50%;
    margin: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.figure-inner {
    position: relative;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(255, 215, 0, 0.3);
    border: 5px solid rgba(255, 215, 0, 0.4);
}

.figure-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.figure-inner:hover img {
    transform: scale(1.05);
}

/* Efecto de overlay en la imagen circular */
.figure-inner::after {
    /* content: ''; */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.05));
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .hero-inner > div,
    .hero-figure {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-inner h1 {
        font-size: 2.5rem;
    }
    
    .hero-inner p {
        font-size: 1rem;
    }
    
    .hero-logo img {
        max-height: 50px !important;
    }
    
    .cta-row {
        justify-content: center;
    }
    
    .cta-row .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .figure-inner {
        width: 300px;
        height: 300px;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-inner h1 {
        font-size: 2rem;
    }
    
    .hero-logo img {
        max-height: 40px !important;
    }
    
    .cta-row {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-row .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .figure-inner {
        width: 250px;
        height: 250px;
    }
}