:root {
  --gold: #C49A3C;
  --gold-light: #E8C870;
  --dark: #0D0D0D;
  --dark-2: #161616;
  --dark-3: #1E1E1E;
  --cream: #F5EDD8;
  --cream-dim: #D9CCAD;
  --text: #E8E0D0;
  --text-muted: #8A8070;
  --accent: #2A4A3E;

  --bg: var(--dark);
  --surface: var(--dark-2);
  --surface-2: var(--dark-3);
  --line: rgba(196, 154, 60, 0.14);
  --success: #25D366;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  --nav-h: 82px;
  --container: 1200px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  padding-top: var(--nav-h);
  overflow-x: hidden;
  font-weight: 300;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  scroll-margin-top: 100px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 154, 60, 0.15);
  z-index: 1000;
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  white-space: nowrap;
  z-index: 110;
}

.nav-logo span {
  color: var(--cream);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link-item {
  position: relative;
  color: var(--cream-dim);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-link-item:hover,
.nav-link-item.active-link {
  color: var(--gold);
}

.nav-link-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link-item:hover::after,
.nav-link-item.active-link::after {
  width: 100%;
}

.nav-hamburger {
  display: none;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.section-label::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

p {
  color: var(--text-muted);
  font-size: 1rem;
}

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 2.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 500;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-outline {
  border: 1px solid rgba(196, 154, 60, 0.5);
  color: var(--cream-dim);
  background: transparent;
  font-weight: 400;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

#hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1.2rem, 4vw, 3rem) 5rem;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 50%, rgba(196, 154, 60, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 85% 80%, rgba(42, 74, 62, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid-line {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196, 154, 60, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196, 154, 60, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.8rem;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-eyebrow::before {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.6rem;
  font-weight: 900;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  max-width: 520px;
  font-size: clamp(0.9rem, 2.5vw, 1.05rem);
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 2.8rem;
}

.hero-cta {
  display: inline-flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 14%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  animation: rotateBadge 20s linear infinite;
  z-index: 2;
}

@keyframes rotateBadge {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-badge-inner {
  animation: rotateBadge 20s linear infinite reverse;
  text-align: center;
}

.hero-badge-num {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

#nosotros {
  background: var(--dark-2);
  border-top: 1px solid rgba(196, 154, 60, 0.08);
}

.nosotros-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.nosotros-text p {
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 1.2rem;
}

.nosotros-text strong {
  color: var(--cream-dim);
  font-weight: 500;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--dark-3);
  border: 1px solid rgba(196, 154, 60, 0.12);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(196, 154, 60, 0.35);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

#clientes {
  background: var(--dark);
  text-align: center;
}

#clientes .section-label {
  justify-content: center;
}

#clientes .section-label::before {
  display: none;
}

#clientes .section-label::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.clientes-grid {
  max-width: 900px;
  margin: 3rem auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cliente-chip {
  padding: 0.7rem 1.5rem;
  border: 1px solid rgba(196, 154, 60, 0.2);
  color: var(--cream-dim);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.cliente-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 154, 60, 0.05);
}

#productos {
  background: var(--dark-2);
  border-top: 1px solid rgba(196, 154, 60, 0.08);
}

.productos-header {
  max-width: var(--container);
  margin: 0 auto 3.5rem;
}

.productos-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(196, 154, 60, 0.1);
}

.producto-card {
  background: var(--dark-3);
  padding: 2.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.producto-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.producto-card:hover {
  background: #1a1a1a;
}

.producto-card:hover::after {
  transform: scaleX(1);
}

.producto-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.producto-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--cream);
}

.producto-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
}

#galeria {
  background: var(--dark);
  padding-bottom: 5rem;
}

.galeria-section {
  padding-left: 0;
  padding-right: 0;
}

.galeria-header {
  max-width: var(--container);
  margin: 0 auto 3rem;
  padding: 0 clamp(1.2rem, 4vw, 3rem);
}

.galeria-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  user-select: none;
  padding: 0 clamp(1.2rem, 4vw, 3rem) 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--dark-3);
  -webkit-overflow-scrolling: touch;
}

.galeria-scroll:active,
.galeria-scroll.active-drag {
  cursor: grabbing;
}

.galeria-scroll::-webkit-scrollbar {
  height: 10px;
}

.galeria-scroll::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.galeria-scroll::-webkit-scrollbar-track {
  background: var(--dark-3);
}

.galeria-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.galeria-img {
  width: min(280px, 75vw);
  height: 220px;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(0.85);
  transition: filter 0.4s ease, transform 0.4s ease;
  flex-shrink: 0;
  scroll-snap-align: start;
  cursor: zoom-in;
}

.galeria-img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.02);
}

#contacto {
  background: var(--dark-2);
  border-top: 1px solid rgba(196, 154, 60, 0.08);
}

.contacto-layout {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.contacto-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 2.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(196, 154, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-item:hover .contact-icon {
  border-color: var(--gold);
  background: rgba(196, 154, 60, 0.08);
}

.contact-info-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.contact-info-value {
  color: var(--cream);
  font-size: 0.95rem;
  transition: color 0.25s ease;
  word-break: break-word;
}

.contact-info-value:hover {
  color: var(--gold);
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(196, 154, 60, 0.15);
  color: var(--cream);
  padding: 0.85rem 1rem;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(196, 154, 60, 0.6);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.contacto-form button[type="submit"] {
  width: 100%;
  cursor: pointer;
  margin-top: 10px;
}

footer {
  background: var(--dark);
  border-top: 1px solid rgba(196, 154, 60, 0.1);
  padding: 2.5rem clamp(1.2rem, 4vw, 3rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 3000;
}

.modal-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-box {
  width: min(460px, 100%);
  background: var(--dark-2);
  border: 1px solid rgba(196, 154, 60, 0.22);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  padding: 2rem 1.5rem;
  text-align: center;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.3s ease;
}

.modal-overlay.show .modal-box {
  transform: translateY(0) scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 1px solid rgba(196, 154, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 700;
  background: rgba(196, 154, 60, 0.08);
}

.modal-icon-error {
  color: #ffb84d;
  border-color: rgba(255, 184, 77, 0.35);
  background: rgba(255, 184, 77, 0.08);
}

.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.7rem;
}

.modal-text {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.8rem;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.modal-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 4000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-content img {
  max-width: min(90vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border: 1px solid rgba(196, 154, 60, 0.22);
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.28s ease;
}

.lightbox.show .lightbox-content img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(196, 154, 60, 0.24);
  background: rgba(22, 22, 22, 0.9);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lightbox-close:hover {
  background: rgba(196, 154, 60, 0.14);
  color: var(--gold);
  transform: scale(1.05);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(196, 154, 60, 0.24);
  background: rgba(22, 22, 22, 0.9);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.lightbox-arrow:hover {
  background: rgba(196, 154, 60, 0.14);
  color: var(--gold);
}

.lightbox-arrow-left {
  left: 1.2rem;
}

.lightbox-arrow-right {
  right: 1.2rem;
}

@media (max-width: 1100px) {
  .productos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nosotros-layout,
  .contacto-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-badge {
    right: 1.2rem;
    bottom: 1.2rem;
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 74px;
  }

  nav {
    padding: 0 1rem;
  }

  .nav-logo {
    font-size: 1.2rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    max-width: 80vw;
    height: 100vh;
    background: var(--dark-2);
    border-left: 1px solid rgba(196, 154, 60, 0.2);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem 2.5rem;
    gap: 2rem;
    transition: right 0.35s ease;
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-link-item {
    font-size: 1rem;
    letter-spacing: 0.1em;
  }

  .hero-title {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-sub {
    font-size: 1rem;
  }

  .hero-badge {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .productos-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cliente-chip {
    width: 100%;
    text-align: center;
  }

  .galeria-img {
    width: 86vw;
    height: 320px;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  .lightbox-content {
    padding: 1rem;
  }

  .lightbox-close {
    top: 0.8rem;
    right: 0.8rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-arrow {
    width: 46px;
    height: 46px;
    font-size: 1.7rem;
  }

  .lightbox-arrow-left {
    left: 0.8rem;
  }

  .lightbox-arrow-right {
    right: 0.8rem;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3.5rem 1rem;
  }

  .section-title {
    font-size: 1.9rem;
  }

  .hero-eyebrow {
    font-size: 0.78rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .galeria-img {
    width: 88vw;
    height: 280px;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.6rem;
  }

  .modal-box {
    padding: 1.5rem 1rem;
  }
}