:root {
    --rosa: #e94f91;
    --morado: #532e4d;
    --dorado: #d4b26a;
    --fondo: #0f0b11;
    --gris: #f3f3f3;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

#s-bann {
    /* background: linear-gradient(135deg, rgba(239, 96, 160, 0.95), rgba(83, 46, 77, 0.98)), url('/src/img/banner-mujeres.png') center/cover no-repeat; */
    background-image: url("/src/img/banner-mujeres.png");
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 5rem 1rem 4rem;
    display: block;
}

#s-bann h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    margin-bottom: 0.5rem;
    letter-spacing: .03em;
}

#s-bann p {
    max-width: 650px;
    margin: 0 auto 1.5rem;
    font-size: 1.05rem;
}

.cta-btn {
    display: inline-block;
    color: #fff;
    padding: .9rem 1.8rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .15);
    transition: transform .2s;
    text-align: center;
    background-color: #FA0A69;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.badge {
    display: inline-block;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, .4);
    padding: .4rem .8rem;
    border-radius: 999px;
    font-size: .8rem;
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 880px) {
    .grid-2 {
    grid-template-columns: 1.2fr .8fr;
    }
}

.card {
    background: #fff;
    border-radius: 1.2rem;
    border: 1px solid rgba(0, 0, 0, .03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
    padding: 1.8rem 1.6rem;
    display: block;
}

h2 {
    font-size: 1.5rem;
    margin-top: 0;
    color: #532e4d;
}

section {
    display: block;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
}

.info-list li {
    margin-bottom: 1rem;
    display: flex;
    gap: .8rem;
    align-items: flex-start;
}

.info-icon {
    width: 32px;
    height: 32px;
    background: rgba(83, 46, 77, .12);
    border-radius: .7rem;
    display: grid;
    place-items: center;
    font-size: .9rem;
    color: #532e4d;
    flex: 0 0 32px;
}

.price-box {
    background: linear-gradient(170deg, #fff7f9, #ffffff);
    border: 1px solid rgba(233, 79, 145, 0.15);
    border-radius: 1rem;
    padding: 1.1rem 1rem 1rem;
    margin-top: 1.2rem;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e94f91;
    margin: .3rem 0;
}

.tag {
    display: inline-block;
    background: rgba(83, 46, 77, .09);
    color: #532e4d;
    padding: .45rem .8rem;
    border-radius: .7rem;
    font-size: .75rem;
    margin-right: .4rem;
    margin-bottom: .4rem;
}

.experts {
    display: grid;
    gap: 1rem;
}

@media (min-width: 720px) {
    .experts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.expert {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .03);
    border-radius: .8rem;
    padding: 1rem 1rem .8rem;
}

#content-main {
    padding: 3rem 1rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
}

#s-banner-mujeres-res,
#s-banner-mujeres {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 90px;
}

#s-banner-mujeres-res {
    display: none;
}

#s-banner-mujeres a,
#s-banner-mujeres a img{
    width: 100%;
}

#s-banner-mujeres-res a,
#s-banner-mujeres-res a img{
    width: 100%;
}

#content-btn-ws {
    display: none !important;
}


#btn-whatsapp {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 80px;
	right: 10px;
	z-index: 111111;
	padding: 8px;
	background-color: #32ba46;
	border-radius: 50%;
	transition: ease all 0.4s;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#btn-whatsapp:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
		0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
	right: 20px;
	transform: scale(1.05, 1.05);
}

@media screen and (max-width: 1024px) {
    #s-bann {
        background-image: url("/src/img/banner-res.png");
    }

    
    #s-banner-mujeres {
        display: none;
    }

    #s-banner-mujeres-res {
        display: flex;
    }
}