/* ============================================
   SAQISQA 22 — Estilos principales
   Archivo: styles.css
   ============================================ */

/* ── VARIABLES DE COLOR ── */
:root {
  --cognac:        #A0522D;
  --cognac-dark:   #7B3F1E;
  --cognac-light:  #C47A45;
  --cream:         #F5EFE6;
  --bone:          #EDE3D5;
  --charcoal:      #1C1C1C;
  --charcoal-soft: #2E2E2E;
  --olive:         #6B6B45;
  --terracota:     #C25E3A;
  --gold:          #BFA07A;
  --white:         #FDFAF6;
}

/* ── RESET Y BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* Textura de fondo sutil */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

section { position: relative; }

/* ── TIPOGRAFÍAS COMUNES ── */
.section-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cognac);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cognac);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--charcoal);
}

.section-title em {
  font-style: italic;
  color: var(--cognac);
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(160,82,45,0.12);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cognac-dark);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo span {
  font-weight: 400;
  color: var(--cognac);
  font-size: 1.8rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--cognac);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--cognac); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--cognac);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--cognac-dark) !important; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background-image: url('Fotos/Galería/Mesadetrabajo.jpeg') !important;
  background-size: cover !important;
  background-position: center !important;
}

.hero-left::before {
  background: linear-gradient(to top, rgba(10,6,3,0.75) 0%, rgba(10,6,3,0.2) 100%) !important;
}
.hero-left {
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
  padding: 8rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(160,82,45,0.3) 0%, transparent 60%),
              url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 30 Q15 0 30 30 Q45 60 60 30' fill='none' stroke='rgba(191,160,122,0.06)' stroke-width='1'/%3E%3C/svg%3E");
}

.hero-number {
  position: absolute;
  top: 6rem; right: 3rem;
  font-family: 'Playfair Display', serif;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(160,82,45,0.12);
  line-height: 1;
  user-select: none;
}

.hero-left-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Dancing Script', cursive;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-title-italic {
  font-style: italic;
  color: var(--cognac-light);
  display: block;
}

.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
  margin-top: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-right {
  background: var(--bone);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 5rem;
  position: relative;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(160,82,45,0.03) 40px,
    rgba(160,82,45,0.03) 41px
  );
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.hero-tagline strong {
  font-style: normal;
  color: var(--cognac-dark);
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.1s forwards;
}

.pill {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border: 1px solid var(--cognac);
  color: var(--cognac-dark);
  border-radius: 1px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--cognac);
  color: var(--white);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 2px;
  width: fit-content;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.3s forwards;
  transition: all 0.3s ease;
}

.hero-btn:hover { background: var(--cognac-dark); gap: 1rem; }
.hero-btn svg { transition: transform 0.3s; }
.hero-btn:hover svg { transform: translateX(4px); }

/* ── MANIFIESTO ── */
#manifiesto {
  background: var(--charcoal);
  padding: 7rem 4rem;
  text-align: center;
  overflow: hidden;
  position: relative;
}

#manifiesto::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 30rem;
  color: rgba(160,82,45,0.05);
  top: -5rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.manifiesto-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.manifiesto-content .section-label { justify-content: center; }
.manifiesto-content .section-label::before { display: none; }

.manifiesto-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(245,239,230,0.9);
  line-height: 1.9;
  margin: 2rem 0;
}

.manifiesto-firma {
  font-size: 1.4rem;
  color: var(--cognac-light);
  margin-top: 2rem;
}

/* ── ADN / PILARES ── */
#adn {
  padding: 7rem 4rem;
  background: var(--white);
}

.adn-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}

.adn-intro {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(28,28,28,0.65);
  margin-top: 1.5rem;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5px;
  background: transparent;
}

#publico .pilares-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

.pilar {
  background: var(--white);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: default;
  text-align: center;
}

.pilar::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cognac);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.pilar:hover { background: var(--cream); }
.pilar:hover::before { transform: scaleX(1); }

.pilar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(160,82,45,0.1);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.4s;
}

.pilar:hover .pilar-num { color: rgba(160,82,45,0.2); }

.pilar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.7rem;
}

.pilar-title span{
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.7rem;
}
.pilar-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(28,28,28,0.6);
}

/* ── PROCESO ── */
#proceso {
  background: var(--bone);
  padding: 7rem 4rem;
}

.proceso-header {
  text-align: center;
  margin-bottom: 5rem;
}

.proceso-header .section-label { justify-content: center; }
.proceso-header .section-label::before { display: none; }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.proceso-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, var(--cognac) 0%, var(--cognac-light) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.step-circle {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cognac);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cognac);
  transition: all 0.3s;
}

.step:hover .step-circle {
  background: var(--cognac);
  color: var(--white);
  transform: scale(1.1);
}

.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.step-text {
  font-size: 0.78rem;
  line-height: 1.6;
  color: rgba(28,28,28,0.6);
}

/* ── NOSOTROS ── */
#nosotros {
  padding: 7rem 4rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.nosotros-visual {
  position: relative;
  height: 500px;
}

.nosotros-frame {
  position: absolute;
  border-radius: 2px;
  overflow: hidden;
}

.frame-main {
  position: relative;
  background-image: url('Fotos/Galería/Taller.jpeg');
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

.frame-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.08) 60%);
  z-index: 1;
}

.frame-main-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 2rem;
}

.frame-icon {
  display: none;
}

.frame-quote {
  font-size: 1.1rem;
  color: rgba(253,250,246,0.95);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.frame-accent {
  position: absolute;
  width: 120px; height: 120px;
  background: var(--charcoal);
  top: -20px; right: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.frame-accent-text {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cognac-light);
  text-align: center;
  line-height: 1;
}

.frame-accent-sub {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.7);
  display: block;
  margin-top: 0.2rem;
}

.nosotros-mision { margin-top: 2rem; }

.mision-item {
  border-left: 2px solid var(--bone);
  padding: 1rem 0 1rem 1.5rem;
  margin-bottom: 1.2rem;
  transition: border-color 0.3s;
}

.mision-item:hover { border-color: var(--cognac); }

.mision-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac);
  margin-bottom: 0.4rem;
}

.mision-text {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(28,28,28,0.7);
}

.nosotros-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(28,28,28,0.65);
  margin-top: 1.5rem;
}

/* ── REDES SOCIALES ── */


/* GRID */
.redes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* TARJETA */
.red-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.red-card:hover {
  transform: translateY(-5px);
}

/* ICONO (AQUÍ CONTROLAS TODO 🔥) */
.red-icon img {
  width: 40px;   /* 👈 cambia esto para todos */
  height: 40px;  /* 👈 cambia esto para todos */
  object-fit: contain;
  margin-bottom: 10px;
}

/* TEXTO */
.red-name {
  font-weight: 600;
  color: #fff;
}

.red-handle {
  font-size: 0.9rem;
  color: #aaa;
}

#redes {
  background: var(--cream);
  padding: 5rem 4rem;
  text-align: center;
}

.redes-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.red-card {
  background: var(--white);
  border: 1px solid rgba(160,82,45,0.15);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  text-decoration: none;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 160px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.red-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cognac);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.red-card:hover::before { transform: translateY(0); }
.red-card:hover { border-color: var(--cognac); }
.red-card:hover .red-icon,
.red-card:hover .red-name,
.red-card:hover .red-handle { color: var(--white); }

.red-icon {
  font-size: 2rem;
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.red-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.red-handle {
  font-size: 0.72rem;
  color: var(--cognac);
  position: relative;
  z-index: 1;
  transition: color 0.3s;
}

.redes-sub {
  font-size: 0.85rem;
  color: rgba(28,28,28,0.55);
  margin-top: 0.8rem;
}

/* ── GALERÍA ── */

#muestras {
  background: #120d08;
  padding: 80px 40px 60px;
  box-sizing: border-box;
}
 
.muestras-header {
  text-align: center;
  margin-bottom: 48px;
}
 
.section-label {
  display: flex;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #c8905a;
  margin-bottom: 12px;
}
 
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #cdc4b8;
  margin: 0 0 12px;
  line-height: 1.1;
}
 
.section-title em {
  font-style: italic;
  font-weight: 400;
  color: #c8905a;
}
 
.muestras-sub {
  font-size: 0.95rem;
  color: #9a8878;
  margin: 0;
}
 
.muestras-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  margin-bottom: 10px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
 
.muestras-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.muestras-fila {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto 48px;
}
 
.muestra-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  background: #1e1610;
}
 
.muestra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
 
.muestra-card:hover img {
  transform: scale(1.04);
}
 
.muestra-grande {
  height: 600px;
}
 
.muestras-col .muestra-card {
  height: 160px;
  flex-shrink: 0;
}
 
.muestras-fila .muestra-card {
  height: 297px;
}
 
.muestra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12,8,4,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
 
.muestra-card:hover .muestra-overlay {
  opacity: 1;
}
 
.muestra-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c8905a;
  margin-bottom: 6px;
}
 
.muestra-desc {
  font-size: 0.85rem;
  color: #f0e8dc;
  margin: 0;
  line-height: 1.4;
}
 
.muestras-cta {
  text-align: center;
}
 
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #c8905a;
  color: #120d08;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.25s ease, transform 0.2s ease;
}
 
.hero-btn:hover {
  background: #daa870;
  transform: translateY(-1px);
}
 
@media (max-width: 768px) {
  #muestras { padding: 60px 20px 40px; }
  .muestras-grid { grid-template-columns: 1fr; }
  .muestra-grande { height: 340px; }
  .muestras-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .muestras-col .muestra-card { height: 160px; }
  .muestras-fila { grid-template-columns: 1fr 1fr; }
  .muestras-fila .muestra-card { height: 200px; }
}

/* ── CONTACTO / FORMULARIO ── */
#contacto {
  background: var(--charcoal);
  padding: 7rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.contacto-info .section-label { color: var(--gold); }
.contacto-info .section-label::before { background: var(--gold); }
.contacto-info .section-title { color: var(--white); }
.contacto-info .section-title em { color: var(--cognac-light); }

.contacto-desc {
  font-size: 0.88rem;
  line-height: 1.9;
  color: rgba(245,239,230,0.6);
  margin-top: 1.5rem;
}

.contacto-datos {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dato {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
  color: rgba(245,239,230,0.7);
}

.dato-icon {
  width: 55px; height: 55px;
  border: 3px solid rgba(160,82,45,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--cognac-light);
}

.form-card {
  background: rgba(245,239,230,0.04);
  border: 1px solid rgba(160,82,45,0.2);
  border-radius: 4px;
  padding: 3rem;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-sub {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.45);
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.5);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(245,239,230,0.06);
  border: 1px solid rgba(160,82,45,0.2);
  border-radius: 2px;
  padding: 0.9rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  color: rgba(245,239,230,0.9);
  outline: none;
  transition: all 0.3s;
  -webkit-appearance: none;
}

.form-group select option {
  background: var(--charcoal-soft);
  color: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(245,239,230,0.25); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cognac);
  background: rgba(160,82,45,0.08);
}

.form-group textarea { resize: none; height: 110px; }

.form-btn {
  width: 100%;
  background: var(--cognac);
  color: var(--white);
  border: none;
  padding: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 0.5rem;
}

.form-btn:hover { background: var(--cognac-light); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.form-success-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.form-success-sub {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.5);
}

/* ── FOOTER ── */
footer {
  background: #111;
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(160,82,45,0.15);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.footer-brand span {
  color: var(--cognac-light);
  font-size: 1.7rem;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(245,239,230,0.4);
  margin-top: 0.2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.4);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--cognac-light); }

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,239,230,0.25);
  text-align: right;
}

/* ── ANIMACIONES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }

  #hero { grid-template-columns: 1fr; }
  .hero-left { padding: 7rem 2rem 3rem; min-height: 60vh; }
  .hero-right { padding: 3rem 2rem 4rem; }
  .hero-number { font-size: 7rem; top: 2rem; right: 1rem; }

  #manifiesto { padding: 5rem 2rem; }

  #adn { padding: 5rem 2rem; }
  .adn-header { grid-template-columns: 1fr; }
  .pilares-grid { grid-template-columns: 1fr 1fr; }

  #proceso { padding: 5rem 2rem; }
  .proceso-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .proceso-steps::before { display: none; }

  #nosotros { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .nosotros-visual { height: 300px; }

  #redes { padding: 4rem 2rem; }

  #contacto { grid-template-columns: 1fr; padding: 5rem 2rem; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  footer { padding: 2rem; flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}
/* ── MUESTRAS / GALERÍA ── */
#muestras {
  background: var(--charcoal);
  padding: 7rem 4rem;
}

.muestras-sub {
  font-size: 0.85rem;
  color: rgba(245,239,230,0.45);
  margin-top: 0.8rem;
  text-align: center;
}

.muestras-header .section-label { color: var(--gold); }
.muestras-header .section-label::before { background: var(--gold); display: none; }
.muestras-header .section-title { color: var(--white); }
.muestras-header .section-title em { color: var(--cognac-light); }

/* Grid principal: 1 grande + columna de 3 */
.muestras-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 6px;
  margin-top: 3.5rem;
}

/* Columna derecha apilada */
.muestras-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 600px;
  overflow: hidden;
}

/* Fila inferior: 3 cuadradas */
.muestras-fila {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 6px;
}

/* Tarjeta base */
.muestra-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: rgba(160,82,45,0.08);
}

/* Pieza grande */
.muestra-grande { min-height: 420px; }

/* Piezas pequeñas en columna */
.muestras-col .muestra-card { flex: 1; min-height: 130px; }

/* Fila inferior */
.muestras-fila .muestra-card { aspect-ratio: 4/3; }

/* Imagen */
.muestra-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.88) saturate(0.9);
}

.muestra-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.75) saturate(1);
}

/* Overlay con info */
.muestra-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,6,3,0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.muestra-card:hover .muestra-overlay { opacity: 1; }

.muestra-tag {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cognac-light);
  border: 1px solid rgba(196,122,69,0.5);
  padding: 0.3rem 0.7rem;
  width: fit-content;
  margin-bottom: 0.5rem;
}

.muestra-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(245,239,230,0.85);
}

/* CTA centrado */
.muestras-cta {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}

/* Responsive muestras */
@media (max-width: 900px) {
  #muestras { padding: 5rem 2rem; }

  .muestras-grid {
    grid-template-columns: 1fr;
  }

  .muestra-grande { min-height: 260px; }

  .muestras-col {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .muestras-col .muestra-card {
    flex: 1 1 calc(33% - 4px);
    min-height: 140px;
  }

  .muestras-fila {
    grid-template-columns: repeat(3, 1fr);
  }
}  
  
/* ============================================================
   SAQISQA 22 — Parche Mobile
   ============================================================ */
 
/* ── MENÚ HAMBURGUESA ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
 
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cognac-dark);
  transition: all 0.3s ease;
  transform-origin: center;
}
 
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
 
/* ══════════════════════════════════════
   MOBILE ≤ 900px
══════════════════════════════════════ */
@media (max-width: 900px) {
 
  /* — Navbar — */
  nav { padding: 1rem 1.5rem; }
  .nav-hamburger { display: flex; }
 
  .nav-links {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(75vw, 300px);
    height: 100vh;
    background: rgba(253,250,246,0.97);
    backdrop-filter: blur(16px);
    padding: 5rem 2rem 2rem;
    gap: 0;
    list-style: none;
    transform: translateX(110%);
    transition: transform 0.35s ease;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    z-index: 150;
  }
 
  .nav-links.open { transform: translateX(0); }
  .nav-links li { border-bottom: 1px solid rgba(160,82,45,0.1); }
  .nav-links a { display: block; padding: 1rem 0.5rem; font-size: 0.85rem; }
  .nav-cta { margin-top: 1rem; display: block; text-align: center; padding: 0.9rem 1.4rem !important; }
 
  /* — Hero — */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 6rem 1.5rem 3rem; min-height: 55vh; }
  .hero-number { font-size: 6rem; top: 1.5rem; right: 1rem; opacity: 0.5; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-right { padding: 2.5rem 1.5rem 4rem; }
  .hero-tagline { font-size: 1rem; }
  .pill { font-size: 0.65rem; padding: 0.4rem 0.8rem; }
 
  /* — Manifiesto — */
  #manifiesto { padding: 4rem 1.5rem; }
  .manifiesto-text { font-size: 1rem; }
 
  /* — ADN — */
  #adn { padding: 4rem 1.5rem; }
  .adn-header { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 3rem; }
  .pilares-grid { grid-template-columns: 1fr 1fr; }
  .pilar { padding: 1.8rem 1.2rem; }
 
  /* — Proceso — */
  #proceso { padding: 4rem 1.5rem; }
  .proceso-steps { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 0 0.5rem; }
  .proceso-steps::before { display: none; }
 
  /* — Nosotros — */
  #nosotros {
    grid-template-columns: 1fr;
    padding: 4rem 1.5rem;
    gap: 2rem;
  }
 
  .nosotros-visual {
    height: 320px;
    position: relative;
    width: 100%;
  }
 
  /* FIX CLAVE: el frame debe ser relativo y llenar el visual */
  .nosotros-frame {
    position: relative !important;
    width: 100%;
    height: 100%;
    inset: auto !important;
  }
 
  .frame-main {
    position: relative !important;
    width: 100%;
    height: 320px;
    min-height: unset;
  }
 
  /* — Historia — */
  #historia { padding: 4rem 1.5rem !important; }
  #historia .section-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
 
  /* — Público — */
  #publico { padding: 4rem 1.5rem !important; }
  #publico .pilares-grid {
  grid-template-columns: 1fr;
  max-width: 100%;
  margin: 0 auto;
}
 
  /* — Redes — */
  #redes { padding: 4rem 1.5rem; }
  .redes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .red-card { padding: 1.5rem 1rem; min-width: unset; }
 
  /* — Galería — */
  #muestras { padding: 4rem 1.2rem 3rem; }
  .muestras-grid { grid-template-columns: 1fr; margin-top: 2rem; }
  .muestra-grande { min-height: 280px; height: 280px; }
  .muestras-col {
    flex-direction: column;
    height: auto;
    overflow-x: unset;
    gap: 8px;
  }
  .muestras-col .muestra-card { width: 100%; height: 260px; min-height: unset; flex: unset; }
  .muestras-fila { grid-template-columns: 1fr; gap: 8px; margin-top: 8px; }
  .muestras-fila .muestra-card { height: 260px; aspect-ratio: unset; }
  
 
  /* — Contacto — */
  #contacto { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }
  .form-card { padding: 1.8rem 1.2rem; }
  .form-row { grid-template-columns: 1fr; }
 
  /* — Footer — */
  footer { padding: 2rem 1.5rem; flex-direction: column; align-items: center; text-align: center; gap: 1.2rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem 1.5rem; }
  .footer-copy { text-align: center; }
}
 
 
/* ══════════════════════════════════════
   MOBILE PEQUEÑO ≤ 480px
══════════════════════════════════════ */
@media (max-width: 480px) {
  .pilares-grid { grid-template-columns: 1fr; }
  .proceso-steps { grid-template-columns: 1fr; max-width: 300px; }
  .muestras-fila { grid-template-columns: 1fr; }
  .muestras-fila .muestra-card { height: 220px; }
  .hero-left { padding: 5.5rem 1.2rem 2.5rem; }
  .hero-right { padding: 2rem 1.2rem 3rem; }
  .frame-main { height: 260px; }
  .nosotros-visual { height: 260px; }
}