/* ✅ RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.inter {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
body {
    font-family: "Inter", serif;
}

/* ✅ HEADER */
header {
    width: 100%; /* Asegura que el header ocupe todo el ancho */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    background-color: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.296); /* Sombra suave debajo */
    position: relative; /* Asegura que la sombra se aplique correctamente */
    z-index: 1000; /* Asegura que esté sobre otros elementos */
}


/* ✅ LOGO */
.logo img {
    width: 260px; /* Ajusta según el tamaño necesario */
}

/* ✅ NAVEGACIÓN */
nav {
    display: flex;
    align-items: center;
    
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 40px;
}

.nav-links li a {
    text-decoration: none;
    color: #3F395F;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 1px;
}

/* ✅ MENÚ HAMBURGUESA */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    background: #3f5995;
    height: 3px;
    width: 25px;
    margin: 5px 0;
    transition: 0.3s;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    header {
        padding: 15px 40px;
    }
    .logo img {
        width: 150px;
    }
    .nav-links {
        gap: 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 220px;
        border: 1px solid #ddd;
        padding: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* ✅ ESTILOS DEL BANNER */
.banner-section {
    background-color: white;
    padding: 5% 5%;
    height: 100vh;
}

.banner-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
}

/* ✅ TEXTO */
.banner-content {
    max-width: 50%;
}

.banner-subtitle {
    color: #BE5AA2;
    font-size: 28px;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.banner-title {
    font-size: 50px;
    color: #3F395F;
    font-weight: bold;
    margin-bottom: 20px;
}

/* ✅ BOTÓN */
.banner-btn {
    display: flex;
    align-items: center;
    background-color: #BE5AA2;
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    width: 100%;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    gap: 10px;
    transition: background 0.3s;
    width: 160px;
}

.banner-btn i {
    font-size: 22px;
}

.banner-btn:hover {
    background-color: #9b3e7a;
}

/* ✅ IMAGEN */
.banner-image img {
    max-width: 100%;
    
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .banner-section {
        padding: 40px;
        height: 100%;
        padding-bottom: 0px !important;
    }

    .banner-container {
        flex-direction: column;
        text-align: center;
    }

    .banner-content {
        max-width: 100%;
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner-btn {
        justify-content: center;
    }

    .banner-image img {
        max-width: 80%;
    }
}

/* ✅ SECCIÓN ACERCA DE MÍ */
.about-section {
    background: rgb(255,255,255);
background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(251,243,251,1) 30%, rgba(255,240,250,1) 32%, rgba(255,241,251,1) 40%, rgba(243,234,255,1) 90%, rgba(233,221,255,1) 100%);
    padding: 80px 50px;
    text-align: center;
    position: relative;
}

/* ✅ TÍTULO CON SUBRAYADO */
.about-title {
    font-size: 40px;
    font-weight: bold;
    color: #3F395F;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.about-title::after {
    content: "";
    display: block;
    width: 290px;
    height: 4px;
    background: #BE5AA2;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ✅ IMAGEN DE PERFIL */
.about-image {
    width: 120px;
    height: auto;
    
   
    margin: 0 auto 20px;
    
    ;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ✅ PÁRRAFO DE INTRODUCCIÓN */
.about-intro {
    font-size: 21px;
    color: #3F3A60;
    max-width: 800px;
    margin: 0 auto 30px;
    font-weight: 300;
}

/* ✅ CONTENIDO EN DOS COLUMNAS */
.about-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1500px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    font-size: 18px;
    font-weight: 300;
    color: #3F3A60;
    line-height: 1.6;
    text-align: left;
    max-width: 650px;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-section {
        
        padding-top: 30px;
    }
    .about-text {
        max-width: 100%;
    }
}
/* ✅ SECCIÓN DE COMPROMISO */
.commitment-section {
    background: url('img/Rectangle\ 69.png') center/cover no-repeat;
    position: relative;

    text-align: center;
}

/* ✅ CAPA OSCURA SOBRE LA IMAGEN */
.commitment-overlay {

    padding: 100px;
    max-width: 100%;
}

/* ✅ TEXTO */
.commitment-text {
    color: white;
    font-size: 22px;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ✅ RESPONSIVE */
@media (max-width: 768px) {
    .commitment-text {
        font-size: 18px;
        padding: 0 10px;
    }
}


/* ✅ SECCIÓN MISIÓN */
.mission-section {
    padding: 80px 60px;
    background-color: white;
}

.mission-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ✅ IMAGEN REDONDEADA */
.mission-image {
    flex: 1;
    max-width: 50%;
}

.mission-image img {
    width: 100%;
    object-fit: cover;
    position: relative;
    right: 30%;
}

/* ✅ CONTENIDO */
.mission-content {
    flex: 1;
    max-width: 50%;
}

/* ✅ TÍTULOS */
.mission-title, .values-title {
    color: #BE5AA2;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* ✅ TEXTO */
.mission-text {
    font-size: 20px;
    font-weight: 300;
    color: #3F3A60;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ✅ LISTA DE VALORES */
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 20px;
    color: #3F3A60;
    font-size: 20px;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* ✅ ICONOS */
.values-list i {
    color: #b2558d;
    font-size: 18px;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-image, .mission-content {
        max-width: 100%;
    }

    .values-list li {
    
    }
}

/* ✅ CONTENEDOR DE TARJETAS */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* ✅ TARJETA DE SERVICIO */
.service-box {
    background: #f2f2f2;
    border: 4px solid #b2558d;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-box:hover {
    transform: translateY(-5px);
    background: #ffffff;
}

/* ✅ ICONO DEL SERVICIO */
.service-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* ✅ TEXTO DEL SERVICIO */
.service-name {
    font-size: 18px;
    color: #2d264b;
    font-weight: bold;
}
.service-box.ultima {
    position: relative;
    left: 162%;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-box.ultima {
        position: relative;
        left: 0 !important;
    }
    
    
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-box.ultima {
        position: relative;
        left: 0;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* ✅ SECCIÓN DE PAQUETES */
.packages-section {
    background: 
        linear-gradient(to bottom, rgba(252, 119, 185, 0.792), rgba(210, 210, 255, 0.6)), /* overlay rosado a blanco */
        url('img/opiniones\ _page-0001.jpg') center/cover no-repeat;
    padding: 100px 50px;
    text-align: center;
    position: relative;
}


/* ✅ TÍTULO PRINCIPAL */
.packages-title {
    font-size: 35px;
    font-weight: bold;
    color: white;
    margin-bottom: 10%;
    position: relative;
    z-index: 2;
}
.packages-titles {
    font-size: 40px;
    font-weight: 800;
    color: rgb(0, 0, 0);
    margin-bottom: 2%;
    position: relative;
    z-index: 2;
}
.juntitos{
    display: flex;
    justify-content: center;
}
.packages-titles::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #BE5AA2;
    margin: 8px auto 0;
    border-radius: 2px;
}
.packages-title::after {
    content: "";
    display: block;
    width: 100px;
    height: 4px;
    background: #BE5AA2;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ✅ CONTENEDOR DE TARJETAS */
.packages-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

/* ✅ TARJETAS */
.package-card {
    display: flex;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: space-evenly;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 300px;
    border: 2px solid #DA5CA1;
    position: relative;
    transition: transform 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
}

/* ✅ TARJETA DESTACADA (PLUS) */


/* ✅ ENCABEZADO DESTACADO */
.package-header {
    background: #DA5CA1;
    color: white;
    padding: 20px;
    font-size: 25px;
    font-weight: 800;
    border-radius: 15px 15px 0 0;
    position: relative;
    top: -4%;
}

/* ✅ TÍTULOS */
.package-title {
    font-size: 25px;
    font-weight: 800;
    color: #DA5CA1;
    margin-bottom: 15px;
}

/* ✅ LISTA DE SERVICIOS */
.package-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.package-list {
    display: flex;
    flex-direction: column;
    font-weight: 300;
    color: #3F395F;
    list-style: none;
    align-items: flex-start;
    padding: 0;
    margin-bottom: 20px;
    gap: 10px;
}
.featured {
    position: relative;
    transform: scale(1.1);
    padding: 0px 0px 20px 0px;
   
}
ul.package-list.listongo {
    margin-left: 10%;
    margin-bottom: 20%;
}

/* ✅ ICONOS */
.package-list i {
    color: #DA5CA1;
    font-size: 18px;
}

/* ✅ BOTÓN */
.package-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #ffffff;
    color:  #DA5CA1;
    font-weight: bold;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s;
    margin: 0px 24px;
    border: 2px solid #DA5CA1;
}
.package-btn:hover {
    background: #DA5CA1;
    color: #ffffff;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .packages-container {
        flex-direction: column;
        align-items: center;
    }

    .package-card {
        max-width: 80%;
    }

    .featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .package-card {
        max-width: 100%;
    }
}

/* ✅ SECCIÓN CONTACTO */
.contact-section {
    background: url(img/listo.png) center/cover no-repeat;
    padding: 80px 50px;
    border-radius: 30px 30px 30px 30px;
    text-align: center;
}

/* ✅ TÍTULO */
.contact-title {
    font-size: 36px;
    font-weight: 800;
    color:#3F395F;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    
}

.contact-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: white;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ✅ CONTENEDOR PRINCIPAL */
.contact-container {
    display: flex;
    justify-content: space-between;

    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* ✅ INFORMACIÓN Y MAPAS */
.contact-info {
    flex: 1;
    text-align: left;
    color: #3F395F;
}

.contact-profile img {
    width: 100%;
    max-width:100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* ✅ MAPAS */
.contact-maps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    border: none;
}

/* ✅ FORMULARIO */
.contact-form {
    flex: 1;
  
    padding: 20px;
    border-radius: 15px;
    
}

/* ✅ CAMPOS DEL FORMULARIO */
.input{
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border-radius: 20px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    outline: none;

}

.textarea {
    width: 100%;
    height: 180px;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 20px;
    border: none;
    background: #f5f5f5;
    font-size: 16px;
    outline: none;
}

/* ✅ CAMPOS PEQUEÑOS */
.form-group {
    display: flex;
    gap: 10px;
}

.small {
    max-width: 120px;
}

/* ✅ BOTÓN DE ENVÍO */
.contact-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #b2558d;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-btn:hover {
    background: #9b3e7a;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .contact-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-info, .contact-form {
        max-width: 100%;
    }
}
.blanco{
    padding: 10%;
}
/* ✅ FOOTER */
.footer {
    background: #2d264b;
    color: white;
    padding: 40px 50px;
    position: relative;
}

/* ✅ CONTENEDOR PRINCIPAL */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* ✅ COLUMNA IZQUIERDA (LOGO) */
.footer-left {
    flex: 1;
    text-align: left;
}

.footer-logo {
    width:  265px;
    margin-bottom: 10px;
}

.footer-specialty {
    font-size: 16px;
    opacity: 0.8;
}

/* ✅ COLUMNA CENTRO (CONTACTO) */
.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center p {
    margin: 5px 0;
    font-size: 18px;
}

.footer-center i {
    color: #e68ac6;
    margin-right: 8px;
}

.footer-rights {
    margin-top: 10px;
    font-size: 14px;
    opacity: 0.7;
}

/* ✅ COLUMNA DERECHA (REDES SOCIALES) */
.footer-right {
    flex: 1;
    text-align: right;
   
}

.footer-social-title {
    font-size: 18px;
    font-weight: bold;
}

.footer-social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 10px;
    margin-right: 52px;
}

.social-icon {
    font-size: 30px;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #e68ac6;
}

/* ✅ IMAGEN DECORATIVA PEGADA AL FONDO */
.footer-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    opacity: 0.8;
}
.finolin{
    position: relative;
    z-index: 100;
    right: 6%;

}
.finolin2{
    position: absolute;
    z-index: 100;
    right: 0%;

}
.junto{
    display: flex;
    font-weight: 600;
    justify-content: center;
    align-items: center;
}

/* ✅ RESPONSIVE */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-left, .footer-center, .footer-right {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .footer-decoration {
        width: 100px;
    }
}

@media (max-width: 768px) {
    .footer-decoration {
        width: 80px;
    }
    .blanco {
        padding: 1%;
    }
    .finolin {
        position: relative;
        z-index: 100;
        right: 12%;
        width: 84px;
        margin-top: -75px;
    }
    .finolin2 {
        position: absolute;
        z-index: 100;
        right: 0%;
        width: 84px;
        top: -9%;
    }
    .commitment-overlay {
        padding: 50px;
        max-width: 100%;
    }
}
.whatsapp-btn {
    position: fixed;
    z-index: 200;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover */
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.4);
}
