

/* 🔁 Reset de márgenes y cajas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔤 Fuente general */
body {
  font-family: 'Host Grotesk', sans-serif;
  background-color: #EEDFCF;
  color: #5b3d2b;
  line-height: 1.6;
  padding-top: 70px;
}


/* Fuente Subtitulo */
h2 {
  font-family: 'Allura', cursive;
  font-size: 2.8rem;
  font-weight: normal;
  color: #5a3e2b;
}

/* 🧱 Estructura del header */
header {
  border-bottom: 1px solid #EEDFCF;
  background-color: #EEDFCF;
  position: fixed;      /* Lo deja fijo en la ventana */
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;         /* mismo alto que ya tenés */
  z-index: 9999;        /* asegura que quede por encima de todo */
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1rem 2rem;
  height: 70px;
  max-width: 100%;
  font-weight: lighter;
}

/* Logo a la izquierda */
.logo-img {
  height: 40px;
  object-fit: contain;
  display: block;
}


.logo a {
  text-decoration: none;
  color: rgb(138, 110, 90);
  font-weight: bold;
  font-size: 1.5rem;
}

.logo a:hover {
  opacity: 0.8;
}

/* Menú centrado */
.menu {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

/* 📋 Enlaces del menú */
.menu a{
  text-decoration: none;
  color: #5b3d2b;
  font-weight: bold;
  font-size: 1.2rem;
  font-weight: lighter;
}

.presupuesto-link-container a {
  text-decoration: none;
  color: #5b3d2b;
  font-weight: bold;
  font-size: 1.2rem;
  padding-top: 2rem;
}

.menu a:hover,
.presupuesto-link-container a:hover {
  color: #000;
}

/* Contenedor del botón de presupuesto a la derecha */
.presupuesto-link-container {
  margin-left: auto;
}

/* 📸 Sección principal con fondo */
.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.imagen-hero {
  width: 100%;
  height: auto;
  border-radius: 8px;
  padding-left: 1rem;  
  padding-right: 1rem;
  max-height: 850px; /* ajustá el valor según lo que te guste */
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;            /* ocupa todo el alto del viewport */
  }

  .imagen-hero {
    height: 100%;             /* llena la sección */
    width: 100%;
    object-fit: cover;        /* recorta para cubrir todo */
    object-position: 65% 50%; /* centra la parte visible */
  }
} 


/* FLECHA */
.scroll-down {
  display: none;
}

@media (max-width: 768px) {
  .scroll-down {
    display: block;
    position: absolute;
    bottom: 20px;             /* espacio desde abajo */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.8;
    animation: bounce 2s infinite;
  }

  .scroll-down svg {
    stroke: #fff;             /* color de la flecha */
    width: 40px;
    height: 40px;
  }

  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(6px); }
    60% { transform: translateX(-50%) translateY(3px); }
  }
}


/* ✏️ Título principal */
.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* 🖼️ Galería en grilla responsive */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

/* 📬 Estilo de formulario */
form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;                       /* top/right/bottom/left = 0 */
  background-color: rgba(0,0,0,0.6);
  z-index: 100;
}

/* --------------------------------------------------------- */
/*  Panel deslizable desde la derecha                        */
/* --------------------------------------------------------- */
/* panel full-screen */
.modal .panel {
  position: fixed;
  top: 0;
  right: 0;                  /* siempre a la derecha */
  width: 100vw;              /* ocupa todo el ancho */
  height: 100vh;             /* ocupa toda la altura */
  background: #000000;         
  color: #ffffff;               
  overflow-y: auto;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.7s ease;
}

/* al abrir, lo traemos */
.modal.open .panel {
  transform: translateX(0);
}

/* cabecera */
.modal .panel h2 {
  font-family: 'Host Grotesk', sans-serif;
  font-style: normal; 
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
  padding: 2rem;
  padding-top: 80px;
}

.modal .panel form {
  max-width: 400px;     /* ancho fijo razonable */
  margin: 0 auto;       /* lo centra horizontalmente */
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #ffffff;
}

/* cierre (“X”) */
.modal .panel .cerrar {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
  color: #ccc;
  padding-top: 70px;
}

.modal .panel .cerrar:hover {
  color: #fff;
}

/* inputs y textarea */
.modal .panel input,
.modal .panel textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid #ffffff;
  padding: 0.8rem 0;
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-family: 'Host Grotesk', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.modal .panel input:focus,
.modal .panel textarea:focus {
  border-color: #fff;
}

/* placeholder más tenue */
.modal .panel ::placeholder {
  color: rgba(255,255,255,0.5);
}

/* checkbox y label */
.modal .panel label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 1.5rem;
}
.modal .panel input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* botón enviar */
.modal .panel .enviar {
  width: 100%;
  padding: 1rem;
  background: #ffffff;
  color: #000000;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 1rem;
}
.modal .panel .enviar:hover {
  background: #aaa;
}

/* “Cerrar” textual */
.modal .panel .cerrar-texto {
  display: block;
  text-align: center;
  color: #aaa;
  margin-top: 1rem;
  cursor: pointer;
}
.modal .panel .cerrar-texto:hover {
  color: #fff;
}


/*<!--Sección Presentacion Perpecta-->*/
.intro-hero {
  display: grid;
  grid-template-columns: minmax(900px, 560px) auto; /* ancho legible para el bloque de texto */
  align-items: center;
  column-gap: clamp(.5rem, 1.5vw, 1rem);           /* separación real entre ambos */
  justify-content: center;                          /* los trae al centro, no a los bordes */
  background: #EEDFCF;
  color: #5b3d2b;
  padding: clamp(3rem, 6vw, 6rem) clamp(1rem, 5vw, 6rem); /* antes 25rem */
  font-family: 'Host Grotesk', sans-serif;
}

.intro-copy { text-align: center; justify-self: start; }
.intro-emblem{
  margin: 3;
  justify-self: start;  /* empuja el logo hacia el centro (ANTES estaba end) */
}

.intro-title {
  margin: 0;
  text-transform: uppercase;
  line-height: 1.25;
  font-size: clamp(1.2rem, 1.2rem + 2.2vw, 2.4rem);
  font-weight: 500;
}

.intro-title .line1 {
  display: inline-block;
  letter-spacing: .15em;   /* ajustás tracking */
  word-spacing: .25em;     /* más aire entre palabras */
}

.intro-title .line2 {
  display: inline-block;
  font-weight: 800;        /* más pesada */
  letter-spacing: .06em;
}

/* contenedor del logo 3D */
.intro-emblem {
  margin: 0;
  justify-self: end;
}

.intro-logo3d {
  width: clamp(160px, 22vw, 360px);
  height: auto;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 992px){
  .intro-hero {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
  }
  .intro-emblem { justify-self: center; }
  .intro-copy { text-align: center; }
  .intro-title {
    font-size: clamp(1.1rem, 4.2vw, 1.6rem);
    letter-spacing: .07em;
  }
  .intro-logo3d { width: clamp(160px, 42vw, 260px); margin-top: 1.25rem; }
}

@media (max-width: 420px){
  .intro-title { font-size: 1.1rem; }
  .intro-logo3d { width: 200px; }
}




/* Sección Collage Loop */

.loop-contenedor {
  width: 100%;
  overflow: hidden;
  background-color: #EEDFCF;
  padding: 3rem 0;
  position: relative;
}

.loop-scroll {
  display: flex;
  width: max-content;
  animation: scrollLoop 40s linear infinite;
}

.loop-scroll img {
  height: auto;
  width: 100vw;
  flex-shrink: 0;
}

@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}


.boton-ver-proyectos {
  display: inline-block;
  padding: 0.6rem 3rem;
  border: 2px solid #5B3A2B;
  border-radius: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #5B3A2B;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Host Grotesk', sans-serif; /* si ya lo cargaste */
  
}

.boton-ver-proyectos:hover {
  background-color: #5B3A2B;
  color: #EEDFCF;
  cursor: pointer;
}

.boton-centro {
  text-align: center;
  margin-top: 3rem;
}




/* === Sección de Zoom Inverso === */
/* Contenedor de toda la sección: altura > viewport para poder scrollear */
.zoom-out-section {
  height: 100vh;
  position: relative;
  background: #EEDFCF;
  overflow: hidden;
}

/* Hace sticky el wrapper mientras scroll < 100vh */
.zoom-out-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* La imagen que va a hacer zoom */
.zoom-img {
  width: 100%;
  height: auto;
  transform: scale(1.8);        /* punto de partida */
  transition: transform 0.5s ease-out;
  will-change: transform;
  border-radius: 40px;

}

/* Overlay final (texto + logos), oculto hasta el final */
.zoom-final-overlay {
  position: absolute;
  top: 25%;              /* Ajusta este porcentaje para que el texto arranque justo donde lo quieres */
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  opacity: 0;            /* Tu JS o IntersectionObserver sigue gestionando la aparición */
  transition: opacity 0.8s ease;
}

.zoom-caption {
  color: #5b3d2b;
  text-align: center;
  font-family: 'Host Grotesk', sans-serif;
  margin: 0;  
}

.zoom-caption h2 {
  margin: 0;
  font-size: 3rem;
  font-family: 'Host Grotesk', sans-serif;
}

.zoom-caption p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
}

.zoom-logos {
  display: flex;
  gap: 4rem;
  margin-top: 28rem;
}

.zoom-logos img {
  max-height: 40px;
  filter: none;
}



@media (max-width: 768px) {
  .zoom-out-section {
    height: auto;
    padding: 2rem 0;
  }

  .zoom-out-sticky {
    position: relative;
    height: auto;
    flex-direction: column;
    align-items: center;
  }

  .zoom-img {
    transform: scale(1); /* sin zoom en mobile */
    width: 90%;
    border-radius: 20px;
  }

  .zoom-final-overlay {
    position: static;
    opacity: 1 !important; /* aseguramos que se vea sin intersección */
    margin-top: 1rem;
  }

  .zoom-caption h2 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
  }

  .zoom-caption p {
    font-size: 1rem;
    color: #ddd;
  }

  .zoom-logos {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  .zoom-logos img {
    max-height: 30px;
  }
}


@media (max-width: 480px) {
  .zoom-caption h2 {
    font-size: 1.5rem;
    color: #5b3d2b;
  }

  .zoom-caption p {
    font-size: 0.95rem;
    color: #5b3d2b;
  }

  .zoom-logos {
    gap: 1.5rem;
    margin-top: 6rem;
  }

  .zoom-logos img {
    max-height: 24px;
  }
}







/* Sección Texto mas Multiples fotos */
.pilares{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:3rem;
  padding:6rem 5rem;
  flex-wrap:wrap;
}

.texto-pilares {
  flex:1 1 420px;                 /* crece, pero puede bajar a ~420px */
  max-width:800px;
  color:#5b3d2b;
  padding-right:10rem;            /* se reduce en mobile más abajo */
  padding-top:1.5rem;
}

.texto-pilares p {
  font-size: 1.4rem;
  line-height: 1.8;
}


.texto-pilares strong {
  font-weight: bold;
}

.grid-imagenes {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Mantiene 3 columnas en desktop */
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
  padding-left: 10rem; 
}

.grid-imagenes img {
  width:100%;
  max-width:200px;                /* mantiene tu escala original en desktop */
  aspect-ratio:1/1;               /* cuadradas sin deformar */
  object-fit:cover;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,.08);
  transition:transform .2s ease;
}



.grid-imagenes img:hover {
  transform: scale(1.05);
}


/* --- Breakpoints --- */
@media (max-width: 1024px) {
  .pilares {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
  }

  .texto-pilares {
    padding-right: 0;
    text-align: center;
  }

  .grid-imagenes {
    padding-left: 0;
    grid-template-columns: repeat(3, 1fr);
  }

}


/* animación (igual que tenías) */
@keyframes fadeSlideRight{
  from{ opacity:0; transform:translateX(50px); }
  to{   opacity:1; transform:translateX(0); }
}
.texto-pilares{ opacity:0; transform:translateX(50px); transition:all .8s ease-out; }
.texto-pilares.visible{ animation:fadeSlideRight 1.3s ease-out forwards; }





/* Loop Shopping */
/* .loop-contenedor2 {
  width: 100%;
  overflow: hidden;
  background-color: #5B3D2B;
  padding: 3rem 0;
  position: relative;
}

.loop-scroll2 {
  display: flex;
  width: max-content;
  animation: scrollLoop 40s linear infinite;
}

.loop-scroll2 img {
  height: auto;
  width: 100vw;
  flex-shrink: 0;
}

@keyframes scrollLoop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100vw);
  }
}


.boton-ver-Shopping {
  display: inline-block;
  padding: 0.6rem 3rem;
  border: 2px solid #EEDFCF;
  border-radius: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #EEDFCF;
  background-color: transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Host Grotesk', sans-serif; 
  
}

.boton-ver-Shopping:hover {
  background-color: #EEDFCF;
  color: #5B3A2B;
  cursor: pointer;
}

.boton-centro2 {
  text-align: center;
  margin-top: 3rem;
} */








/* Sección Imagen Shopping Aerea */
/* .comparador-section {
  background-color: #5B3D2B;
  padding: 5rem 0;        
}

.comparador-container {
  position: relative;
  width: 80%;
  max-width: 1500px; 
  margin: 0 auto 5rem;
  overflow: hidden;
  border-radius: 12px;
  box-sizing: border-box;
}


.img-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  cursor: ew-resize;
  aspect-ratio: 16 / 9; 
}

.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%; 
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.img-overlay img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-bar {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: #ffffff;
  z-index: 10;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.label {
  position: absolute;
  top: 1rem;
  padding: 0.4rem 1rem;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  font-weight: bold;
  font-family: 'Rubik', sans-serif;
  border-radius: 5px;
  font-size: 1.5rem;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.3s ease;
  opacity: 0.5;
}

.label.antes {
  right: 1rem;
}

.label.despues {
  left: 1rem;
} */



/*Final del Inicio/*

/* === CTA BANNER === */
.cta-banner {
  background: url('../img/Banner.jpg') center/cover;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  position: relative;
}

.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
}

.cta-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

.cta-pretitle {
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.cta-title {
  color: #fff;
  font-family: 'Helvetica Neue', sans-serif;
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.cta-title strong {
  font-weight: bold;
}

.cta-button {
  display: inline-block;
  background: #E8D7C2;
  color: #5B3D2B;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #d1bfae;
}

/* === FOOTER === */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 3rem 1rem;
  background: #EEDFCF;
  color: #5B3D2B;
  font-family: 'Helvetica Neue', sans-serif;
}

.footer-links {
  flex: 1;
  min-width: 300px;
  font-size: 1.5rem;
}

.footer-links a {
  display: block;
  padding-left: 3rem;
  margin: 0.5rem 0;
  color: #5B3D2B;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-address {
  margin: 1.5rem 0;
  padding-left: 3rem;
  font-size: 1.5rem;
  line-height: 1.5;
}

.footer-social {
  display: flex;       /* convierte al contenedor en fila */
  gap: 0.8rem;         /* espacio entre cada enlace */
  align-items: center; /* los centra verticalmente */
  margin-left: 3rem;
}

.footer-social a {
  margin: 0;
  padding: 0;    
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-social a img {
  width: 28px;         /* ajusta al tamaño que quieras */
  height: auto;
  display: block;      /* elimina espacios blancos debajo de la imagen */
}



.footer-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;  
  gap: 1rem;                
  padding: 3rem 5rem;
  padding-right: 5rem;        
  background: #EEDFCF;
}

.footer-newsletter > * {
  max-width: 320px;  
  width: 100%;
}


.newsletter-title {
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-newsletter input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.5rem;
  font-size: 1rem;
  outline: none;
}

.footer-newsletter button {
  background: #E8D7C2;
  color: #5B3D2B;
  border: none;
  padding: 0.8rem;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
}

.footer-newsletter button:hover {
  background: #d1bfae;
}

.newsletter-note {
  font-size: 1rem;
  margin-top: 1rem;
}

/* === Responsive === */
@media (max-width: 768px) {
  .site-footer {
    flex-direction: column;
  }
  .cta-title {
    font-size: 1.5rem;
  }
}





/* MENU HAMBURGUESA */


/* Estructura base */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 1rem 2rem;
}

.header-item {
  flex: 1;
  display: flex;
  align-items: center;
}

/* Centrado especial solo en la del medio */
.header-item.center {
  justify-content: center;
}
.header-item.left {
  justify-content: flex-start;
}
.header-item.right {
  justify-content: flex-end;
}


/* Estética botón hamburguesa */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
}
.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* Menú navegación */
.menu {
  display: flex;
  gap: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  
}

@media (max-width: 768px) {
  /* Mostrar hamburguesa */
  .hamburger {
    display: flex;
  }

  /* Reorganizar menú */
:root { --header-h: 70px; } /* alto real del header en mobile */

header {
  position: fixed;
  top: 0;
  z-index: 1000;            /* por encima del panel */
  background: #EEDFCF;      /* tu color de header */
}

@media (max-width: 768px) {
  .menu {
    position: fixed;
    top: var(--header-h);    /* NO tapa el header */
    right: 0;
    height: calc(100vh - var(--header-h));
    width: 100vw;            /* pantalla completa; si querés drawer: 85vw o 320px */
    background: #EEDFCF;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    overflow-y: auto;
    z-index: 999;   
    justify-content: flex-start;
    left: 20%;

    /* estado cerrado: fuera de pantalla hacia la derecha */
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -10px 0 24px rgba(0,0,0,.18);
  }

  .menu a{border-bottom: 1px solid rgba(0,0,0,.08);}

  /* abierto: entra */
  .menu.show { transform: translateX(0); }

  /* Overlay detrás del panel, también respetando el header visible */
  body.menu-open::before {
    content: "";
    position: fixed;
    inset: var(--header-h) 0 0 0; /* empieza debajo del header */
    background: rgba(0,0,0,.28);
    backdrop-filter: blur(2px);
    z-index: 998;
  }

  /* bloquear scroll del fondo */
  body.menu-open { overflow: hidden; }

  /* el botón hamburguesa (que se vuelve X) sigue en el header */
  .hamburger { display: flex; z-index: 1001; } /* por encima del panel */
}


}

@media (max-width: 768px) {
  .presupuesto-link-container {
    margin: 0;
    padding-top: 2rem;
    width: 100%;
  }
}





/* ====== FIX: evitar scroll horizontal en mobile ====== */
html,
body { overflow-x: hidden; }

/* ===== Loops: mantener frames en 100vw y evitar scroll lateral ===== */

/* cada imagen ocupa exactamente el ancho del viewport */
.loop-scroll img,
.loop-scroll2 img {
  width: 100vw;
  height: auto;
  flex: 0 0 auto;
  max-width: none;
}

/* el contenedor NO aporta padding horizontal y recorta cualquier desborde */
.loop-contenedor,
.loop-contenedor2 {
  padding-left: 0;
  padding-right: 0;
  overflow-x: clip;     /* evita scroll por transform/100vw sin afectar el layout */
}

@supports not (overflow-x: clip) {
  .loop-contenedor,
  .loop-contenedor2 { overflow-x: hidden; }
}

/* pequeña compensación por redondeos de 100vw en iOS/Android que crean 1-2px de “gap” */
.loop-scroll,
.loop-scroll2 {
  will-change: transform;
  margin-left: calc((100% - 100vw) / 2);
  margin-right: calc((100% - 100vw) / 2);
}


/* Footer: alineación a la izquierda en mobile */
@media (max-width: 768px){
  .site-footer{ padding: 2rem 1rem; }             /* mismo gutter que el resto */

  .footer-links a{ padding-left: 1rem; }          /* antes 3rem */
  .footer-address{ padding-left: 1rem; }          /* antes 3rem */
  .footer-social{ margin-left: 1rem; }            /* antes 3rem */

  .footer-newsletter{ padding: 2rem 1rem; }       /* antes 3rem 5rem */
}



/* VIDEO */
.video-section {
  width: 100%;
  height: 89vh;      /* ocupa toda la altura de la pantalla */
  overflow: hidden;
  background: #EEDFCF;   /* por si tarda en cargar */
  padding-bottom: 4rem;
}

.video-full {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* recorta para cubrir */
  display: block;
}

@media (max-width: 768px){
  .video-section{
    height: auto;                   /* dejamos que el alto se ajuste al contenido */
    max-height: none;
    padding-top: 2rem;
  }
  .video-full{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;           /* mantiene 16:9 sin barras negras */
    object-fit: contain;            /* evita recortes fuertes en vertical */
  }
}

/* Móviles muy chicos o en horizontal: un toque más compacto */
@media (max-width: 420px){
  .video-full{
    aspect-ratio: 16 / 9;
  }
}




.recorrido {
  padding: 3rem 1rem;
  text-align: center;
}

.recorrido-contenedor {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px; /* opcional, esquinas redondeadas */
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.recorrido-contenedor iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.btn-fs{
  position:absolute; right:12px; bottom:12px;
  padding:.6rem .9rem; border-radius:999px; border:1px solid rgba(0,0,0,.2);
  background:#fff; font-weight:600;
  box-shadow:0 2px 12px rgba(0,0,0,.15);
}

@media (max-width: 768px){
  .recorrido-contenedor{
    height: calc(100vh - var(--header-h));
    padding-bottom: 0;         /* anula 16:9 */
    border-radius: 0;          /* opcional: edge-to-edge */
  }
}



.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1100;
}

.whatsapp-icon {
  width: 56px;   /* ajustá al tamaño que quieras */
  height: auto;
  display: block;
}

.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.05);
  transition: transform .2s ease;
}







/* divisores finitos como en el boceto */
.presu-div{ border:0; border-top:1px solid rgba(255,255,255,.35); margin: 1rem 0; }

/* títulos de bloque */
.legend{ font-weight:700; margin:.4rem 0 .6rem; }
.sublegend{ font-weight:600; opacity:.9; margin:.6rem 0 .4rem; }

/* grillas de opciones */
.checks, .radios{
  display:grid; gap:.4rem .8rem;
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (max-width:640px){ .checks, .radios{ grid-template-columns: 1fr; } }

.inline{ display:flex; align-items:center; gap:.5rem; grid-column:1/-1; }
.small{
  width:220px; background:transparent; color:#fff;
  border:0; border-bottom:1px solid rgba(255,255,255,.35); padding:.5rem .2rem;
}

.consent{ display:flex; gap:.5rem; align-items:center; color:#ccc; margin:.6rem 0 1rem; }
.nota{ color:#ccc; text-align:center; margin-top:.6rem; }
