/* =========================
   RESET GENERAL
========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #ffffff;
  color: #2b2b2b;
  line-height: 1.6;
}

/* =========================
   FRANJA SUPERIOR
========================= */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: #d8c68a;
  color: #2b2b2b;

  display: flex;
  justify-content: flex-end; /* 👉 derecha */
  align-items: center;
  gap: 23px;

  padding: 0 20px;
  font-size: 20px;
  z-index: 3000;
}


/* =========================
   HEADER
========================= */
header {
  position: fixed;
  top: 40px; /* debajo de la top-bar */
  left: 0;
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-bottom: 1px solid #9c907f;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2000;
}

header h1 {
  font-family: 'Poppins', sans-serif; 
  font-size: 30px;
  letter-spacing: 2px;
  color: black;
}
/* LOGO + TEXTO HEADER */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  letter-spacing: 2px;
  color: black;
  margin: 0;
}

/* =========================
   NAV
========================= */
nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-family: 'Montserrat', sans-serif; /* 👈 tipografía nueva */
  color: black;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}


nav a:hover {
  color: #c9a14a;
}

/* =========================
   MENU MOBILE
========================= */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: black;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 120px; /* 40px top-bar + 80px header */
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 5%;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;

}

/* =========================
   HERO TEXTO
========================= */
.hero-text h2 {
  font-size: 55px;
  margin-bottom: 5px;
}

.hero-text p {
  font-size: 22px;
  margin-bottom: 20px;
}

/* =========================
   PASOS
========================= */
.pasos div {
  display: flex;
  align-items: center;
  margin: 14px 0;
  font-size: 18px;
}

.pasos span {
  min-width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c9a14a;
  color: white;
  border-radius: 50%;
  margin-right: 15px;
  font-weight: bold;
}

/* =========================
   COTIZADOR
========================= */
.cotizador {
  background: rgba(50,50,50,0.95);
  padding: 30px;
  border-radius: 10px;
  width: 320px;
}

.cotizador h3 {
  margin-bottom: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: none;
}

.btn-cotizar {
  width: 100%;
  background: #c9a14a;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.btn-cotizar:hover {
  background: #a88437;
}

/* =========================
   MODELOS
========================= */
.modelos {
  padding: 120px 40px;
  background: #ffffff;
}


@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }




}
/* ===== SECCIÓN MODELOS ===== */

/* =========================
   MODELOS – CORTINAS
========================= */

.modelos {
  padding: 120px 40px;
  background-color: #f7f4ef;
}

.modelos-titulo {
  text-align: center;
  margin-bottom: 70px;
}

.modelos-titulo span {
  font-size: 13px;
  letter-spacing: 3px;
  color: #999;
  font-weight: 600;
}

.modelos-titulo h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  margin-top: 10px;
}

/* 🔹 GRID */
.modelos-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 👈 UNA AL LADO DE LA OTRA */
  gap: 40px;
}

/* CARD */
.modelo-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
  transition: transform .4s ease, box-shadow .4s ease;
}

.modelo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* IMAGEN */
.modelo-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* INFO */
.modelo-info {
  padding: 35px;
}

.modelo-sub {
  font-size: 12px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 8px;
}

.modelo-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
}

.modelo-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}

/* BOTÓN */
.btn-modelo {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 30px;
  background: #2b2b2b;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  transition: background .3s;
}

.btn-modelo:hover {
  background: #c9a14a;       /* ✨ color destacado */
  color: #ffffff;
  border-color: #c9a14a;
  transform: translateY(-2px);
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

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

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 80px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    flex-direction: column;
    padding: 20px;
    border-radius: 10px;
    display: none;
  }

  nav.active {
    display: flex;
  }

  nav a {
    color: white;
  }

  .hero-text h2 {
    font-size: 36px;
  }
  .modelos {
  margin-top: 0;
  padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 13px;
    padding: 0 10px;
    gap: 10px;
  }

  .top-email {
    font-size: 13px;
  }
}


/* =========================
   WHATSAPP FLOTANTE
========================= */

.wsp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 5000;
}

.wsp-float img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.3s ease;
}

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

/* =========================
   SECCIÓN CONTACTO
========================= */

/* =========================
   SECCIÓN CONTACTO (ARREGLADA)
========================= */

.contacto-section {
  padding-top: 180px; /* top-bar + header */
  padding-bottom: 120px;
  background: ffffff;
}

.contacto-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 80px;
  padding: 0 40px;
}

/* TEXTO */
.contacto-texto {
  flex: 1;
}

.contacto-texto h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contacto-texto p {
  font-size: 18px;
  margin-bottom: 15px;
}

.contacto-datos p {
  font-size: 18px;
  margin: 8px 0;
}

/* FORMULARIO */
.contacto-formulario {
  flex: 1;
  background: #373736;
  padding: 35px;
  border-radius: 16px;
}

.contacto-formulario form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contacto-formulario input,
.contacto-formulario textarea {
  padding: 14px;
  border-radius: 8px;
  border: none;
  font-size: 15px;
}

.contacto-formulario button {
  margin-top: 10px;
  background: #c2a258;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
}

.contacto-formulario button:hover {
  background: #a38852;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contacto-container {
    flex-direction: column;
  }
}


/* =========================
   FOOTER
========================= */
.footer-final {
  background-color: #000000;
  padding: 18px 10px;
  text-align: center;
}

.footer-contenido {
  color: white;
  font-size: 20px;
  font-weight: 500;
}


/* =========================
   SECCIÓN LA EMPRESA
========================= */

.la-empresa-section {
  padding-top: 180px; /* espacio por header fijo */
  padding-bottom: 120px;
  background-color: #f4f4f4;
}

.la-empresa-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 0 40px;
}

/* TEXTO */
.la-empresa-texto {
  flex: 1;
}

.la-empresa-texto h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.la-empresa-texto p {
  font-size: 18px;
  margin-bottom: 22px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   SLIDER DERECHA
========================= */

.la-empresa-slider {
  position: relative;
  flex: 1;
  min-width: 45%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.la-empresa-slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* La primera SIEMPRE visible */
.la-empresa-slider img:first-child {
  opacity: 1;
}

.la-empresa-slider img.active {
  opacity: 1;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

  .la-empresa-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .la-empresa-slider {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;   /* 🔥 clave */
    min-width: unset;
  }

  .la-empresa-texto h2 {
    font-size: 32px;
  }

  .la-empresa-texto p {
    font-size: 16px;
  }
}

/* DESKTOP */
/* =========================
   MENU MOBILE SOLO LA EMPRESA
========================= */
@media (max-width: 768px) {

  .page-la-empresa .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
  }

  .page-la-empresa #nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 60vh;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    padding: 100px 30px;
    gap: 25px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  .page-la-empresa #nav a {
    color: #ffffff;
    font-size: 22px;
    text-decoration: none;
  }

  .page-la-empresa #nav.active {
    transform: translateX(0);
  }
}

/* =========================
   CIERRE LA EMPRESA
========================= */
/* =========================
   BARRA CONTACTO FINAL
========================= */

.contacto-barra {
  background-color: #d8c48a;
  padding: 50px 20px;
}

.contacto-barra-contenido {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.contacto-telefono {
  color: black;
  font-size: 18px;
  margin: 15px 0;
}

.contacto-telefono span {
  font-weight: 600;
}

.contacto-whatsapp {
  display: block;
  margin: 25px auto;
  padding: 16px 20px;
  background-color: #3ecf5e;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border-radius: 8px;
  max-width: 700px;
  transition: background-color 0.3s ease;
}

.contacto-whatsapp:hover {
  background-color: #34b954;
}

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

  .contacto-whatsapp {
    font-size: 16px;
    padding: 14px 16px;
  }

  .contacto-telefono,
  .contacto-mail {
    font-size: 16px;
  }
}



.logo-deco{
  font-size: 0.9rem;
}


