* {
  font-style: normal !important;
}

:root {
  --bg: #0F0D0B;
  --bg-section: #1A1612;
  --bg-card: #211D18;
  --text: #F5F0EA;
  --text-muted: #9C9189;
  --accent: #C8B89A;
  --accent-dim: #7A6E62;
  --border: rgba(200, 184, 154, 0.15);
  --navbar-h: 68px;
  --font: 'Inter', sans-serif;
}

[data-theme="dark"] {
  --bg: #0F0D0B;
  --bg-section: #1A1612;
  --bg-card: #211D18;
  --text: #F5F0EA;
  --text-muted: #9C9189;
  --accent: #C8B89A;
  --accent-dim: #7A6E62;
  --border: rgba(200, 184, 154, 0.15);
}

[data-theme="light"] {
  --bg: #C8BAA8;
  --bg-section: #D6CBB8;
  --bg-card: #F5F0EA;
  --text: #1A1208;
  --text-muted: #4A3A28;
  --accent: #7A4A1E;
  --accent-dim: #A07848;
  --border: rgba(60, 35, 10, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: background 0.4s, color 0.4s;
  overflow-x: hidden;
}

/* NAVBAR */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
}

nav.scrolled {
  background: rgba(15, 13, 11, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

[data-theme="light"] nav.scrolled {
  background: rgba(200, 186, 168, 0.96);
  border-bottom: 1px solid rgba(60, 35, 10, 0.3);
}

.nav-logo {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

nav.scrolled .nav-logo {
  opacity: 1;
  pointer-events: all;
}

.nav-logo img {
  height: 34px;
}

[data-theme="light"] nav.scrolled .nav-logo img {
  filter: invert(1) sepia(1) saturate(0.5) brightness(0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links > li > a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 234, 0.80);
  text-decoration: none;
  padding: 8px 14px;
  transition: color 0.25s;
  display: block;
}

.nav-links > li > a:hover {
  color: #C8B89A;
}

/* LIGHT MODE — navbar siempre oscuro, con o sin scroll */
[data-theme="light"] .nav-links > li > a {
  color: var(--text-muted);
}

[data-theme="light"] .nav-links > li > a:hover {
  color: var(--accent);
}

[data-theme="light"] nav.scrolled .nav-links > li > a {
  color: var(--text-muted);
}

[data-theme="light"] nav.scrolled .nav-links > li > a:hover {
  color: var(--accent);
}

[data-theme="light"] #theme-btn {
  border-color: var(--border);
  color: var(--text);
}

[data-theme="light"] nav.scrolled #theme-btn {
  border-color: var(--border);
  color: var(--text);
}

[data-theme="light"] #hamburger {
  color: var(--text);
}

[data-theme="light"] nav.scrolled #hamburger {
  color: var(--text);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 170px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}

.nav-links li:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 9px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  text-decoration: none;
}

.dropdown-menu a:hover {
  color: var(--accent);
  background: rgba(200, 184, 154, 0.06);
}

.dropdown-sep {
  height: 1px;
  background: var(--border);
  margin: 6px 16px;
}

#theme-btn {
  background: none;
  border: 1px solid rgba(245, 240, 234, 0.35);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: #F5F0EA;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, color 0.25s;
  margin-left: 8px;
}

#theme-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

#hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #F5F0EA;
  padding: 4px;
  margin-left: 4px;
  align-items: center;
  justify-content: center;
  transition: color 0.25s;
}

#hamburger:hover {
  color: var(--accent);
}

/* MENÚ MOBILE */
.nav-mobile-menu {
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: rgba(26, 22, 18, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 3px solid var(--accent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  flex-direction: column;
  padding: 16px 32px 28px;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
}

[data-theme="light"] .nav-mobile-menu {
  background: rgba(200, 186, 168, 0.98);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.nav-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-mobile-menu a {
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s;
}

.nav-mobile-menu a:last-child {
  border-bottom: none;
}

.nav-mobile-menu a:hover {
  color: var(--accent);
}

.nav-mobile-sep {
  height: 1px;
  background: var(--border);
  margin: 4px 0;
}

/* HERO */
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  max-width: none;
  padding: 0;
  margin: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

[data-theme="dark"] .hero-slide::after,
:root .hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 22, 18, 0.3) 0%,
      rgba(26, 22, 18, 0.1) 35%,
      rgba(26, 22, 18, 0.5) 70%,
      rgba(26, 22, 18, 1) 100%);
}

[data-theme="light"] .hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(214, 203, 184, 0.5) 0%,
      rgba(214, 203, 184, 0.6) 35%,
      rgba(214, 203, 184, 0.8) 70%,
      rgba(214, 203, 184, 1) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  padding-top: var(--navbar-h);
}

.hero-logo {
  width: clamp(200px, 34vw, 460px);
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 1.2s 0.4s forwards;
  filter: brightness(100) drop-shadow(0 0 30px rgba(200, 184, 154, 0.2));
}

[data-theme="light"] .hero-logo {
  filter: invert(1) sepia(1) saturate(0.8) brightness(0.25) drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.hero-tagline {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: 0.01em;
  color: #F5F0EA;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp 1.2s 0.7s forwards;
  transition: opacity 0.5s;
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.6);
}

[data-theme="light"] .hero-tagline {
  color: #2A1A08;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.4);
}

.hero-sub {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #C8B89A;
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 1.2s 1s forwards;
  transition: opacity 0.5s;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.7);
}

[data-theme="light"] .hero-sub {
  color: #2A1A08;
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.4);
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(200, 184, 154, 0.35);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.hero-dot.active {
  background: #C8B89A;
  transform: scale(1.5);
}

[data-theme="light"] .hero-dot {
  background: rgba(42, 26, 8, 0.3);
}

[data-theme="light"] .hero-dot.active {
  background: #2A1A08;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SECTIONS */
section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  max-width: none;
  padding: 100px 0;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: block;
}

h2 {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 32px;
}

/* MANIFIESTO */
#manifiesto {
  background: var(--bg-section);
  max-width: none;
  padding: 100px 0;
}

#manifiesto .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.manifiesto-text p {
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.manifiesto-text p strong {
  color: var(--text);
  font-weight: 500;
}

.manifiesto-text .firma {
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 40px;
  display: block;
}

.manifiesto-imagen {
  display: flex;
  align-items: center;
  justify-content: center;
}

.manifiesto-imagen img {
  width: 100%;
  object-fit: contain;
  opacity: 0.88;
  transition: opacity 0.4s;
  display: block;
}

.manifiesto-imagen img:hover {
  opacity: 1;
}

/* ECOSISTEMA */
#ecosistema {
  max-width: none;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.eco-parallax-bg {
  position: absolute;
  inset: -80px 0;
  background-image: url('../images/cristal.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.18);
  z-index: 0;
}

.eco-inner {
  position: relative;
  z-index: 1;
  padding: 100px 48px;
}

.eco-header {
  text-align: center;
  margin-bottom: 64px;
}

.divider {
  width: 48px;
  height: 1px;
  background: #C8B89A;
  margin: 0 auto 48px;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.eco-grid-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: calc((1200px / 3) * 2 + 12px);
  margin: 12px auto 0;
}

.eco-card {
  background: rgba(15, 13, 11, 0.72);
  backdrop-filter: blur(8px);
  padding: 40px 40px 52px;
  border: 1px solid rgba(200, 184, 154, 0.12);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: background 0.3s, border-color 0.3s;
}

.eco-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #C8B89A;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.eco-card:hover {
  background: rgba(200, 184, 154, 0.07);
  border-color: #7A6E62;
}

.eco-card:hover::before {
  transform: scaleX(1);
}

.eco-card-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 24px;
  opacity: 0.7;
  filter: brightness(100);
  display: block;
}

.eco-card-label {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #C8B89A;
  margin-bottom: 10px;
  display: block;
}

.eco-card h3 {
  font-family: var(--font);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.01em;
  color: #F5F0EA;
  margin-bottom: 14px;
  line-height: 1;
}

.eco-card p {
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(200, 184, 154, 0.7);
  max-width: 380px;
}

.eco-card-arrow {
  position: absolute;
  bottom: 28px;
  right: 32px;
  font-size: 1.2rem;
  color: #7A6E62;
  transition: transform 0.3s, color 0.3s;
}

.eco-card:hover .eco-card-arrow {
  transform: translate(4px, -4px);
  color: #C8B89A;
}

/* NOVEDADES */
#novedades {
  background: var(--bg-section);
  max-width: none;
  padding: 100px 0;
}

.novedades-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.novedades-header a {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2px;
  transition: border-color 0.3s;
  white-space: nowrap;
}

.novedades-header a:hover {
  border-color: var(--accent);
}

.novedades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.novedad-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.novedad-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] .novedad-card:hover {
  box-shadow: 0 16px 40px rgba(60, 35, 10, 0.2);
}

.novedad-img {
  height: 180px;
  background-size: cover;
  background-position: center;
  display: block;
}

.novedad-body {
  padding: 24px;
}

.novedad-tag {
  font-family: var(--font);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}

.novedad-body h4 {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.35;
}

.novedad-body p {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CONTACTO */
#contacto {
  text-align: center;
  background: var(--bg);
  max-width: none;
  padding: 100px 48px;
}

#contacto h2 {
  margin-bottom: 12px;
}

#contacto .sub {
  font-family: var(--font);
  font-weight: 300;
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.85;
}

.contact-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 32px;
}

.contact-links a {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.contact-links svg {
  flex-shrink: 0;
}

/* BOT WIDGET */
#bot-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

#bot-window {
  width: 320px;
  background: #211D18;
  border: 1px solid rgba(200, 184, 154, 0.15);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s, transform 0.3s;
}

#bot-window.bot-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

.bot-header {
  background: #1A1612;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(200, 184, 154, 0.15);
}

.bot-header-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9C9189;
}

.bot-dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C8B89A;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

#bot-close {
  background: none;
  border: none;
  color: #9C9189;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 2px 6px;
  transition: color 0.2s;
}

#bot-close:hover {
  color: #C8B89A;
}

.bot-messages {
  padding: 16px;
  min-height: 180px;
  max-height: 260px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bot-msg,
.user-msg {
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  padding: 10px 14px;
  border-radius: 2px;
  max-width: 90%;
}

.bot-msg {
  background: #1A1612;
  color: #9C9189;
  align-self: flex-start;
}

.user-msg {
  background: rgba(200, 184, 154, 0.1);
  color: #F5F0EA;
  align-self: flex-end;
  border: 1px solid rgba(200, 184, 154, 0.15);
}

.bot-input-row {
  display: flex;
  border-top: 1px solid rgba(200, 184, 154, 0.15);
}

#bot-input {
  flex: 1;
  background: transparent;
  border: none;
  color: #F5F0EA;
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 12px 16px;
  outline: none;
}

#bot-input::placeholder {
  color: #7A6E62;
}

#bot-send {
  background: transparent;
  border: none;
  border-left: 1px solid rgba(200, 184, 154, 0.15);
  color: #C8B89A;
  font-size: 1.1rem;
  padding: 0 16px;
  cursor: pointer;
  transition: background 0.2s;
}

#bot-send:hover {
  background: rgba(200, 184, 154, 0.08);
}

#bot-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #211D18;
  border: 1px solid rgba(200, 184, 154, 0.15);
  color: #C8B89A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: border-color 0.25s, transform 0.25s;
}

#bot-toggle:hover {
  border-color: #C8B89A;
  transform: scale(1.08);
}

/* FOOTER */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
}

.footer-logo img {
  height: 26px;
  opacity: 0.55;
}

[data-theme="light"] .footer-logo img {
  filter: invert(1) sepia(1) saturate(0.5) brightness(0.3);
  opacity: 0.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  justify-content: center;
}

.footer-links a {
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-copy {
  font-family: var(--font);
  font-size: 0.64rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  color: var(--accent-dim);
  text-transform: uppercase;
  text-align: right;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-links li:not(:has(#theme-btn)):not(:has(#hamburger)) {
    display: none;
  }

  #hamburger {
    display: flex;
  }

  #manifiesto .section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .manifiesto-text {
    text-align: center;
  }

  .manifiesto-text .firma {
    text-align: center;
  }

  .manifiesto-imagen {
    order: 2;
    width: 100%;
  }

  .manifiesto-imagen img {
    width: 100%;
  }

  .eco-grid {
    grid-template-columns: 1fr;
  }

  .eco-grid-bottom {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .novedades-header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
  }

  .novedades-header > div {
    text-align: center;
  }

  .novedades-header h2 {
    margin-bottom: 0;
  }

  .novedades-header a {
    white-space: nowrap;
  }

  .novedades-grid {
    grid-template-columns: 1fr;
  }

  section {
    padding: 72px 24px;
  }

  .section-inner {
    padding: 0 24px;
  }

  .eco-inner {
    padding: 72px 24px;
  }

  footer {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-copy {
    text-align: center;
  }

  #bot-window {
    width: 290px;
  }
}

/* Background images — hero slides */
.hero-slide.slide-cristal  { background-image: url('../images/cristal.jpg'); }
.hero-slide.slide-tierra   { background-image: url('../images/tierra.jpg'); }
.hero-slide.slide-agua     { background-image: url('../images/agua.jpg'); }
.hero-slide.slide-aire     { background-image: url('../images/aire.jpg'); }
.hero-slide.slide-espiral  { background-image: url('../images/espiral.jpg'); }

/* Background images — novedad cards */
.novedad-img-cristal { background-image: url('../images/cristal.jpg'); }
.novedad-img-tierra  { background-image: url('../images/tierra.jpg'); }
.novedad-img-espiral { background-image: url('../images/espiral.jpg'); }