/* HERO DESKTOP - Con imagen de fondo y contenido centrado */

.hero-desktop {
    display: none;
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom, var(--color-primary-dark), var(--color-primary));
    overflow: hidden;
    padding: 2rem;
}

.hero-desktop__background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.05;
    z-index: 0;
}

.hero-desktop__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.2rem;
}

.hero-desktop__title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    margin: 0;
    max-width: 900px;
}

.hero-desktop__title b {
    color: var(--color-accent);
    font-weight: 800;
}

.hero-desktop__subtitle {
    font-family: var(--font-secondary);
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    max-width: 700px;
    font-weight: 500;
}

.hero-desktop__benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
}

.hero-desktop__benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.hero-desktop__benefit i {
    color: var(--color-accent);
    font-size: 1.3rem;
}

/* CAROUSEL DE BENEFITS */
@keyframes carouselFade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    33% {
        opacity: 1;
    }
    43% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.hero-desktop__benefits-carousel {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 3rem;
}

.hero-desktop__benefit-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-accent);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    opacity: 0;
    animation: carouselFade 9s ease-in-out infinite;
    white-space: nowrap;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.hero-desktop__benefit-item:nth-child(1) {
    animation-delay: 0s;
}

.hero-desktop__benefit-item:nth-child(2) {
    animation-delay: 3s;
}

.hero-desktop__benefit-item:nth-child(3) {
    animation-delay: 6s;
}

.hero-desktop__benefit-item i {
    font-size: 1.3rem;
}

.hero-desktop__benefit-item::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin-right: 1rem;
}

.hero-desktop__benefit-item::after {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin-left: 1rem;
}

.hero-desktop__metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 2rem 0 0 0;
    padding: 0;
}

.hero-desktop__metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: var(--font-secondary);
}

.hero-desktop__metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
}

.hero-desktop__metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-desktop__cta-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-desktop__primary-cta,
.hero-desktop__secondary-cta {
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
}

.hero-desktop__primary-cta {
    background: var(--color-accent);
    color: var(--color-primary-dark);
}

.hero-desktop__primary-cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(200, 162, 77, 0.4);
}

.hero-desktop__secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-desktop__secondary-cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 1024px) {
    .hero-desktop {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hero-desktop {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}

@media (min-width: 1024px) and (max-width: 1280px) {
    .hero-desktop__title {
        font-size: 2.8rem;
    }

    .hero-desktop__subtitle {
        font-size: 1.1rem;
    }
}

@media (min-width: 1280px) {
    .hero-desktop__title {
        font-size: 3.5rem;
    }
}
