@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow+Condensed:wght@700;800;900&display=swap');

/* Colores y variables globales */
:root {
  --orange: #F26522;
  --orange-light: #FF8040;
  --orange-dark: #D4521A;
  --orange-glow: rgba(242, 101, 34, 0.18);
  --black: #0D0D0D;
  --black-2: #141414;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --gray-1: #333333;
  --gray-2: #555555;
  --gray-3: #888888;
  --gray-4: #BBBBBB;
  --white: #FFFFFF;
  --white-soft: #F5F5F5;
  --font-main: 'Barlow', sans-serif;
  --font-display: 'Barlow Condensed', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 0px;
  --radius-sm: 0px;
  --radius-lg: 0px;
  --shadow: none;
  --shadow-orange: none;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Estilos de texto y títulos */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.body-lg {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  color: var(--gray-4);
  line-height: 1.7;
}

/* Helpers para el armado del sitio */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

/* Colores de acento para usar rápido */
.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-gray   { color: var(--gray-4); }

/* Estilos de botones custom */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 0;
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: normal;
  text-align: center;
  line-height: 1.35;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Menú de arriba (Navbar) */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s ease;
}

#navbar.scrolled {
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--orange);
}

.logo-img {
  height: 64px; /* Aumentado de 48px */
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

#navbar.scrolled .logo-img {
  height: 48px; /* Aumentado de 38px */
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.nav-cta svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle span + span {
  margin-top: 5px;
}

.mobile-menu {
  display: none;
}

/* Sección de entrada */
#hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--black) 0%,
    var(--black-3) 50%,
    #1a0f00 100%
  );
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  width: 40%;
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
  filter: grayscale(1);
}

.hero-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Decorative orange line */
.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(242,101,34,0.06) 60%,
    rgba(242,101,34,0.12) 100%
  );
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 2;
}

.hero-images-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  z-index: 1;
}

.hero-images-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--black) 0%,
    rgba(13,13,13,0.4) 30%,
    transparent 100%
  );
  z-index: 2;
}

.hero-img-cell {
  overflow: hidden;
}

.hero-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 8s ease;
}

.hero-img-cell:nth-child(1) { grid-column: 1; grid-row: 1; }
.hero-img-cell:nth-child(2) { grid-column: 2; grid-row: 1 / 3; }
.hero-img-cell:nth-child(3) { grid-column: 1; grid-row: 2; }

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242,101,34,0.15);
  border: 1px solid rgba(242,101,34,0.3);
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  margin-bottom: 20px;
}

.hero-title .line-2 {
  color: var(--orange);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--gray-4);
  max-width: 500px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounceDown 2s ease infinite;
}

.hero-scroll svg {
  width: 20px;
  height: 20px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* La barrita naranja que separa secciones */
.divider-bar {
  height: 4px;
  background: linear-gradient(to right, var(--orange), var(--orange-light), transparent);
  width: 100px;
  border-radius: 2px;
  margin: 24px 0;
}

/* Títulos de cada bloque */
.section-header {
  margin-bottom: 64px;
}

.section-header .label {
  margin-bottom: 12px;
}

.section-copy-limit {
  max-width: 480px;
}

.section-header-tight {
  margin-bottom: 40px;
}

.section-header-spacious {
  margin-bottom: 64px;
}

.section-header-medium {
  margin-bottom: 56px;
}

.cats-cta {
  margin-top: 64px;
  text-align: center;
}

/* Grilla de categorías */
#categorias {
  background: var(--black-4);
}

.cats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carousel-slides {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Controles del carrusel */

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
  transition: var(--transition);
}

.cat-card:hover::before {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.cat-card:hover .slide img {
  transform: scale(1.07);
}

.cat-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  z-index: 2;
}

.cat-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 4px;
  transition: var(--transition);
}

.cat-card:hover .cat-tag {
  color: rgba(255,255,255,0.9);
}

.cat-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

/* .cat-arrow */

.cat-arrow svg {
  width: 16px;
  height: 16px;
  color: var(--white);
}


/* Sección de por qué elegirnos con el sticky */
#diferenciales {
  background: var(--black);
}

.diffs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.sticky-visual {
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  align-self: start;
}

.diffs-visual {
  position: relative;
}

.diffs-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.diffs-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diffs-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
}

.diffs-badge .num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.diffs-badge .text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.diffs-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.diff-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--black-2);
  transition: var(--transition);
}

.diff-item:hover {
  border-color: rgba(242,101,34,0.3);
  background: rgba(242,101,34,0.05);
  transform: translateX(6px);
}

.diff-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange-glow);
  border: 1px solid rgba(242,101,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.diff-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.diff-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.diff-text p {
  font-size: 0.9rem;
  color: var(--gray-3);
  line-height: 1.5;
}

/* Estilos de los ítems de la galería */
#galeria {
  background: var(--black-4);
}

.gallery-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
  flex-wrap: wrap;
}

.gallery-copy {
  max-width: 340px;
  text-align: right;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gal-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
  aspect-ratio: 3 / 4;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}

.gal-item:hover img {
  transform: scale(1.07);
}

/* Acá preferí dejar una grilla más pareja para que el 3:4 se mantenga bien en todos los tamaños. */
.gal-item-1,
.gal-item-2,
.gal-item-3,
.gal-item-4,
.gal-item-5,
.gal-item-6 {
  grid-column: auto;
  grid-row: auto;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 52px;
  height: 52px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  z-index: 1020;
}

.lightbox-close:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

/* Lightbox Navigation */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1010;
}

.lightbox-nav button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 56px;
  height: 56px;
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  pointer-events: auto;
}

.lightbox-nav button:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.lightbox-nav button svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    padding: 0 16px;
  }
  .lightbox-nav button {
    width: 44px;
    height: 44px;
  }
  .lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
}

/* Info (Contacto + Mapa) */
#contacto {
  background: var(--black);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-width: 0;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 0;
  background: var(--orange-glow);
  border: 1px solid rgba(242,101,34,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

.info-item h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}

.info-item p, .info-item a {
  font-size: 1rem;
  color: var(--gray-4);
  line-height: 1.5;
}

.info-copy,
.diff-text {
  min-width: 0;
}

.info-item > :not(.info-icon):not(.info-link-chevron) {
  min-width: 0;
}

.info-hours strong {
  color: var(--white);
}

.info-item strong {
  color: var(--white);
}

.info-value {
  color: var(--white);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.info-value-strong {
  font-size: 1.1rem;
  font-weight: 700;
}

a.info-link, .info-card {
  text-decoration: none;
  color: inherit;
  align-items: center;
  padding: 16px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,0.05);
  background: var(--black-2);
  transition: var(--transition);
  width: 100%;
}

.info-card:hover {
  border-color: var(--orange);
}

a.info-link:hover {
  background: rgba(242,101,34,0.08);
  border-color: rgba(242,101,34,0.3);
  transform: translateX(6px);
}

a.info-link .info-icon,
.info-card .info-icon {
  background: var(--black);
  transition: var(--transition);
}

a.info-link:hover .info-icon {
  background: var(--orange-glow);
}

.info-link-chevron {
  margin-left: auto;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

a.info-link:hover .info-link-chevron {
  opacity: 1;
  transform: translateX(0);
}

.social-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-4);
  transition: var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.map-container {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(255,255,255,0.07);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(80%) invert(90%) hue-rotate(180deg);
  border: none;
}

.contact-map-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--gray-3);
  text-align: center;
}

/* Formas de pago y envíos */
#envios {
  background: var(--black-4);
}

.envios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.envio-card {
  background: var(--black-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
}

.envio-card:hover {
  border-color: var(--orange);
}

.envio-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 0;
  background: var(--orange-glow);
  border: 1px solid rgba(242,101,34,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.envio-icon-wrap svg {
  width: 30px;
  height: 30px;
  color: var(--orange);
}

.envio-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}

.envio-card p {
  font-size: 0.95rem;
  color: var(--gray-3);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 0;
  background: rgba(242,101,34,0.12);
  border: 1px solid rgba(242,101,34,0.2);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
}

/* El bloque de abajo de todo */
#cta-final {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

#cta-final::before {
  display: none; /* Removed glow effect */
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.cta-title {
  margin-bottom: 24px;
}

.cta-title em {
  font-style: normal;
  color: var(--orange);
}

.cta-text {
  max-width: 520px;
  margin: 0 auto 48px;
  color: var(--gray-4);
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Estilos del pie de página */
footer {
  background: var(--black-4);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--white);
}

.footer-brand span { color: var(--orange); }

.footer-socials {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-socials a {
  color: var(--gray-2);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials a svg {
  width: 22px;
  height: 22px;
}

.footer-socials a:hover {
  color: var(--orange);
  transform: translateY(-2px);
}

.footer-credit {
  font-size: 0.78rem;
  color: var(--gray-2);
  overflow-wrap: anywhere;
}

.footer-credit a {
  color: var(--orange);
  font-weight: 600;
}

/* Botoncito de WhatsApp que flota */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3), 0 0 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: waEntrance 0.5s 1s both, waBounce 3s 2s infinite ease-in-out;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4), 0 0 30px rgba(37, 211, 102, 0.6);
}

.wa-float svg {
  width: 32px;
  height: 32px;
  color: white;
}

@keyframes waEntrance {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Efectos al scrollear */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------- */
/*    AJUSTES PARA CELULAR Y TABLET                */
/* ----------------------------------------------- */
@media (max-width: 1024px) {
  .cats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cats-grid .cat-card:first-child {
    grid-column: span 2;
    aspect-ratio: 9 / 16;
  }

  .diffs-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sticky-visual {
    position: static;
    top: auto;
  }

  .diffs-visual {
    width: min(100%, 480px);
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav-links { display: none; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    margin-top: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease, padding 0.25s ease;
  }

  #navbar.menu-open .mobile-menu {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 14px;
    padding: 16px;
    background: rgba(13,13,13,0.96);
    border: 1px solid rgba(255,255,255,0.08);
  }

  /* En celular prefiero que el menú se vea claro y fácil de tocar antes que rebuscarlo de más. */
  .mobile-menu-link,
  .mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 16px;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
  }

  .mobile-menu-link {
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--white);
  }

  .mobile-menu-cta {
    background: var(--orange);
    color: var(--white);
  }

  #navbar.menu-open .nav-toggle {
    border-color: rgba(242,101,34,0.45);
    background: rgba(242,101,34,0.08);
    color: var(--orange);
  }

  #navbar.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  #navbar.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  #navbar.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .display-xl {
    font-size: clamp(2.9rem, 15vw, 5.25rem);
    line-height: 0.94;
  }

  .display-lg {
    font-size: clamp(2rem, 10vw, 3.6rem);
  }

  .nav-inner {
    gap: 12px;
  }

  .logo-img {
    height: 54px;
  }

  #navbar.scrolled .logo-img {
    height: 44px;
  }

  .nav-cta {
    padding: 10px 16px;
    font-size: 0.82rem;
  }

  .nav-cta svg {
    width: 16px;
    height: 16px;
  }

  .hero-images-grid {
    width: 100%;
    opacity: 0.25;
  }

  .hero-bg::before { width: 100%; }

  #hero {
    justify-content: flex-end;
    padding-bottom: 64px;
    padding-top: 100px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-tag {
    margin-bottom: 18px;
  }

  .hero-subtitle {
    max-width: 420px;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: min(100%, 340px);
    justify-content: center;
  }

  .hero-scroll { display: none; }

  .hero-watermark { display: none; }

  .cats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cats-grid .cat-card:first-child {
    grid-column: span 2;
    aspect-ratio: 9 / 16;
  }

  .cat-card { aspect-ratio: 9 / 16; }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gal-item-1,
  .gal-item-2,
  .gal-item-3,
  .gal-item-4,
  .gal-item-5,
  .gal-item-6 {
    grid-column: auto;
    grid-row: auto;
  }

  .envios-grid {
    grid-template-columns: 1fr;
  }

  .diffs-badge {
    bottom: -16px;
    right: -8px;
  }

  .diff-item {
    padding: 22px;
  }

  .gallery-intro {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-copy {
    max-width: 100%;
    text-align: left;
  }

  .info-block {
    gap: 20px;
  }

  .info-item {
    gap: 16px;
  }

  .info-link-chevron {
    opacity: 1;
    transform: none;
  }

  .envio-card {
    padding: 32px 28px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .map-container {
    aspect-ratio: 4/3;
  }

  .wa-float {
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
  }

  .wa-float svg {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 640px) {
  /* Acá ya me conviene apilar más cosas para que no se sienta apretado. */
  #hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-title {
    max-width: 7ch;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gal-item-1,
  .gal-item-2,
  .gal-item-3,
  .gal-item-4,
  .gal-item-5,
  .gal-item-6 {
    grid-column: 1;
  }

  .cat-info {
    padding: 20px 16px;
  }

  .cat-tag {
    font-size: 0.64rem;
  }

  .cat-name {
    font-size: 1.35rem;
  }

  .envio-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }

  #navbar {
    padding: 14px 0;
  }

  #navbar.scrolled {
    padding: 10px 0;
  }

  .logo-img {
    height: 46px;
  }

  #navbar.scrolled .logo-img {
    height: 40px;
  }

  .nav-cta {
    padding: 9px 12px;
    gap: 6px;
    font-size: 0.76rem;
  }

  .nav-cta svg {
    width: 14px;
    height: 14px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  #navbar.menu-open .mobile-menu {
    padding: 14px;
  }

  #hero {
    padding-top: 96px;
  }

  .hero-tag {
    font-size: 0.7rem;
    padding: 6px 12px;
    letter-spacing: 0.12em;
  }

  .hero-subtitle {
    margin-bottom: 24px;
  }

  .btn-lg {
    padding: 16px 24px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }

  .cats-grid {
    grid-template-columns: 1fr;
  }

  .cats-grid .cat-card:first-child {
    grid-column: span 1;
    aspect-ratio: 9 / 16;
  }

  .cat-card {
    aspect-ratio: 9 / 16;
  }

  .diff-item {
    padding: 18px;
    gap: 14px;
  }

  .diff-icon {
    width: 42px;
    height: 42px;
  }

  .diffs-badge {
    right: 0;
    bottom: -12px;
    padding: 16px 18px;
  }

  .diffs-badge .num {
    font-size: 2.4rem;
  }

  a.info-link, .info-card {
    padding: 14px;
  }

  .info-item {
    gap: 14px;
  }

  .envio-card {
    padding: 24px 20px;
  }

  .pill {
    width: 100%;
    justify-content: center;
  }

  .footer-credit {
    max-width: 28ch;
  }

  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }

  .wa-float svg {
    width: 28px;
    height: 28px;
  }

  .social-row { gap: 8px; }
}
