/* ===========================
   Fonts (agregar al inicio)
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Montserrat:wght@400;600&display=swap');
/* ---------------- RESET ---------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Helvetica Neue", sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

/* === LANG SELECTOR === */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.lang-btn {
  background: none;
  border: 1px solid #ccc;
  padding: 6px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  list-style: none;
  padding: 8px 0;
  margin: 6px 0 0 0;
  display: none;
  z-index: 1000;
  min-width: 150px;
}

.lang-menu.show {
  display: block;
}

.lang-menu li {
  padding: 5px 12px;
}

.lang-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-menu li:hover {
  background: #f0f0f0;
}

/* Mostrar el menú al pasar o hacer clic */
.lang-dropdown:hover .lang-menu {
  display: block;
}



/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4); /* capa oscura para contraste */
  z-index: -1;
}

.hero-text {
  position: absolute;
  bottom: 1%; /* ajusta según prefieras */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
  transition: opacity 0.2s linear, filter 0.2s linear;
}


.hero-text h1 {
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 1rem;
}

.hero-text .slogan {
  margin-top: 1.5rem;
  font-style: italic;
  font-weight: 600;
  color: #d4c19c;
  font-family: 'Playfair Display', serif;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* efecto de blur para suavizar */
.hero-text.fade-out {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.8s ease, filter 0.8s ease;
}


/* ABOUT */
/* ================== SECCIÓN EXCLUSIVA (REEMPLAZAR BLOQUE) ================== */
.exclusive {
  background: #ffffff; /* blanco puro como la imagen */
  color: #111;
  padding: 8rem 2rem;
  position: relative;
  overflow: visible;
  text-align: center;
  font-family: "Playfair Display", "Montserrat", "Helvetica Neue", serif;
}

.exclusive .container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Etiqueta (chip dorado suave) */
.exclusive .tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.45rem 1.15rem;
  border: 1px solid #d4c19c;
  border-radius: 999px;
  color: #7a6230;
  background: #f9f6f1;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

/* Título principal */
.exclusive .title {
  font-size: 2.6rem; /* ~36-40px visual */
  line-height: 1.08;
  color: #111111;
  margin: 0.25rem 0 1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  font-family: "Playfair Display", serif;
}

/* palabra destacada "Lujo" */
.exclusive .title span {
  display: inline-block;
  color: #7a6230; /* acento dorado */
  font-weight: 700;
}

/* Párrafo descriptivo */
.exclusive .description {
  font-size: 1.05rem;
  color: #555555;
  max-width: 720px;
  margin: 0 auto 1.8rem;
  line-height: 1.6;
  font-family: "Montserrat", "Helvetica Neue", sans-serif;
}

/* Avatares (fila de usuarios) */
.exclusive .avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.6rem;
  /* superposición ligera */
  margin-top: 0.4rem;
}

.exclusive .avatars img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  margin-left: -12px;
  transition: transform 0.25s ease;
}

.exclusive .avatars img:first-child {
  margin-left: 0;
}

.exclusive .avatars img:hover {
  transform: translateY(-4px) scale(1.06);
  z-index: 3;
}

/* Botones (misma estética que la imagen) */
.exclusive .buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.6rem;
}

/* Reusa .btn global pero ajustamos aquí si es necesario */
.exclusive .btn {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* ================== EXCLUSIVE SECTION ================== */
.exclusive {
  background: #ffffff;
  text-align: center;
  padding: 6rem 2rem;
  font-family: 'Playfair Display', serif;
}

/* Título y descripción */
.exclusive .title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin: 1.5rem 0;
}
.exclusive .title span {
  color: #d4c19c;
}
.exclusive .description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* Avatares */
.exclusive .avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.exclusive .avatars img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Botones */
.exclusive .buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.exclusive .btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Botón dorado */
.exclusive .btn.primary {
  background: #d4c19c !important;
  color: #111 !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(212,193,156,0.14);
}
.exclusive .btn.primary:hover {
  background: #c5b089 !important;
  transform: translateY(-3px);
}

/* Botón secundario elegante */
.exclusive .btn.secondary {
  background: transparent !important;
  border: 1.5px solid #000 !important;
  color: #111 !important;
}
.exclusive .btn.secondary:hover {
  background: #f7f7f7 !important;
  color: #111 !important;
}

/* Icono */
.exclusive .btn .icon {
  font-size: 1.05rem;
}

/* ================== BOTONES EXCLUSIVE ================== */
.exclusive .buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* asegura que no se escondan si no hay espacio */
  visibility: visible !important;
  opacity: 1 !important;
}

.exclusive .btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10;
}

/* Botón dorado */
.exclusive .btn.primary {
  background: #d4c19c !important;
  color: #111 !important;
  border: none !important;
  box-shadow: 0 8px 20px rgba(212,193,156,0.14);
}
.exclusive .btn.primary:hover {
  background: #c5b089 !important;
  transform: translateY(-3px);
}

/* Botón secundario */
.exclusive .btn.secondary {
  background: transparent !important;
  border: 1.5px solid #000 !important;
  color: #111 !important;
}
.exclusive .btn.secondary:hover {
  background: #f7f7f7 !important;
  color: #111 !important;
}


/* ================== NUEVAS LLEGADAS ================== */
.nuevas-llegadas {
  background: #faf8f6;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #2c2c2c;
  margin-bottom: 70px;
  font-family: "Playfair Display", serif;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  justify-items: center;
}

.card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.card-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-info {
  padding: 25px;
}

.card-info h3 {
  font-size: 1.2rem;
  color: #333;
  font-weight: 500;
}

.precio {
  color: #777;
  font-size: 1rem;
  margin: 10px 0 15px;
}

.btn-outline {
  border: 1px solid #000;
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* ================== MODAL ================== */
.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0,0,0,0.65);
  z-index: 999;
  backdrop-filter: blur(10px);
}

.modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: scale(0.9);
  opacity: 0;
}

.modal-body {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 40px;
}

.modal-body img {
  width: 50%;
  border-radius: 15px;
  object-fit: cover;
}

.modal-text {
  flex: 1;
  text-align: left;
}

.modal-text h3 {
  font-size: 1.8rem;
  font-family: "Playfair Display", serif;
}

.modal-text p {
  margin: 15px 0;
  color: #555;
  line-height: 1.6;
}

.close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #000;
}

.buy-btn {
  background: #2c2c2c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.buy-btn:hover {
  background: #000;
}

@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-body img {
    width: 100%;
  }
}
.buy-btn:hover {
  background: linear-gradient(90deg, #25D366, #128C7E);
  transform: translateY(-2px);
}
.btn-outline img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  filter: brightness(0) invert(1);
}

/* ================== Carrucel ================== */

.carrusel-elegante {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fafafa, #f1f1f1);
  padding: 4rem 0;
}

.carrusel-track {
  display: flex;
  gap: 2rem;
  will-change: transform;
}

.carrusel-elegante .card {
  min-width: 280px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.carrusel-elegante .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0,0,0,0.1);
}

.carrusel-elegante .card-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.carrusel-elegante .card-info {
  padding: 1rem;
  text-align: center;
}


/* ================== ANIMACIONES ================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===================== Descubre la Elegancia (estilos) ===================== */
:root{
  --de-black:#111111;
  --de-bg:#ffffff;
  --de-gray-900:#0a0a0a;
  --de-gray-700:#667085;
  --de-gray-600:#6F7780;
  --de-gray-300:#EAEAEA;
  --de-subtitle:#B8C1CC;

  --de-chip-bg:#F2E7D8;
  --de-chip-border:#E8DCC8;
  --de-chip-text:#6F5E49;
}

.de-section{
  background:var(--de-bg);
  font-family:"Montserrat","Helvetica Neue",Arial,sans-serif;
  padding:72px 16px 96px;
}

.de-container{
  max-width:1200px;
  margin:0 auto;
}

/* Top bar: chip + CTA */
.de-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  margin-bottom:20px;
}

.de-chip{
  display:inline-flex;
  align-items:center;
  gap:14px;
  padding:10px 18px;
  background:var(--de-chip-bg);
  border:1px solid var(--de-chip-border);
  color:var(--de-chip-text);
  border-radius:9999px;
  font-size:14px;
  font-weight:600;
  letter-spacing:.5px;
  text-transform:uppercase;
  white-space:nowrap;
}
.de-chip .de-dot{
  width:6px; height:6px; border-radius:50%;
  background:var(--de-chip-text); opacity:.5;
  display:inline-block;
}
.de-chip .de-chev{ margin-left:2px; opacity:.7; }

/* CTA negro con glow multicolor */
.de-cta{
  position:relative;
  border:none;
  outline:none;
  background:#0a0a0a;
  color:#fff;
  padding:12px 20px;
  border-radius:9999px;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 4px 14px rgba(0,0,0,.15);
  transition:transform .2s ease;
}
.de-cta::after{
  /* glow arcoíris suave */
  content:"";
  position:absolute; inset:auto -12px -14px -12px; height:16px;
  background:linear-gradient(90deg,#ff7a7a,#ffd36e,#7af084,#7ad8ff,#bd7aff);
  filter:blur(10px);
  border-radius:9999px;
  opacity:.75;
  z-index:-1;
}
.de-cta:hover{ transform:translateY(-2px); }

/* Titulares */
.de-title{
  font-size:48px;
  line-height:1.1;
  font-weight:800;
  color:var(--de-black);
  margin:8px 0 4px;
  letter-spacing: .2px;
}
.de-subtitle{
  font-size:42px;
  line-height:1.1;
  font-weight:300;
  color:var(--de-subtitle);
  margin:0 0 56px;
}

/* Items (dos columnas, alternado) */
.de-item{
  display:grid;
  grid-template-columns: 1.05fr .95fr; /* texto / imagen */
  gap:64px;
  align-items:center;
  padding:24px 0;
}
.de-item--reverse{
  grid-template-columns: .95fr 1.05fr; /* imagen / texto */
}

.de-col.de-copy{ max-width:560px; }

.de-date{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--de-gray-600);
  margin:0 0 14px;
}
.de-item-title{
  font-size:28px;
  line-height:1.25;
  font-weight:700;
  color:var(--de-black);
  margin:0 0 12px;
}
.de-desc{
  font-size:16px;
  line-height:1.7;
  color:var(--de-gray-700);
  margin:0 0 20px;
  max-width:520px;
}
.de-link{
  display:inline-block;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--de-black);
  text-decoration:none;
  position:relative;
}
.de-link::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px; height:1px;
  background:var(--de-black);
  transform:scaleX(0); transform-origin:left;
  transition:transform .25s ease;
}
.de-link:hover::after{ transform:scaleX(1); }

.de-media img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  border-radius:24px;
  display:block;
}

.de-divider{
  border:0;
  border-top:1px solid var(--de-gray-300);
  margin:40px 0;
}

/* Reveal on scroll (suave) */
.reveal{ opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease; }
.reveal.is-visible{ opacity:1; transform:none; }

/* Temporary forced-visibility patch removed — fixed via overlay/class corrections and GSAP updates */

/* Emergency visibility patch: ensure 'Descubre la Elegancia' always shows while debugging */
/* This elevates visibility for elements inside .de-section to avoid being hidden by race conditions or residual overlays */
.de-section .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  visibility: visible !important;
}
.de-section .de-item{ visibility: visible !important; }


/* Responsivo */
@media (max-width: 1024px){
  .de-title{ font-size:42px; }
  .de-subtitle{ font-size:36px; margin-bottom:44px; }
  .de-item, .de-item--reverse{ gap:40px; }
}
@media (max-width: 780px){
  .de-topbar{ flex-direction:column; align-items:flex-start; gap:12px; }
  .de-item, .de-item--reverse{
    grid-template-columns:1fr; 
  }
  .de-col.de-copy{ max-width:unset; }
  .de-media{ order:2; }               /* en móvil: imagen después del texto */
  .de-item--reverse .de-media{ order:1; } /* en la alternada, mantenemos imagen primero */
}


/* La Artesanía Exquisita de la Fibra de Vicuña */

/* =============================
   Sección La Artesanía Vicuña
   ============================= */
.artesania-vicuna {
  background: #fff;
  padding: 80px 20px;
}

.artesania-vicuna .section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 60px;
  color: #000;
  font-family: 'Georgia', serif;
  letter-spacing: 1px;
}

.artesania-vicuna .fila {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 40px;
}

.artesania-vicuna .col {
  flex: 1;
}

.artesania-vicuna .col.imagen img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
}

.artesania-vicuna .col.texto h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #111;
}

.artesania-vicuna .col.texto p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
  max-width: 500px;
}

/* Responsive */
@media (max-width: 900px) {
  .artesania-vicuna .fila {
    flex-direction: column;
    text-align: center;
  }
  .artesania-vicuna .col.texto p {
    margin: 0 auto;
  }
}
/* Centrar toda la sección */
.artesania-vicuna {
  text-align: center;
}

.artesania-vicuna .fila {
  justify-content: center;
}

.artesania-vicuna .col.texto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.artesania-vicuna .col.texto p {
  margin: 0 auto;
}

/* Pie de pagina */
.pie-de-pagina {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.pie-de-pagina .marca {
  font-family: "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pie-de-pagina .origen {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 5px;
}

.pie-de-pagina .descripcion {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 20px;
}

.pie-de-pagina .contacto p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.pie-de-pagina .contacto a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
  transition: opacity 0.3s ease;
}

.pie-de-pagina .contacto a:hover {
  opacity: 0.7;
}

.pie-de-pagina .enlaces {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.pie-de-pagina .enlaces a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.pie-de-pagina .enlaces a:hover {
  color: #fff;
}

.pie-de-pagina .copy {
  font-size: 0.85rem;
  color: #777;
}









/* ================== LIBRO DE RECLAMACIONES (Mejorado) ================== */
.libro-reclamaciones {
  background: #faf8f6; /* Fondo suave acorde a la web */
  padding: 100px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif; /* Fuente principal de la web */
}

.lr-container {
  max-width: 800px; /* Ampliado para más elegancia */
  margin: 0 auto;
  background: #fff;
  padding: 60px 50px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #f0f0f0; /* Borde sutil */
}

.libro-reclamaciones h2 {
  font-family: 'Playfair Display', serif; /* Fuente elegante para títulos, como en hero */
  font-size: 2.5rem; /* Más grande para impacto */
  margin-bottom: 15px;
  color: #111;
  letter-spacing: 0.5px;
}

.lr-subtitle {
  color: #555;
  margin-bottom: 50px; /* Más espacio */
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lr-form {
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas para mejor distribución en desktop */
  gap: 25px;
}

.lr-group {
  margin-bottom: 0; /* Espacio manejado por grid */
}

.lr-group.full-width {
  grid-column: span 2; /* Para textarea y botón */
}

.lr-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  font-size: 1rem;
}

.lr-group input,
.lr-group select,
.lr-group textarea {
  width: 100%;
  padding: 14px 18px; /* Más padding para comodidad */
  border: 1.5px solid #ddd;
  border-radius: 12px; /* Más redondeado, acorde a navbar */
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.lr-group input:focus,
.lr-group select:focus,
.lr-group textarea:focus {
  border-color: #d4c19c; /* Acento dorado de la web */
  outline: none;
  box-shadow: 0 0 0 3px rgba(212,193,156,0.15); /* Sombra suave */
}

.lr-group textarea {
  resize: vertical; /* Permite resize vertical */
  min-height: 150px; /* Más alto para descripciones */
}

.lr-btn {
  grid-column: span 2; /* Centrado en grid */
  display: block;
  width: fit-content;
  margin: 20px auto 0; /* Centrado */
  background: #d4c19c; /* Dorado como botones de la web */
  border: none;
  color: #111;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 16px 32px; /* Más grande */
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.lr-btn:hover {
  background: #c2a76d; /* Hover más oscuro, como en nav */
  transform: translateY(-3px); /* Efecto lift */
  box-shadow: 0 4px 12px rgba(194,167,109,0.3);
}

.lr-confirm {
  margin-top: 30px;
  color: #2c2c2c;
  font-weight: 500;
  background: #e6f8ea;
  border: 1px solid #b9e3c0;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
  opacity: 0; /* Para animación */
  transition: opacity 0.3s ease;
}

/* Responsive: Una columna en móvil */
@media (max-width: 768px) {
  .lr-form {
    grid-template-columns: 1fr;
  }
  .lr-group.full-width,
  .lr-btn {
    grid-column: span 1;
  }
  .lr-container {
    padding: 40px 30px;
  }
}

