*,
*::before,
*::after{

    box-sizing:border-box;

}
body {

    width:100%;

    overflow-x:hidden;
 margin: 0;
 font-family: 'Segoe UI', sans-serif;
 background: linear-gradient(to right, #f8f3ff, #fff0f6);
}

.hero {
    position: sticky;

    top: 0;
    left: 0;

    width: 100%;

     box-sizing:border-box;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 5px;

    background: linear-gradient(
        to right,
        #2e153f,
        #5a267d,
        #7c4bb0
    );

    color: white;
    overflow:visible;
    z-index: 1000;
}

.hero-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex:1
}

.hero-foto {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid rgba(255,255,255,0.7);
}


.hero-texto h1 {
    margin: 0;

    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 600;

    color: white;
    line-height: 1;
}

.hero-texto p {
    margin-top: 5px;
    color: #666;
}

/* SECCIONES */
.section {
 padding: 40px 20px;
}

.page_body{
    width:100%;
    max-width:900px;
    margin:0 auto;
    padding:10px 20px;
    box-sizing:border-box;
    text-align:center;
}
.page_body h1 {
 color: #6a2c91;
}
.page_body p {
 text-align: left;
}


.page-title {
    text-align: center;
    font-family: 'Lora', serif;
    font-size: 3.3rem;
    font-weight: 600;
    color: #6a2c91;
    margin: 35px 0 25px;
    letter-spacing: 1px;
    font-weight: 700;
}

/* TERAPIA DESTACADA */
.highlight {
 background: linear-gradient(135deg, #6a2c91, #c9a7eb);
 color: white;
 padding: 30px;
 border-radius: 20px;
 margin: 0 30px 40px 30px;
 position: relative;
 
}

.titulo-centro {
    
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.3rem;
    font-weight: 600;
    color: #6a2c91;
    margin: 35px 0 25px;
    letter-spacing: 1px;

}

/* ETIQUETA */
.badge {
 position: absolute;
 top: 10px;
 right: 10px;
 background: gold;
 padding: 5px 10px;
 border-radius: 15px;
 font-size: 12px;
}

/* SERVICIOS */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding-left: 30px;
    padding-right: 30px;
}

.card {
 background: white;
 padding: 20px;
 border-radius: 15px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* CERTIFICADO */
.certificado {
 text-align: center;
 margin: 40px 0;
}

.certificado img {
 width: 260px;
 margin: 0;
 display: block;
 margin-left: auto;
 margin-right: auto;
 transition: transform 0.3 ease;
}

.certificado img:hover{
    transform: scale(1.03);
}


/* sobre mi */
.lessa {
 text-align: center;
 margin: 40px 0;
}

.lessa img {
 width: 100%;
 height: auto;
 margin: 0;
 display: block;
 margin-left: auto;
 margin-right: auto;
 transition: transform 0.3 ease;
}

.lessa img:hover{
    transform: scale(1.03);
}

.masage {
 text-align: center;
 margin: 40px 0;
}

.masage img {
 width: 60%;
 height: auto;
 margin: 0;
 display: block;
 margin-left: auto;
 margin-right: auto;
 transition: transform 0.3 ease;
}

.masage img:hover{
    transform: scale(1.03);
}

/* CONTACTO */
.contact {
    background: #6a2c91;
    color: white;
    padding: 40px 30px;
    margin-top: 50px;
}

input, select, textarea {
 width: 100%;
 margin: 8px 0;
 padding: 10px;
 border-radius: 10px;
 border: none;
 box-sizing: border-box;
}

button {
 width: 100%;
 padding: 12px;
 border-radius: 20px;
 border: none;
 background: #25D366;
 color: white;
 font-size: 16px;
}
.dropdown {
    position: relative;
    display: inline-block;
     z-index: 10001;
}
.dropdown-btn {
    width: 40px;
    height: 40px;

    background: transparent;
    border: none;

    color: white;
    font-size: 24px;

    cursor: pointer;

    margin-top: -100px;
    padding: 0;

}
/* Botón 
.dropdown-btn,
.btn-home {
    background: #6a2c91;
    color: white;

    width: 60px;
    height: 60px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 8px;
    cursor: pointer;

    text-decoration: none;
    box-sizing: border-box;
}
.dropdown-btn {
    font-size: 32px;
}

.btn-home svg {
    width: 32px;
    height: 32px;
}
.btn-home svg {
    width: 36px;
    height: 36px;
}

/* Contenedor */

#contenedor-dropdown {
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
   
}


/* Menú oculto */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;

    background: white;
    min-width: 180px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-radius: 10px;

    overflow: hidden;
    margin-top: 8px;

    animation: fadeIn 0.2s ease;
    z-index: 10002;
}

/* Opciones */
.dropdown-content a {
  display: block;
  padding: 12px;
  text-decoration: none;
  color: #333;
  transition: background 0.2s;
}

.dropdown-content a:hover {
     background: #6a2c91;

}

/* Animación */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(-10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Mostrar menú */
.show {
  display: block;
}

/* FOOTER */
footer {
 text-align: center;
 padding: 15px;
 background: #333;
 color: white;
}

.faq details {
  border-bottom: 1px solid #ddd;
   padding: 0 20px;
}

.faq summary {
    display: flex;
    justify-content: space-between;
    align-items: center;

    cursor: pointer;
    font-weight: 500;
    list-style: none;

    gap: 15px;
}

.faq summary::after {
    content: "＋";
    flex-shrink: 0;

    font-size: 24px;
    font-weight: 300;
    color: #6a2c91;
}

.faq details[open] summary::after {
    content: "−";
}

.faq summary::-webkit-details-marker {
  display: none;
}



.faq details[open] summary::after {
  content: "−";
}

.faq p {
  margin-top: 10px;
  color: #555;
}

.titulo-enlace {
    color: inherit;          /* Usa el mismo color del h1 */
    text-decoration: none;   /* Quita el subrayado */
    font: inherit;           /* Hereda fuente, tamaño, peso, etc. */
}


@media (max-width: 768px) {

    .hero {
        padding: 5px;
    }

    .hero-foto {
        width: 60px;
        height: 60px;
    }

    .hero-texto h1 {
        font-size: 2rem;
    }

    .hero-info {
        gap: 10px;
    }

    .titulo-centro {
        font-size: 2.5rem;
    }

    .mapa iframe{
        height:300px;
    }
.hero-banner{

    height:70vh;

    min-height:500px;

}

    .hero-banner img{

        object-position:center top;

    }



    

}
.whatsapp-float {

    position: fixed;

    bottom: 20px;
    right: 20px;

    width: 60px;
    height: 60px;

    background: #25D366;
    color: white;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    text-decoration: none;

    box-shadow: 0 4px 15px rgba(0,0,0,0.2);

    z-index: 9999;
}

.titulo-contacto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.whatsapp-contacto {
    background: #25D366;
    color: white;

    padding: 8px 12px;
    border-radius: 20px;

    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
}


.titulo-card {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 10px 0 15px;
    line-height: 1.2;
}


.mapa{
    width:100%;
    margin:30px 0;
    border-radius:20px;
    overflow:hidden;
}

.mapa iframe{
    display:block;
    width:100%;
    height:400px;
    border:0;
}


.hero-banner{

    position:relative;

    width:100%;

    height:80vh;

    min-height:650px;

    overflow:hidden;

    background:#000;
    z-index: 1;

}

.slider-container{

    position:absolute;

    inset:0;

    overflow:hidden;

    perspective:1800px;

    transform-style:preserve-3d;
     z-index: 0;

}

.slide{

    position:absolute;

    inset:0;

    overflow:hidden;

    transform-style:preserve-3d;

    will-change:transform;
     isolation:isolate;

}

.slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    backface-visibility:hidden;

    transform-origin:center center;

    will-change:transform,opacity;

    user-select:none;

    pointer-events:none;
    image-rendering:auto;

}

.actual{

    z-index:2;

}

.siguiente{

    z-index:1;

}




.hero-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    color:white;

    z-index:10;

    padding:20px;
}



.slider-container,
.slide,
.slide img{

    transform:translateZ(0);

    -webkit-transform:translateZ(0);

}

.hero-overlay h2{

    font-size:clamp(2.3rem,6vw,5rem);

}

.hero-overlay p{

    font-size:clamp(1rem,2vw,1.5rem);

}
.hero-btn{

      display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:40px;

    padding:14px 32px;

    font-size:clamp(1rem,1.2vw,1.15rem);
    font-weight:600;

    color:#fff;
    text-decoration:none;

    border-radius:999px;

    /* Glassmorphism */
    background:rgba(123,75,176,.28);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);

    border:1px solid rgba(255,255,255,.28);

    box-shadow:
        0 10px 30px rgba(0,0,0,.20),
        inset 0 1px 0 rgba(255,255,255,.22);

    transition:all .35s ease;
}

.hero-servicios{

    display:flex;
    flex-wrap:wrap;
    justify-content:center;

    margin-top:30px;

    max-width:900px;

    color:#ffffff;

    font-size:1rem;

    font-weight:500;

    text-shadow:0 2px 8px rgba(0,0,0,.8);

    z-index:20;
}

.hero-servicios .punto{

    color:#cfa8ff;

    font-size:1.3em;

    margin:0 3px;
}

.hero-servicios span{

    padding:4px 10px;

    border-radius:20px;

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(6px);
}

.slider-test-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    position:absolute;
    bottom:25px;

    width:38px;
    height:38px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.30);

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(8px);

    color:#fff;

    font-size:16px;

    opacity:.45;

    cursor:pointer;

    transition:.35s;

    z-index:100;

}

.prev{
    left:25px;
}

.next{
    right:25px;
}

.slider-test-btn:hover{

    opacity:1;

    transform:scale(1.12);

    background:rgba(201,167,235,.25);

    border-color:rgba(255,255,255,.7);

    box-shadow:
        0 0 15px rgba(201,167,235,.45);

}

.contacto-destacado{

    text-align:center;

    font-size:1.4rem;

    font-weight:600;

    margin-top:15px;

    margin-bottom:10px;

}

.contacto-texto{

    max-width:650px;

    margin:0 auto 30px;

    text-align:center;

    line-height:1.7;

    font-size:1.05rem;

    color:rgba(255,255,255,.92);

}

.btn-whatsapp-principal{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:14px;

    width:fit-content;

    margin:0 auto;

    padding:16px 34px;

    background:#25D366;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-size:1.15rem;

    font-weight:600;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.18);

}

.btn-whatsapp-principal:hover{

    transform:translateY(-3px);

    box-shadow:0 16px 35px rgba(0,0,0,.25);

}

.btn-whatsapp-principal i{

    font-size:1.8rem;

}

.contacto-separador{

    display:flex;

    align-items:center;

    margin:40px auto 25px;

    max-width:500px;

    color:rgba(255,255,255,.75);

}

.contacto-separador::before,
.contacto-separador::after{

    content:"";

    flex:1;

    height:1px;

    background:rgba(255,255,255,.25);

}

.contacto-separador span{

    margin:0 15px;

    font-size:.95rem;

}

.contacto-formulario{

    text-align:center;

    margin-bottom:25px;

    color:rgba(255,255,255,.9);

}


.hero-banner,
.slider-container,
.slide{

    width:100vw !important;
    max-width:100vw !important;
    left:0;
    right:0;

}

.telefono-enlace{

    color: inherit;

    text-decoration: none;

    font-weight: 600;

    transition: .3s;

}

/*=========================================
=        TARJETAS DE CONTACTO MINIMAL
=========================================*/

.contact-info{

    display:flex;
    flex-direction:column;
    align-items:center;

    gap:22px;

    margin-top:40px;

}

.contact-item{

    display:flex;
    align-items:center;

    gap:14px;

    color:rgba(255,255,255,.92);

    text-decoration:none;

    transition:.3s;

}

.contact-item i{

    width:20px;

    text-align:center;

    color:#d7b6ff;

    font-size:18px;

}

.contact-item span{

    font-size:1.02rem;

    line-height:1.5;

}

.contact-item:hover{

    color:white;

}

.contact-item:hover i{

    color:white;

}

@media (min-width:1200px){

    .services,
    .page_body,
    .highlight,
    .reviews,
    .contact{

        max-width:1200px;

        margin-left:auto;
        margin-right:auto;

    }

}

@media (min-width:1024px){

    .contact form{

        max-width:700px;

        margin:40px auto 0;

        padding:40px;

        background:rgba(255,255,255,.06);

        backdrop-filter:blur(10px);
        -webkit-backdrop-filter:blur(10px);

        border:1px solid rgba(255,255,255,.12);

        border-radius:24px;

        box-shadow:0 20px 40px rgba(0,0,0,.15);

    }

     .hero{

        padding:6px 30px;

    }

    .hero-foto{

        width:60px;
        height:60px;

    }

    .hero-texto h1{

        font-size:2.4rem;

        letter-spacing:.5px;

    }

        .card-about{

        height:340px;

    }

}

.card-about{

    position:relative;

    overflow:hidden;

    padding:0;

}

.card-about img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:transform .6s ease;

}

.card-about-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:28px;

    background:linear-gradient(
        transparent 45%,
        rgba(0,0,0,.75) 100%
    );

}

.card-about h3{

    color:white;

    font-size:1.8rem;

    margin-bottom:6px;

}

.card-about span{

    color:rgba(255,255,255,.85);

    display:flex;

    align-items:center;

    gap:8px;

}

.card-about:hover img{

    transform:scale(1.06);

}

.card-about:hover i{

    transform:translateX(6px);

}