/* =========================================
   VARIABLES & BASE
========================================= */
:root {
  --bg-main: #050507;
  --bg-alt: #101015;
  --bg-card: #15151c;
  --text-main: #f5f5f5;
  --text-muted: #b5b5b5;
  --gold: #d4af37;
  --gold-soft: #b89530;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.65);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #2b2b31 0, #3e3e4c 90%, #000 100%);
  color: var(--text-main);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  flex: 1;
}

/* =========================================
   HEADER / NAV
========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 7, 0.96),
    rgba(5, 5, 7, 0.85),
    transparent
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: radial-gradient(
    circle at 30% 20%,
    #fff 0,
    #f5e3b0 18%,
    #b1831f 54%,
    #050507 100%
  );
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-top-color: rgba(255, 255, 255, 0.7);
  border-left-color: rgba(255, 255, 255, 0.7);
}

.brand-mark span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 17px;
  color: #050507;
  letter-spacing: 0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}

nav a {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--text-muted);
  padding-bottom: 4px;
  font-weight: 400;
  opacity: 0.85;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transition: width var(--transition-fast);
}

nav a:hover {
  color: var(--text-main);
  opacity: 1;
}

nav a:hover::after {
  width: 100%;
}

/* Botón de contacto nav */
.nav-contact-btn {
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.18),
    rgba(5, 5, 7, 0.98)
  );
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast),
    border-color var(--transition-fast);
  position: relative;
}

.nav-contact-btn::after {
  display: none !important;
}

.nav-contact-btn:hover {
  text-decoration: none !important;
  transform: translateY(-1px);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.35),
    #050507
  );
  border-color: var(--gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
}

.nav-contact-btn span {
  font-size: 13px;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(10, 10, 14, 0.96);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 16px;
  height: 1px;
  background: var(--text-main);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -5px;
}

.nav-toggle span::after {
  top: 5px;
}

/* =========================================
   BOTONES GENÉRICOS
========================================= */
.btn-primary {
  padding: 11px 26px;
  border-radius: var(--radius-pill);
  border: none;
  background: linear-gradient(135deg, #f6e7aa, #d4af37, #9d7921);
  color: #050507;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  cursor: pointer;
  transition:
    transform var(--transition-fast),
    box-shadow var(--transition-fast),
    filter var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.95);
}

.btn-ghost {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: rgba(10, 10, 15, 0.9);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-ghost:hover {
  background: rgba(24, 24, 32, 0.98);
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--text-main);
  transform: translateY(-1px);
}

.btn-block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* =========================================
   HERO (INDEX)
========================================= */
.hero {
  padding: 70px 0 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 60px;
  align-items: center;

}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.14;
  margin-bottom: 18px;
}

.hero-title .highlight {
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 24px;
}

.hero-badge {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-main);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.2),
    rgba(10, 10, 15, 0.92)
  );
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-meta {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
}

/* Imagen de portada (columna derecha) */
.hero-image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #000;
  min-height: 320px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tarjeta inferior ("Proyectos en curso") */
.hero-card-wrapper {
  margin-top: 26px;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.25),
    rgba(7, 7, 12, 0.98)
  );
  padding: 18px 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  min-height: 260px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.1), transparent 40%);
  mix-blend-mode: soft-light;
  opacity: 0.7;
  pointer-events: none;
}

/* Disposición horizontal del bloque */
.hero-card.hero-card-horizontal {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

/* Columna izquierda: texto */
.hero-card-main {
  flex: 1.6;
  display: flex;
  flex-direction: column;
  gap: 22px;
  justify-content: flex-start;
}

/* Columna derecha: bloques hospitality / retail */
.hero-card-moods {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cabecera interna (topnote + pill) */
.hero-card-header-left {
  display: block;
  margin-bottom: 6px;
}

.hero-card-topstack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.hero-card-topnote {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-card-topnote span {
  color: var(--gold);
  font-weight: 600;
}

/* Pill genérica */
.pill {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 0, 0, 0.65);
  background: rgba(5, 5, 7, 0.35);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Pill concreta del hero-card */
.hero-card-pill {
  align-self: flex-start;
  margin-bottom: 22px; /* espacio entre pill y título */
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #5cffc4;
  box-shadow: 0 0 12px rgba(92, 255, 196, 0.9);
}

.hero-card-title {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.hero-card-sub {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 95%;
  line-height: 1.7;
  margin-bottom: 6px;
}

/* HERO MOOD */
.hero-mood {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* dentro de la tarjeta horizontal no queremos margen extra arriba */
.hero-card-moods .hero-mood {
  margin-top: 0;
}

.hero-mood-main,
.hero-mood-secondary {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 130px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 16px;
}

.hero-mood-main {
  background-image: linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://images.pexels.com/photos/3457298/pexels-photo-3457298.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.hero-mood-secondary {
  background-image: linear-gradient(
      145deg,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.7)
    ),
    url("https://images.pexels.com/photos/3735410/pexels-photo-3735410.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.hero-mood-tag {
  background: rgba(212, 175, 55, 0.24);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 4px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  flex-shrink: 0;
}

.hero-mood-label {
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 340px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.7);
}

.hero-mood-label span {
  display: block;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f8f3de;
  margin-bottom: 4px;
}

/* =========================================
   TIRA DE MATERIALES (INDEX)
========================================= */
.materials-strip {
  padding-bottom: 50px;
}

.materials-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.materials-card {
  height: 340px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  background-size: cover;
  background-position: center;
  filter: brightness(0.88);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.materials-card:hover {
  transform: translateY(-4px);
  filter: brightness(1);
}

.materials-label {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 26px 24px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-main);
  background: linear-gradient(
    to top,
    rgba(5, 5, 7, 0.9),
    rgba(5, 5, 7, 0.7),
    rgba(5, 5, 7, 0.2)
  );
  backdrop-filter: blur(3px);
}

.materials-label span {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 5px;
  color: var(--gold);
  letter-spacing: 0.03em;
}

/* =========================================
   SECCIONES GENERALES
========================================= */
section {
  padding: 50px 0;
}

.section-header {
  margin-bottom: 32px;
  max-width: 640px;
}

.section-kicker {
  font-size: 24px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-muted);
  
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================================
   QUIÉNES SOMOS
========================================= */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: center;
}

.text-block p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
}

.text-block p + p {
  margin-top: 12px;
}

.checklist {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.checklist-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-main);
}

.check-icon {
  width: 16px;
  height: 16px;
  border-radius: 6px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
}

.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.45),
    transparent 40%
  );
}

.about-visual-label {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-main);
  background: rgba(5, 5, 7, 0.82);
  backdrop-filter: blur(6px);
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.85),
    inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.about-visual-label span {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--gold);
  padding: 6px 12px;
  background: rgba(5, 5, 7, 0.75);
  border-radius: 12px;
  border-left: 2px solid var(--gold);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.7);
}

/* =========================================
   PRODUCTOS (INDEX)
========================================= */


.product-card {
  
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.02),
    rgba(10, 10, 15, 0.98)
  );
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 18px 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.75);
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.9);
}

/* Orden por defecto: texto izquierda, imagen derecha */
.product-card > :first-child {
  order: 1;
}

.product-card > .product-visual {
  order: 2;
}

/* En las tarjetas pares, invertimos (foto izquierda, texto derecha) */
.products-grid .product-card:nth-child(even) > :first-child {
  order: 2;
}

.products-grid .product-card:nth-child(even) > .product-visual {
  order: 1;
}

@media (max-width: 960px) {
  .product-card {
    grid-template-columns: minmax(0, 1fr);
  }
  /* Fuerza siempre texto arriba, foto abajo en móvil */
  .product-card > :first-child {
    order: 1 !important;
  }
  .product-card > .product-visual {
    order: 2 !important;
  }
}

.bullet-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.bullet-list {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
  padding-left: 16px;
}

.bullet-list li {
  margin-bottom: 3px;
}

.product-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-top: 4px;
}

.product-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 45%);
}

.product-visual-inner {
  position: relative;
  padding: 14px 14px 12px;
  z-index: 1;
}

.product-visual-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 12px;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.75);
  background: rgba(5, 5, 7, 0.6);
  padding: 6px 12px;
  border-radius: 12px;
  width: fit-content;
  border-left: 2px solid var(--gold);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  background: rgba(5, 5, 7, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.product-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* =========================================
   APLICACIONES
========================================= */
.apps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

.apps-list {
  list-style: none;
  display: grid;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  color: var(--text-main);
}

.apps-list li::before {
  content: "▸";
  color: var(--gold);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.apps-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.18),
    rgba(10, 10, 15, 0.98)
  );
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.apps-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 10px;
}

.apps-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* =========================================
   CONTACTO
========================================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-highlight {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.contact-meta {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.contact-details {
  font-size: 13px;
  display: grid;
  gap: 6px;
}

.contact-details a {
  color: var(--gold);
}

.contact-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.16),
    rgba(10, 10, 15, 0.98)
  );
  padding: 22px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 10px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.form-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.form-input,
.form-textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 5, 7, 0.9);
  color: var(--text-main);
  padding: 9px 11px;
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(181, 181, 181, 0.5);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: rgba(5, 5, 7, 0.98);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.form-textarea {
  min-height: 110px;
  resize: vertical;
}

.form-footnote {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.6;
}

.form-submit {
  margin-top: 16px;
}

/* =========================================
   FOOTER
========================================= */
footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0 22px;
  font-size: 11px;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 14px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--text-main);
}

/* =========================================
   PÁGINAS DE PRODUCTO
========================================= */
.breadcrumb {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--text-muted);
}

.breadcrumb a:hover {
  color: var(--text-main);
}

.product-hero {
  padding: 40px 0 30px;
}

.product-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: stretch;
}

/* Tarjeta galería principal */
.gallery-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.16),
    rgba(10, 10, 15, 0.98)
  );
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.gallery-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 10px;
  max-height: 380px;
}

.gallery-main img {
  width: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid transparent;
  cursor: pointer;
  opacity: 0.8;
  transition:
    border-color var(--transition-fast),
    opacity var(--transition-fast),
    transform var(--transition-fast);
  background: #000;
}

.gallery-thumb img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}

.gallery-thumb.active {
  border-color: rgba(212, 175, 55, 0.9);
  opacity: 1;
  transform: translateY(-1px);
}

.gallery-caption {
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Panel info producto */
.product-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.product-kicker.product-page-kicker {
  letter-spacing: 0.32em;
}

.product-side h1.product-title {
  font-size: clamp(28px, 3.2vw, 36px);
  margin: 4px 0 10px;
}

.product-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}

.product-tag-pill {
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(212, 175, 55, 0.6);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.2),
    rgba(10, 10, 15, 0.96)
  );
}

.product-meta-small {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.product-side-actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Layout contenido bajo hero producto */
.layout-2col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: flex-start;
}

.info-card {
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top left,
    rgba(255, 255, 255, 0.02),
    rgba(10, 10, 15, 0.98)
  );
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 10px;
}

.product-hero-list {
  list-style: none;
  font-size: 13px;
  color: var(--text-main);
  margin-top: 6px;
  padding-left: 0;
}

.product-hero-list li {
  margin-bottom: 4px;
  position: relative;
  padding-left: 1em;
}

.product-hero-list li::before {
  content: "•";
  color: var(--gold);
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

/* CTA inferior producto */
.cta-strip {
  margin-top: 32px;
  border-radius: var(--radius-xl);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.22),
    rgba(5, 5, 7, 0.98)
  );
  padding: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
}

.cta-text {
  font-size: 13px;
  color: var(--text-main);
}

.cta-text span {
  color: var(--gold);
  font-weight: 600;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card.hero-card-horizontal {
    flex-direction: column;
  }

  .grid-2,
  .apps-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-visual {
    min-height: 220px;
  }

  .materials-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-hero-inner,
  .layout-2col {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  header {
    background: rgba(5, 5, 7, 0.98);
  }

  .materials-strip-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 520px) {
  .hero-card {
    padding: 20px 18px;
  }

  .section-title {
    font-size: 22px;
  }

  .product-card,
  .contact-card,
  .apps-card,
  .info-card,
  .cta-strip {
    padding: 18px 16px;
  }

  .materials-card {
    height: 260px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* =========================================
   HERO A PANTALLA COMPLETA TIPO MATERIO
========================================= */

.hero-full {
  position: relative;
  padding: 110px 0 120px;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--text-main);

  /* Imagen a ancho completo + degradado oscuro */
  background-image:
    linear-gradient(120deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.35)),
    url("/assets/portada/hero_optimized.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Capa extra por si quieres jugar con opacidad sin tocar la imagen */
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Contenido limitado en ancho pero pegado a la izquierda */
.hero-full-inner {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Ajustes de tipografía para que se vea más potente */
.hero-title-main {
  font-size: clamp(40px, 4.5vw, 52px);
  line-height: 1.07;
}

.hero-title-main .highlight {
  display: block;
  margin-top: 6px;
}

.hero-subtitle-main {
  max-width: 520px;
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions-main {
  margin-top: 14px;
  gap: 16px;
}

.hero-meta-main {
  margin-top: 18px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Un poquito menos de tracking para que se lea mejor sobre foto */
.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.26em;
}

/* Responsive: en móvil ajustamos padding y tamaño */
@media (max-width: 780px) {
  .hero-full {
    padding: 90px 0 80px;
    background-position: center;
  }

  .hero-full-inner {
    max-width: 100%;
  }

  .hero-title-main {
    font-size: clamp(30px, 8vw, 38px);
  }

  .hero-subtitle-main {
    font-size: 4px;
  }
}
/* Color rojo para los textos solicitados */
.hero-kicker,
.hero-meta-main {
  color: #ffffff !important;
  font-size:12px;
}
/* --- STYLE 2: Underline Architectural --- */
.style-underline {
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 14px;
}

.style-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 290px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, transparent);
  border-radius: 10px;
}

.style-underline .brand {
  display: block;
  margin-top: 8px;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.08em;
}
.product-card > div:first-of-type {
  order: 1;
}

.products-grid .product-card:nth-child(even) > div:first-of-type {
  order: 2;
}
.product-tag {
  position: absolute;
  top: 14px;
  right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(5, 5, 7, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
/* --- Mejora separación y altura de tarjetas de producto --- */

/* Más espacio entre tarjetas */
.products-grid {
  display: grid;
  gap: 40px;          /* antes 26px */
  margin-top: 26px;   /* un poco de aire respecto al título de sección */
}

/* Tarjeta un pelín más alta y cómoda */
.product-card {
  padding: 26px 24px 22px;  /* más padding interno */
}

/* Imagen más alta para que luzca mejor */
.product-visual {
  min-height: 300px;  /* antes 180px */
}

/* En pantallas pequeñas, ajustamos un poco para que no sea exagerado */
@media (max-width: 960px) {
  .products-grid {
    gap: 28px;
  }

  .product-visual {
    min-height: 220px;
  }
}
/* =========================================
   PRODUCT CARDS — ESTILO LIBRE / SIN TARJETAS
========================================= */

/* Contenedor general más aireado */
.products-grid {
  display: grid;
  gap: 60px; /* mucha más separación entre productos */
  margin-top: 60px;
}

/* Quitamos tarjeta, bordes, fondos, sombras */
.product-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;

  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap:30px;
  align-items: center;
  position: relative;
}

/* Alternancia: incluso → imagen izquierda */
.products-grid .product-card:nth-child(even) {
  grid-template-columns: 1fr 1.3fr;
}
.products-grid .product-card:nth-child(even) > *:first-child {
  order: 2;
}
.products-grid .product-card:nth-child(even) .product-visual {
  order: 1;
}

/* Imagen protagonista */
.product-visual {
  border-radius: 18px;
  overflow: hidden;
  min-height: 360px !important;
  border: none !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* Quitamos el degradado oscuro encima de la imagen */
.product-visual::after {
  display: none !important;
}

/* Texto limpio */
.product-card .product-title {
  font-size: 32px;
  margin-bottom: 12px;
}

.product-card .product-sub {
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Botones alineados más minimalistas */
.product-card .btn-ghost {
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 12px;
}

/* Etiqueta superior (ej: "Madera flexible") → estilo más editorial */
.product-tag {
  position: absolute;
  top: -40px;
  left: 0;
  background: none !important;
  border: none !important;
  color: #d32011 !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* ============================
   QUIÉNES SOMOS – NUEVO DISEÑO
============================ */
.about-section {
  padding: 70px 0;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-intro {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  max-width: 540px;
}

/* Datos clave */
.about-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 6px;
}

.about-fact-item {
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.18),
    rgba(10, 10, 15, 0.96)
  );
}

.about-fact-number {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 4px;
}

.about-fact-label {
  font-size: 11px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Dos columnas de texto */
.about-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 10px;
}

.about-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 15px;
  margin-bottom: 6px;
}

.about-list {
  list-style: none;
  padding-left: 0;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-list li {
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 4px;
}

.about-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}

/* Ajustes visual derecha */
.about-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.8);
  background-size: cover;
  background-position: center;
  min-height: 380px;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.45),
    transparent 40%
  );
}

/* Etiqueta superior */
.about-visual-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(5, 5, 7, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.7);
  color: var(--text-main);
}

/* Reutilizamos el label inferior existente pero con un poco más de aire */
.about-visual-label {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-main);
  background: rgba(5, 5, 7, 0.9);
  backdrop-filter: blur(6px);
  padding: 20px 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.85),
    inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.about-visual-label span {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gold);
  padding: 5px 11px;
  background: rgba(5, 5, 7, 0.85);
  border-radius: 10px;
  border-left: 2px solid var(--gold);
}

/* Responsive */
@media (max-width: 960px) {
  .about-facts {
    grid-template-columns: minmax(0, 1fr);
  }
  .about-columns {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* Galería de producto con 6 miniaturas */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

/* Altura un poco mayor para que se vean bien */
.gallery-thumb img {
  height: 80px;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 960px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .gallery-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .gallery-thumb img {
    height: 70px;
  }
}



/**********************************
 * OPCIÓN 1 – LUXE SOFT PANELS
 **********************************/

/* Secciones un poco más claras */
#aplicaciones,
#contacto {
  background:#2f2f3a;
}

/* Grid: columnas igualadas y alineadas */
.apps-grid,
.contact-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  align-items: stretch;
  column-gap: 40px;
}

/* Cartas más claras, menos “bloque negro” */
.apps-card,
.contact-card {
  background: radial-gradient(
    circle at top left,
    rgba(212, 175, 55, 0.12),
    rgba(14, 14, 20, 0.96)
  );
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tipografías dentro de las cartas un pelín más claras */
.apps-card p,
.contact-highlight,
.contact-meta,
.contact-details,
.form-footnote {
  color: rgba(245, 245, 245, 0.85);
}

/* Campos del formulario algo más suaves */
.form-input,
.form-textarea {
  background: rgba(10, 10, 16, 0.9);
  border-color: rgba(255, 255, 255, 0.16);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.45);
}


/****************************************
 * CONTACTO – ESTILO "CRYSTAL MODERN LIGHT"
 * Limpio, muy legible, sin dorados fuertes
 ****************************************/

/* Fondo de sección ligeramente más claro para separar visualmente */
#contacto {
  background: #3e3e4c;
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Mantener layout: formulario izquierda */
#contacto .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

/* Forzar orden visual */
#contacto .contact-grid > :first-child { order: 2; }  /* texto */
#contacto .contact-grid > :last-child { order: 1; }  /* formulario */


/* =======================
   TARJETA DEL FORMULARIO
=========================*/

#contacto .contact-card {
  background: rgba(255, 255, 255, 0.06);          /* translucido suave */
  border-radius: 22px;
  padding: 32px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.7),
    inset 0 0 16px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  color: #ffffff;
}

/* Título y texto del bloque derecho (mucho más visible) */
#contacto .contact-highlight,
#contacto .contact-meta,
#contacto .contact-details,
#contacto .apps-list li {
  color: #f8f8f8;
  font-size: 15px;
  line-height: 1.75;
}

#contacto .apps-list li::before {
  color: var(--gold);
}

/* ========= Labels súper visibles ========= */
#contacto .form-label {
  color: #ffffff;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* ========= Campos ultra legibles ========= */

#contacto .form-input,
#contacto .form-textarea {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #ffffff;
  padding: 12px 14px;
  font-size: 15px;
  border-radius: 14px;
  outline: none;
  transition: 0.25s ease;
  backdrop-filter: blur(4px);
}

#contacto .form-input::placeholder,
#contacto .form-textarea::placeholder {
  color: rgba(255,255,255,0.65);
}

/* Hover */
#contacto .form-input:hover,
#contacto .form-textarea:hover {
  background: rgba(255,255,255,0.22);
}

/* Focus fuerte y visible */
#contacto .form-input:focus,
#contacto .form-textarea:focus {
  background: rgba(255,255,255,0.28);
  border-color: #ffffff;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.55);
  color: #fff;
}

/* ========= Botón principal limpio y atractivo ========= */

#contacto .btn-primary {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #ffffff, #d4d4d4);
  color: #000;
  border-radius: 14px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  box-shadow: 0 18px 40px rgba(255,255,255,0.12);
  transition: 0.25s ease;
}

#contacto .btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 24px 50px rgba(255,255,255,0.22);
}

/* ========= Responsive ========= */
@media (max-width: 960px) {
  #contacto .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Orden natural en móvil */
  #contacto .contact-grid > :first-child,
  #contacto .contact-grid > :last-child {
    order: initial;
  }
}
.brand-logo {
  height: 64px;       /* original 48px Ajusta si lo quieres más grande o pequeño */
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
  opacity: 0.95;
  transition: 0.25s ease;
}

.brand-logo:hover {
  opacity: 1;
  transform: translateY(-1px);
}
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(40, 40, 48, 0.55);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}
/* =========================================
   SEPARADOR DORADO PREMIUM
========================================= */

.section-separator {
  width: 300px;
  height: 1px;
  margin: 70px auto 70px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.8),
    transparent
  );
  border-radius: 20px;
  opacity: 0.85;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}
/* =========================================
   FONDOS ALTERNOS ENTRE SECCIONES
   #3e3e4c y #2f2f3a
========================================= */

/* Todas las secciones: base gris 1 */
section {
  padding: 50px 0;           /* mantenemos tu padding */
  background-color: #3e3e4c; /* gris más claro */
}

/* Secciones pares: gris 2 */
section:nth-of-type(even) {
  background-color: #2f2f3a; /* gris más oscuro */
}
