/* =========================
LIGHTBOX
========================= */

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:0.3s ease;
  z-index:5000;
}

.lightbox.show{
  opacity:1;
  visibility:visible;
}

.lightbox img{
  max-width:90%;
  max-height:85%;
  border-radius:20px;
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
}

.lightbox-close{
  position:absolute;
  top:30px;
  right:40px;
  font-size:40px;
  color:white;
  cursor:pointer;
}
/* =========================
GALERÍAS EXPANDIBLES PREMIUM
========================= */

.gallery-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  max-width:1400px;
  margin:60px auto;
  padding:0 8%;
}

.gallery-card{
  background:#ffffff;
  border-radius:30px;
  box-shadow:0 25px 50px rgba(232,169,193,0.18);
  overflow:hidden;
  cursor:pointer;
  transition:0.4s ease;
}

.gallery-card:hover{
  transform:translateY(-8px);
  box-shadow:0 40px 70px rgba(232,169,193,0.28);
}

/* Parte visible */
.gallery-cover{
  padding:60px 30px;
  text-align:center;
}

.gallery-cover h3{
  font-size:1.8rem;
  margin-bottom:10px;
}

.gallery-cover span{
  font-size:0.9rem;
  color:#d88fae;
  font-weight:600;
  background:#fff1f6;
  padding:8px 14px;
  border-radius:999px;
}

/* Parte expandible */
.gallery-expand{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.6s ease;
  padding:0 30px;
}

.gallery-card.active .gallery-expand{
  max-height:1000px;
  padding:30px;
}

/* Grid interno */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.gallery-grid img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:20px;
  transition:0.3s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
}

/* Responsive */
@media(max-width:992px){
  .gallery-cards{
    grid-template-columns:1fr;
  }
}







.servicios-extra-titulo{
    text-align:center;
    margin:60px 0 25px 0;
    font-weight:600;
    color:black;
    letter-spacing:1px;
}

/* =========================
BOTÓN COTIZAR ACORDEÓN
========================= */
.accordion-cta{
    text-align:center;
    margin-top:30px;
}

.btn-cotizar{
    display:inline-block;
    padding:15px 40px;
    background:linear-gradient(135deg,#e8a9c1,#d88fae);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 15px 35px rgba(232,169,193,0.35);
}

.btn-cotizar:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(232,169,193,0.55);
}

/* =========================
ACORDEÓN PRINCIPAL (SERVICIOS) - FIX CORTE
========================= */
.accordion-main{
  margin-top:35px;
}

.accordion-main .accordion-btn{
  background:linear-gradient(180deg, #fff6f9, #fff);
  border:1px solid rgba(232,169,193,0.35);
  box-shadow:0 12px 30px rgba(232,169,193,0.12);
}

.accordion-main .accordion-btn:hover{
  background:linear-gradient(180deg, #fff1f6, #fff);
}

/* Importante: no dependemos de scrollHeight */
.accordion-main .accordion-content{
  overflow:hidden;
  max-height:0;
  padding:0 25px;
  margin-top:10px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 25px rgba(232,169,193,0.15);
  transition:max-height .45s ease;
}



/* LISTA */
.services-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:14px 22px;
}

.services-list li{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fff;
  border:1px solid rgba(232,169,193,0.25);
  border-radius:16px;
  padding:14px 16px;
  font-weight:500;
  color:#333;
  box-shadow:0 10px 25px rgba(232,169,193,0.10);
}

.service-dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#e8a9c1;
  box-shadow:0 0 0 6px rgba(232,169,193,0.18);
  flex:0 0 auto;
}

@media(max-width:600px){
  .services-list{ grid-template-columns:1fr; }
}

/* =========================
SERVICIOS PRINCIPALES PREMIUM
========================= */
.servicios-principales{
    background:#fff6f9;
    padding:45px;
    border-radius:25px;
    max-width:700px;
    margin:40px auto 0 auto;
    box-shadow:0 20px 40px rgba(232,169,193,0.15);
    text-align:left; /* 👈 ahora el contenido se alinea a la izquierda */
}

.servicios-principales h3{
    text-align:center;
    margin-bottom:30px;
    color:#e8a9c1;
    font-weight:600;
    font-size:1.3rem;
}

.servicios-principales ul{
    list-style:none;
    padding:0;
}

.servicios-principales li{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 0;
    font-weight:500;
    font-size:1.05rem;
    border-bottom:1px solid rgba(0,0,0,0.05);
}

.servicios-principales li:last-child{
    border-bottom:none;
}

.servicios-principales li::before{
    content:"✓";
    color:#e8a9c1;
    font-weight:700;
    font-size:1.1rem;
}
/* =========================
MINI GALERÍA ACORDEÓN
========================= */
.mini-gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    margin:30px 0 40px 0;
}

.mini-gallery img{
    width:100%;
    height:140px;
    object-fit:cover;
    border-radius:12px;
    cursor:pointer;
    transition:0.4s ease;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.mini-gallery img:hover{
    transform:scale(1.05);
    box-shadow:0 12px 30px rgba(232,169,193,0.35);
}

/* RESPONSIVE MINI GALERÍA */
@media(max-width:992px){
    .mini-gallery{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .mini-gallery{
        grid-template-columns:1fr;
    }
}


/* =========================
RESET
========================= */
*{
margin:0;
padding:0;
box-sizing:border-box;
scroll-behavior:smooth;
}

body{
font-family:'Montserrat', sans-serif;
background:#ffffff;
color:#222;
}

/* =========================
HEADER + MENU
========================= */
header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
position:sticky;
top:0;
z-index:1000;
border-bottom:1px solid #eee;
}

.logo-container{
display:flex;
align-items:center;
gap:15px;
}

.logo-container img{
height:55px;
}

.brand-name{
font-weight:600;
font-size:1.2rem;
}

.brand-name span{
color:#e8a9c1;
}

nav a{
margin-left:25px;
text-decoration:none;
color:#333;
font-weight:500;
transition:0.3s;
}

nav a:hover{
color:#e8a9c1;
}

/* =========================
HERO
========================= */
.hero{
min-height:90vh;
display:flex;
align-items:center;
padding:80px 8%;
gap:60px;
background:#fff6f9;
}

.hero-text{
flex:1;
}

.hero-text h1{
font-size:3rem;
font-weight:600;
margin-bottom:20px;
}

.line{
width:70px;
height:4px;
background:#e8a9c1;
margin:25px 0;
border-radius:5px;
}

.hero-text p{
font-weight:300;
margin-bottom:30px;
color:#555;
line-height:1.7;
}

/* =========================
HERO SLIDER
========================= */
.hero-slider{
flex:1;
height:550px;
position:relative;
border-radius:25px;
overflow:hidden;
box-shadow:0 20px 40px rgba(232,169,193,0.3);
}

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transition:opacity 1.2s ease-in-out, transform 8s ease;
transform:scale(1);
}

.slide.active{
opacity:1;
transform:scale(1.05);
}

/* =========================
BOTON
========================= */
.btn{
display:inline-block;
padding:14px 35px;
background:#e8a9c1;
color:white;
text-decoration:none;
border-radius:50px;
transition:0.3s;
font-weight:500;
}

.btn:hover{
background:#d88fae;
}

/* =========================
SECCIONES
========================= */
.section{
padding:100px 8%;
text-align:center;
max-width:1100px;
margin:auto;
}

.section h2{
font-size:2rem;
margin-bottom:25px;
font-weight:600;
}

.section p{
color:#555;
line-height:1.8;
font-weight:300;
}

/* =========================
CARDS
========================= */
.cards{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:40px;
margin-top:40px;
}

.card{
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 15px 30px rgba(232,169,193,0.2);
transition:0.4s;
}

.card:hover{
transform:translateY(-8px);
}

.card h3{
margin-bottom:15px;
color:#e8a9c1;
}

/* =========================
ACORDEONES UNIFICADOS
========================= */

.accordion{
  margin-top:20px;
  text-align:left;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.accordion-btn{
  width:100%;
  padding:18px 25px;
  background:#fff6f9;
  border:none;
  font-weight:600;
  font-size:1rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  border-radius:12px;
  transition:0.3s;
}

.accordion-btn:hover{
  background:#f9e3ec;
}

/* CONTENIDO */
.accordion-content{
  max-height:0;
  overflow:hidden;
  transition:max-height 0.45s ease;
  padding:0 25px;
  margin-top:10px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 10px 25px rgba(232,169,193,0.15);
}


/* =========================
GALERIA
========================= */
.gallery{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
margin-top:60px;
}

.gallery img{
width:100%;
height:320px;
object-fit:cover;
border-radius:20px;
cursor:pointer;
transition:0.4s;
box-shadow:0 10px 25px rgba(232,169,193,0.2);
}

.gallery img:hover{
transform:scale(1.04);
}

/* =========================
LIGHTBOX
========================= */
.lightbox{
position:fixed;
inset:0;
background:rgba(0,0,0,0.9);
display:flex;
align-items:center;
justify-content:center;
visibility:hidden;
opacity:0;
transition:0.3s;
z-index:2000;
}

.lightbox img{
max-width:90%;
max-height:85vh;
border-radius:12px;
}

.lightbox.show{
visibility:visible;
opacity:1;
}

/* =========================
FOOTER
========================= */
footer{
background:#f9f9f9;
padding:40px 8%;
text-align:center;
margin-top:80px;
font-size:0.95rem;
color:#666;
}

/* =========================
BOTONES FLOTANTES
========================= */
.float-container{
position:fixed;
bottom:25px;
right:25px;
display:flex;
flex-direction:column;
gap:15px;
z-index:2100;
}

.float-btn{
width:60px;
height:60px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-size:26px;
text-decoration:none;
box-shadow:0 5px 20px rgba(0,0,0,0.25);
transition:0.3s;
}

.float-btn:hover{
transform:scale(1.1);
}

.whatsapp{ background:#25D366; }
.instagram{ background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af,#515bd4); }

/* =========================
RESPONSIVE
========================= */
@media(max-width:992px){

.hero{
flex-direction:column;
text-align:center;
}

.hero-img{
width:100%;
height:350px;
}

.cards{
grid-template-columns:1fr;
}

.gallery{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){

.gallery{
grid-template-columns:1fr;
}

nav{
display:none;
}
}


/* =========================
BOTÓN CTA FINAL GALERÍA
========================= */
.contact-cta{
    margin-top:50px;
    text-align:center;
}

.btn-contacto{
    display:inline-block;
    padding:16px 45px;
    background:linear-gradient(135deg, #e8a9c1, #d88fae);
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:0.3s ease;
    box-shadow:0 15px 35px rgba(232,169,193,0.4);
}

.btn-contacto:hover{
    transform:translateY(-3px);
    box-shadow:0 20px 45px rgba(232,169,193,0.6);
}



/* =========================
GALLERY CARD - HINT CLICKEABLE + ICONO
========================= */

.gallery-cover{
  position:relative;
  padding:60px 30px;
  text-align:center;
}

/* Icono circular arriba (tipo “ver fotos”) */
.gallery-badge{
  width:56px;
  height:56px;
  border-radius:999px;
  margin:0 auto 16px auto;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg, rgba(232,169,193,0.35), rgba(216,143,174,0.25));
  border:1px solid rgba(232,169,193,0.45);
  box-shadow:0 18px 35px rgba(232,169,193,0.25);
}

.gallery-badge i{
  font-size:22px;
  color:#d88fae;
}

/* Texto “Click para ver fotos” */
.gallery-hint{
  margin-top:16px;
  font-size:0.92rem;
  font-weight:600;
  color:#8a8a8a;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,241,246,0.85);
  border:1px solid rgba(232,169,193,0.25);
}

/* Flecha animada */
.gallery-hint .chev{
  width:34px;
  height:34px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid rgba(232,169,193,0.25);
  color:#d88fae;
  transition:transform .25s ease, box-shadow .25s ease;
  box-shadow:0 10px 22px rgba(232,169,193,0.18);
}

/* Hover: que “invite” a click */
.gallery-card:hover .gallery-hint .chev{
  transform:translateY(2px);
  box-shadow:0 14px 26px rgba(232,169,193,0.28);
}

/* Borde / glow suave al hover para que se note clickeable */
.gallery-card{
  position:relative;
}

.gallery-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:32px;
  background:linear-gradient(135deg, rgba(232,169,193,0.35), rgba(216,143,174,0.25));
  opacity:0;
  filter:blur(14px);
  transition:opacity .35s ease;
  z-index:-1;
}

.gallery-card:hover::before{
  opacity:1;
}

/* Cuando está abierto: cambia hint + rota flecha */
.gallery-card.active .gallery-hint{
  color:#d88fae;
}

.gallery-card.active .gallery-hint .chev{
  transform:rotate(180deg);
}

/* Mini “preview” abajo (barrita) para que se entienda que hay contenido */
.gallery-preview-dots{
  margin:22px auto 0 auto;
  display:flex;
  justify-content:center;
  gap:8px;
}

.gallery-preview-dots span{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(216,143,174,0.35);
}

.gallery-card:hover .gallery-preview-dots span{
  background:rgba(216,143,174,0.55);
}
