/* =========================================================
   RESET + FIX SCROLL IPHONE
========================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden !important;
  overscroll-behavior-y: none;
  scroll-behavior: smooth;
  background: #ffffff;
  font-family: 'Manrope', sans-serif;
  color: #2b2b2b;
}

/* =========================================================
   CONTENEDOR GLOBAL
========================================================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =========================================================
   HEADER PREMIUM
========================================================= */
.header {
  width: 100%;
  background: #f7e1c8;
  padding: 20px 0;
  position: relative;
  z-index: 2000;
}

.header-container {
  max-width: 1350px;
  margin: auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo + tagline */
.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  width: 150px;
  height: auto;
}

.tagline {
  font-size: 12px;
  letter-spacing: 0.5px;
  margin-top: 4px;
  color: #333;
}

/* Nav */
.header-nav {
  display: flex;
  gap: 35px;
}

.header-nav a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  transition: 0.3s;
}

.header-nav a:hover {
  color: #d38b4c;
}

/* Iconos + CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-right i {
  font-size: 18px;
  color: #222;
  transition: 0.3s;
}

.header-right i:hover {
  color: #d38b4c;
}

.btn-nav {
  padding: 8px 18px;
  border: 1px solid #222;
  border-radius: 30px;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.btn-nav:hover {
  background: #222;
  color: white;
}

/* MOBILE HEADER */
@media (max-width: 850px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .logo {
    width: 170px;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
  }

  .header-right {
    justify-content: center;
  }
}

/* =========================================================
   SECCIÓN QUIÉNES SOMOS
========================================================= */
.quienes-somos {
  width: 100%;
  padding: 130px 40px;
  background: #FAF3E8;
  text-align: center;
}

.qs-acento {
  width: 60px;
  height: 4px;
  background: #F6A654;
  border-radius: 4px;
  margin: 0 auto 25px;
}

.quienes-somos h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #111;
  margin-bottom: 20px;
}

.qs-descripcion {
  max-width: 900px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
}

.qs-valores {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
}

.valor-item h3 {
  font-family: "Manrope", sans-serif;
  color: #F6A654;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 700;
  margin-bottom: 10px;
}

.valor-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

@media(max-width:768px){
  .qs-valores { grid-template-columns: 1fr; }
  .quienes-somos h2 { font-size: 2.4rem; }
}

/* =========================================================
   INTRO SERVICIOS
========================================================= */
.servicios-intro {
  background: linear-gradient(180deg,#FCE7D4 0%, #F8C9A0 100%);
  padding: 120px 12%;
  text-align: center;
}

.titulo-serif {
  font-family: "Playfair Display", serif;
  font-size: 3.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.acento-servicios {
  width: 65px;
  height: 4px;
  background: #F8C9A0;
  margin: 0 auto 25px;
  border-radius: 4px;
}

.servicios-intro p {
  font-size: 1.26rem;
  line-height: 1.75;
  max-width: 900px;
  margin: 0 auto;
  color: #444;
}

/* =========================================================
   SERVICIOS FULLSCREEN
========================================================= */
.servicios-full {
  width: 100%;
  margin: 0;
  padding: 0;
}

.servicio-bloque {
  width: 100%;
  height: 100vh; /* versión estable */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media(max-width:768px){
  .servicio-bloque {
    height: auto !important;
    min-height: 100vh !important;
  }


.servicio-bloque::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.35));
  z-index: 1;
}

.servicio-info {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  color: #fff;
  z-index: 2;
  max-width: 650px;
}

.servicio-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.6);
}

.servicio-info p {
  font-size: 1.35rem;
  color: #f8f8f8;
  text-shadow: 0 3px 6px rgba(0,0,0,0.45);
}

@media(max-width:768px){
  .servicio-bloque {
     height: auto !important;
     min-height: 100dvh !important;
  }
  .servicio-info h2 { font-size: 2.4rem; }
  .servicio-info p { font-size: 1.1rem; }
}

/* =========================================================
   GALERÍA PREMIUM
========================================================= */
.galeria {
  padding: 80px 0;
  text-align: center;
}

.galeria h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin-bottom: 35px;
}

.galeria-grid {
  width: 90%;
  max-width: 1500px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.galeria-item {
  position: relative;
  overflow: hidden;
}

.galeria-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s ease;
}

.galeria-item span {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 12px 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 1rem;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: 0.3s ease;
}

.galeria-item:hover img {
  transform: scale(1.08);
}

.galeria-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:992px){
  .galeria-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width:600px){
  .galeria-grid { grid-template-columns: 1fr; }
  .galeria-item span { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   POR QUÉ ELEGIRNOS
========================================================= */
.why {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.why h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
}

.why-bar {
  width: 50px;
  height: 4px;
  background: #f6a654;
  margin: 0 auto 40px;
  border-radius: 10px;
}

.why-grid {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 30px;
}

.why-item {
  background: #fafafa;
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid #eee;
  transition: .3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

.why-item i {
  font-size: 32px;
  color: #f6a654;
  margin-bottom: 15px;
}

.why-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.why-item p {
  font-size: 14px;
  color: #555;
}

@media(max-width:900px){
  .why-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:600px){
  .why-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACTO
========================================================= */
.contacto-section {
  background: #faf3e8;
  padding: 100px 20px;
  text-align: center;
}

.contacto-container {
  max-width: 700px;
  margin: auto;
}

.contacto-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.7rem;
  margin-bottom: 10px;
}

.contacto-sub {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
}

.btn-wsp {
  background: #25D366;
  color: white;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
}

.btn-wsp:hover {
  background: #1ebc58;
}

/* Form */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #ddd;
  padding: 14px;
  border-radius: 6px;
  transition: 0.2s;
}

.input-box i {
  color: #999;
}

.input-box input,
.input-box textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
}

.textarea-box {
  align-items: flex-start;
}

.btn-enviar {
  background: #f6a654;
  border: none;
  color: white;
  padding: 14px 0;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
}

.btn-enviar:hover {
  opacity: 0.85;
}

.input-box:hover {
  border-color: #f6a654;
}

/* =========================================================
   SUMATE AL STAFF
========================================================= */
.sumate {
  padding: 90px 0;
  background: #FCE7D4;
  text-align: center;
}

.sumate h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.sumate p {
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.sumate .btn-primary {
  background: #F6A654;
  padding: 14px 32px;
  border-radius: 6px;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* =========================================================
   BOTÓN FLOTANTE WHATSAPP
========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #F6A654;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: white;
  text-decoration: none;
  z-index: 9999;
}

.whatsapp-float:hover {
  background: #25D366;
}

/* =========================================================
   CTA FLOTANTE + MODAL
========================================================= */
.cta-presu {
  position: fixed;
  bottom: 100px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: #f6a654;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius:50%;
  font-size: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  cursor:pointer;
  z-index: 9999;
}

.modal-presu {
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  backdrop-filter: blur(3px);
  justify-content:center;
  align-items:center;
  z-index:9998;
}

.modal-content {
  background:white;
  width:90%;
  max-width:420px;
  padding:30px;
  border-radius:18px;
  text-align:center;
  position:relative;
}

.close-presu {
  position:absolute;
  top:12px;
  right:18px;
  font-size:28px;
  cursor:pointer;
}

/* =========================================================
   FOOTER PREMIUM
========================================================= */
.footer {
  background: linear-gradient(to bottom,#1f1f1f,#0f0f0f);
  padding: 40px 0 20px;
  text-align:center;
  color:white;
  margin-top:0;
}

.footer-content {
  max-width:650px;
  margin:auto;
}

.footer-logo img {
  width:130px;
  opacity:0.9;
}

.footer-icons {
  margin:20px 0;
  display:flex;
  gap:25px;
  justify-content:center;
}

.footer-icons i {
  font-size:20px;
  transition:0.3s;
}

.footer-icons i:hover {
  color:#F6A654;
}

.footer-bottom {
  opacity:0.7;
  font-size:14px;
}

/* =========================================================
   ANIMACIONES REVEAL GLOBAL
========================================================= */
.reveal {
  opacity:0;
  transform:translateY(40px);
  transition:0.9s ease;
}

.reveal.visible {
  opacity:1;
  transform:translateY(0);
}

.quienes-somos {
  padding-top: 140px !important;
}
.reveal {
  opacity: 1 !important;
  transform: none !important;
}

