/* ==================== VARIABLES Y SETUP ==================== */
:root {
    --hamo-primary: #c21e5d; /* Rosa/magenta principal */
    --hamo-dark: #6b0434;    /* Bordo oscuro */
    --hamo-light: #f5f5f1;   /* Beige claro */
}


/* ==================== HERO SECTION ==================== */
.hamo-howto__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    height: 60vh;
}

.hamo-howto__hero-content {
    max-width: 740px;
    width: 40vw;
    animation: hamoFadeInUp 0.8s ease-out;
}

.hamo-howto__hero-title {
    font-size: 73px;
    font-weight: 700;
    margin: 0 0 1rem 0;
    line-height: 80px;
}

.hamo-howto__hero-subtitle {
    font-size: 1.1rem;
    margin: 0 0 2rem 0;
    opacity: 0.95;
}
.howto-bg-mobil{
    display: none;
}
.hamo-howto__roadmap-wrapper{
    width: 100%;
    height: auto;
}
/* ==================== BOTONES ==================== */
.hamo-howto__btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.hamo-howto__btn--primary {
    background: var(--hamo-primary);
    color: white;
}

.hamo-howto__btn--primary:hover {
    background: var(--hamo-light);
    transform: scale(1.05);
}

.hamo-howto__btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}


/* ==================== CTA FINAL ==================== */
.hamo-howto__cta {
    padding: 4rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%),
        url('../img/footer.png') center/cover no-repeat;
    height: clamp(980px, 5700px - 394vw, 1700px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.hamo-howto__benefit-cards{
    display:flex;
    justify-content:center;
    gap:2vw;
    position: relative;
    top: -30%;
}

.hamo-howto__cta-title {
    font-size: 1.8rem;
    margin: 0 0 1.5rem 0;
    color: var(--hamo-dark);
}

@keyframes hamoFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.howto-bg {
    position: relative;
    width: 100vw;
    height: auto;
}



@media (max-width: 1024px) {
    .hamo-howto__roadmap {
        padding: 4rem 1.5rem;
    }

    .hamo-howto__roadmap-circle {
        font-size: 2rem;
    }

    .hamo-howto__roadmap-title {
        font-size: 1.1rem;
    }

    .hamo-howto__roadmap-desc {
        font-size: 0.9rem;
    }
    
    .hamo-howto__hero-content{
        width: 85vw;
        height: 45vh;
    }
    
    .hamo-howto__roadmap {
        padding: 3rem 1rem;
        aspect-ratio: 630/2300;
        position: absolute;
        top:38rem;
        height: 2000px;
    }
    
    .hamo-howto__roadmap-wrapper{
        margin: 0;
    }   
    
    .howto-bg{
        display:none;
    }

    .howto-bg-mobil{
        width: 100vw;
        display: flex;
    }


    .hamo-howto__benefit-card{
        width: 80vw !important;
        max-width: none !important;
        margin: 0 auto;
    }

    .hamo-howto__benefits-container{
        width: 100% !important;
    }
    .hamo-howto__cta-content{
        width: 100%;
    }
    

    .hamo-howto__hero-subtitle {
        font-size: 1rem;
    }

    .hamo-howto__cta {
        padding: 2rem;
        align-items: flex-end;
    }

    .hamo-howto__benefit-cards{
        top: 0%;
        flex-wrap: wrap;
    }
    .hamo-howto__cta-content{
        width: 80vw !important;
        height: 40vh !important;
    }

    .hamo-howto__cta-title {
        font-size: 1.4rem;
    }

    .hamo-howto__btn {
        width: 100%;
    }
}



/* ==================== RESPONSIVE - SMALL MOBILE (480px) ==================== */
@media (max-width: 480px) {
    .hamo-howto__hero-title {
        font-size: 50px;
    }
    .hamo-howto__roadmap {
        padding: 2rem 0.75rem;
    }

    .hamo-howto__roadmap-title {
        font-size: 0.9rem;
    }

    .hamo-howto__roadmap-desc {
        font-size: 0.8rem;
    }
    .hamo-howto__hero-content{
        width: 100vw;
    }
    .hamo-howto__cta-content{
        height: 45vh !important;
    }
}

/* ==================== BASE (sin media query) ==================== */


/* ==================== SECCIÓN BENEFICIOS ==================== */
.hamo-howto__benefits {
    position: absolute;
    z-index: 3;
    width: 100vw;
            bottom:clamp(300px, 1900px - 93vw, 1500px);
    justify-items: center;
    height: 25vh;
}

.hamo-howto__benefits-container { 
    display: flex;
    gap: 2vw;
}

.hamo-howto__benefit-card {
    background: linear-gradient(135deg, #6b1a3f 0%, #8b2e5f 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    color: white;
    width: 21vw;
}

.hamo-howto__benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(107, 26, 63, 0.3);
}

.hamo-howto__benefit-icon {
    width: 160px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.hamo-howto__benefit-icon svg {
    color: white;
}

.hamo-howto__benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem;
    color: white;
}

.hamo-howto__benefit-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.hamo-howto__cta-content {
    width: 50vw;
    height: 35vh;
    margin: 0 auto;
    background: #F4EEE4;
    margin-top: clamp(0px,5%,150px);
}

.hamo-howto__cta-title {
    font-size: 2rem;
    font-weight: 600;
    color: #6b1a3f;
    margin: 70px;
}

.hamo-howto__cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d91e63 0%, #c91c5d 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hamo-howto__cta-button:hover {
    transform: scale(1.05);
    background: var(--hamo-dark);
    box-shadow: 0 8px 20px white;
    color: var(--hamo-light) !important;
}
/* Ocultar breadcrumb SOLO dentro de tu módulo */
ol[itemtype="http://schema.org/BreadcrumbList"],
[itemtype="http://schema.org/BreadcrumbList"] {
    display: none !important;
}
