/* =========================
   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;
  }
}


/* =========================
   SECCIÓN BENEFICIOS
========================= */

.beneficios {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 100px 80px;
  background-color: white;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: white;
  padding: 70px 30px 40px;
  border-radius: 25px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

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

.card h3 {
  color: black;
  font-size: 22px;
  margin-bottom: 15px;
}

.card p {
  font-size: 15px;
  color: #333;
}

.icono {
  width: 75px;
  height: 75px;
  background-color: #c9a14a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .beneficios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .beneficios {
    grid-template-columns: 1fr;
    padding: 80px 20px;
  }
}
/* =========================
   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
========================= */

.contacto {
  background: #d8c68a;
  padding: 40px 20px;
  color: black;
}

.contacto-container {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  max-width: 1200px;
  margin: auto;
}

/* IZQUIERDA */
.contacto-form {
  flex: 1;
}

.contacto-form .subtitulo {
  letter-spacing: 3px;
  font-size: 14px;
  color: black;
}

.contacto-form h2 {
  font-size: 60px;
  margin-bottom: 40px;
}

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

.contacto-form input,
.contacto-form textarea {
  background: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 10px;
  color: #2b2b2b;
  font-size: 16px;
}

.contacto-form textarea {
  height: 120px;
  resize: none;
}

.contacto-form button {
  background: #c9a14a;
  color: #ffffff;
  padding: 14px;
  border: none;
  border-radius: 30px;
  font-weight: bold;
  width: 200px;
  cursor: pointer;
  transition: 0.3s;
}

.contacto-form button:hover {
  background: #a87e35;
}

/* DERECHA */
.contacto-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.telefono {
  font-size: 30px;
  font-weight: bold;
}

.btn-wsp {
  display: inline-block;
  background: #2db742;
  padding: 15px 25px;
  border-radius: 10px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  transition: 0.3s;
}

.btn-wsp:hover {
  background: #1d5b06;
}

.email {
  font-size: 18px;
  color: black;
}
.contacto-form input:focus,
.contacto-form textarea:focus {
  outline: none;
  border: 2px solid #c9a14a;              /* dorado */
  box-shadow: 0 0 0 4px rgba(201,161,74,0.2);
}


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

  .contacto-form h2 {
    font-size: 42px;
  }
}

/* =========================
   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: #fff;
    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;
  }
}




/* =========================
   SECCIÓN CORTINAS
========================= */

.cortinas-section {
  max-width: 1200px;
  margin: auto;
  padding: 200px 20px;
}

/* Intro */
.cortinas-intro {
  text-align: center;
  margin-bottom: 80px;
}

.cortinas-intro h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.cortinas-intro p {
  font-size: 18px;
  line-height: 1.6;
}

.cortinas-tags {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 1px;
  opacity: 0.7;
}

/* Listado */
.cortinas-listado {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.cortina-item {
  display: flex;
  align-items: center;
  background: #faf7f3;
  border-radius: 20px;
  overflow: hidden;
}

.cortina-item.reverse {
  flex-direction: row-reverse;
}

.cortina-item img {
  width: 50%;
  height: 320px;
  object-fit: cover;
}

.cortina-texto {
  padding: 40px;
  width: 50%;
}

.cortina-texto h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.cortina-texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.btn-cortina {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid #2b2b2b;
  text-decoration: none;
  color: #2b2b2b;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-cortina:hover {
  background: #2b2b2b;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .cortina-item,
  .cortina-item.reverse {
    flex-direction: column;
  }

  .cortina-item img,
  .cortina-texto {
    width: 100%;
  }

  .cortina-item img {
    height: 240px;
  }
}



/* =========================
   SECCIÓN PREGUNTAS FRECUENTES
========================= */

/* HERO SIMPLE */
.hero-simple {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  text-align: center;
}

/* Título */
.hero-simple h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

/* Texto */
.hero-simple p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}   

.faqs-section {
  background: #ffffff;
  padding: 80px 20px;
}

.faqs-container {
  max-width: 900px;
  margin: 0 auto;
}

.faqs-container h2 {
  text-align: center;
  font-size: 42px;
  margin-bottom: 10px;
}

.faqs-subtitle {
  text-align: center;
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* ITEM */

.faq-item {
  background: #fcf7f5;
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid #eaeaea;
}

/* ocultamos checkbox */
.faq-item input {
  display: none;
}

/* título */
.faq-item label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #2b2b2b;
}

.faq-item label span {
  font-size: 26px;
  transition: transform 0.3s ease;
}

/* contenido */
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 26px;
}

.faq-content p {
  padding-bottom: 22px;
  color: black;
  line-height: 1.6;
}

/* activo */
.faq-item input:checked ~ .faq-content {
  max-height: 300px;
}

.faq-item input:checked + label span {
  transform: rotate(45deg);
}

/* responsive */
@media (max-width: 768px) {
  .faqs-container h2 {
    font-size: 32px;
  }

  .faq-item label {
    font-size: 16px;
  }
}


.page-faqs .hero-simple {
  margin-top: 130px;
}




/* =========================
   SECCIÓN EMPLEO / TRABAJO
========================= */


.body.page-trabajo {
  font-family: Arial, Helvetica, sans-serif;
  background: #f6f1ed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* SOLO títulos del formulario trabajo */
.page-trabajo h2 {
  text-align: center;
  color: black;
  margin-bottom: 35px;
  font-size: 28px;
}

/* Sección */
.trabajo-section {
  width: 100%;
  padding: 100px 50px;
}

/* Card */
.form-container {
  max-width: 520px;
  margin: auto;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Logo */
.logo {
  text-align: center;
  margin-bottom: 25px;
}

.logo img {
  width: 120px;
}

/* Título */


/* Campos */
.campo {
  margin-bottom: 20px;
}

.campo label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.campo input,
.campo textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 30px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.campo textarea {
  border-radius: 18px;
  resize: none;
  height: 100px;
}

.campo input:focus,
.campo textarea:focus {
  border-color: #a86a3a;
}

.campo input[type="file"] {
  border-radius: 10px;
  padding: 10px;
}

/* Botón */
.btn-enviar {
  width: 100%;
  padding: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-enviar:hover {
  background: #333;
}

/* Responsive */
@media (max-width: 480px) {

  .form-container {
    padding: 35px 25px;
  }

  h2 {
    font-size: 22px;
  }

}

/* Logo dentro del formulario */
.page-trabajo .logo-form {
  text-align: center;
  margin-bottom: 20px;
}

.page-trabajo .logo-form img {
  width: 120px;      /* ajustable */
  max-width: 100%;
}

.subtitulo-trabajo {
  text-align: center;
  font-size: 15px;
  color: #777;
  margin-top: 10px;
  margin-bottom: 80px;
}

/* Animación shake */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}

/* Campo con error */
.page-trabajo input:invalid,
.page-trabajo textarea:invalid {
  border: 2px solid #dd5b5b;
}

/* Animación cuando intenta enviar */
.page-trabajo input:invalid:focus,
.page-trabajo textarea:invalid:focus {
  animation: shake 0.3s;
}

/* Campo correcto */
.page-trabajo input:valid,
.page-trabajo textarea:valid {
  border: 2px solid #2ecc71;
}
.page-trabajo .btn-enviar {
  width: 100%;
  padding: 16px;
  background: #c8a04a;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

/* Hover */
.page-trabajo .btn-enviar:hover {
  background: #997a3c;
  transform: translateY(-2px);
}

/* Click */
.page-trabajo .btn-enviar:active {
  transform: translateY(0);
}

/* Cuando el formulario es inválido */
.page-trabajo form:invalid .btn-enviar {
  opacity: 0.6;
  cursor: not-allowed;
}

.faq-img {
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
  border-radius: 10px;
  display: block;
}

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


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

