@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');
    
body {
    font-family: 'Raleway', sans-serif;
    color: #333;
    background-color: #fef6f9;
    /*position: relative;
    min-height: 100vh;*/
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

.hero-section {
    /*background-color: #ffd6e6;*/
    background-color: #fff;
    min-height: 80vh;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e94b88;
}

#inicio {
    background-color: #fff;

    /*background-color: #ffd6e6;*/
}
.fondorosa {
    /* background-color: #ffd6e6; */
    background-color: #d13b76;
    color: white;

}
.text-blanco-600 {
   /* color:#ffd6e6;*/

    color:#fff;
    font-weight: 600;
}
.todo:hover{
    color:#ffd6e6;

}
/*
.text-blanco-600:hover {
    color:#ffd6e6;
    font-weight: 600;
} */
.text-blanco-100 {
    color:#ffd6e6;

    /*color:#fff;*/
    font-weight: 100;
}
/*
.text-blanco-100:hover {
    color:#ffd6e6;
    font-weight: 100;
} */

.btn-primary {
    background-color: #e94b88;
    color: white;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d13b76;
    transform: translateY(-2px);
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.testimonial-card {
    background-color: white;
    border-left: 4px solid #e94b88;
}

.contact-info i {
    color: #e94b88;
}

.appointment-form input,
.appointment-form textarea,
.appointment-form select {
    border: 1px solid #ffc2d8;
    transition: all 0.3s ease;
}

.appointment-form input:focus,
.appointment-form textarea:focus,
.appointment-form select:focus {
    border-color: #e94b88;
    outline: none;
    box-shadow: 0 0 0 2px rgba(233, 75, 136, 0.2);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #e94b88;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.footer {
    background-color: #4a2c40;
    bottom: 0;

    /*position: absolute;
    width: 100%;*/
}

#politicas___visibles{
    display: none;
}
.politicas_no{
    display: none;
    
}
.politicas_si{
    display: block;
}
.exito{
    color: green;
    text-align: center;
    margin:auto; 
    padding: 1rem;
}
#politicas___visibles {
    font-size: 0.9rem;

}
/* whatsapp *********************/
 /* Botón flotante moderno */
 .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    }
   
    .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
    }
   
    .whatsapp-float img {
    width: 40px;
    height: 40px;
    }
   
    /* Opcional: animación de entrada */
    @keyframes floatIn {
    0% { transform: translateY(100px) scale(0); opacity: 0; }
    60% { transform: translateY(-10px) scale(1.1); opacity: 1; }
    100% { transform: translateY(0) scale(1); }
    }
   
    .whatsapp-float {
    animation: floatIn 0.8s ease forwards;
    }
/*  whatsapp */