/* =========================================================
   ROMED SPORTSWEAR - styles.css
   Paleta editable en :root
   ========================================================= */

:root {
  --red: #e10600;
  --red-dark: #a30000;
  --black: #0b0b0c;
  --dark-gray: #1c1c1e;
  --gray: #545458;
  --light-gray: #f4f4f5;
  --white: #ffffff;

  --gradient-red-black: linear-gradient(135deg, var(--red) 0%, var(--black) 100%);
  --gradient-black-red: linear-gradient(135deg, var(--black) 0%, var(--red-dark) 100%);

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.18);
  --header-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

section { scroll-margin-top: var(--header-height); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--gradient-red-black);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { box-shadow: var(--shadow-md); }

.btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-whatsapp {
  background: #1ebe5d;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover { background: #17a34d; box-shadow: var(--shadow-md); }

.btn-large { padding: 18px 38px; font-size: 1.1rem; }
.wa-icon { font-size: 1.1rem; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.header-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  height: var(--header-height);
  gap: 20px;
  transition: height 0.35s ease;
}
.site-header.scrolled .header-inner { height: 64px; }

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  width: auto;
  height: 56px;
  object-fit: contain;
  transition: height 0.35s ease;
}
.site-header.scrolled .logo-img { height: 48px; }
.footer-logo-img { height: 96px; }
.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--gradient-red-black);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  transition: width 0.35s ease, height 0.35s ease, font-size 0.35s ease;
}
.site-header.scrolled .logo-icon { width: 36px; height: 36px; font-size: 1.05rem; }

.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.5px;
  transition: font-size 0.35s ease;
}
.site-header.scrolled .logo-text strong { font-size: 1.05rem; }
.logo-text span {
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--red);
  font-weight: 700;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list { display: flex; gap: 26px; flex-wrap: wrap; justify-content: center; }
.nav-link {
  color: var(--black);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 6px 2px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%; height: 2px;
  background: var(--red);
  transition: width 0.25s ease;
}
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--red); }
.nav-link.active::after { width: 100%; }

.header-cta { flex-shrink: 0; padding: 10px 20px; font-size: 0.85rem; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 24px 100px;
  background:
    linear-gradient(120deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.78) 48%, rgba(38, 38, 40, 0.72) 100%),
    url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.28), rgba(0,0,0,0.62));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: var(--white);
  margin: 0 auto 0 6%;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 1.15rem;
  color: #e6e6e6;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.home-hero .hero-content h1 { max-width: 720px; }

/* ---------- HERO CAROUSEL (banner automático, solo inicio) ---------- */
.hero-carousel {
  background: none;
  background-attachment: initial;
}
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 40px) 24px 100px;
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.1s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
.hero-slide .hero-content {
  opacity: 1;
  transform: none;
}
.hero-carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.hero-float-card {
  position: absolute;
  right: 6%;
  bottom: 60px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow-md);
  min-width: 250px;
}
.hero-float-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--black);
}
.hero-float-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 6px 0;
  color: var(--dark-gray);
}

/* ---------- ABOUT ---------- */
.about-section {
  padding: 90px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  align-items: center;
  gap: 48px;
}
.about-copy .section-title {
  text-align: left;
}
.about-copy p {
  max-width: 620px;
  color: var(--gray);
  font-size: 1.05rem;
}
.about-points {
  display: grid;
  gap: 14px;
}
.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  color: var(--dark-gray);
  font-weight: 700;
  font-size: 0.92rem;
}

/* ---------- PAGE HEROES ---------- */
.page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 70px) 0 90px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(0,0,0,0.92), rgba(0,0,0,0.68)),
    url('https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}
.about-hero {
  background:
    linear-gradient(120deg, rgba(0,0,0,0.9), rgba(25,25,25,0.66)),
    url('https://images.unsplash.com/photo-1521223890158-f9f7c3d5d504?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.catalog-hero {
  background:
    linear-gradient(120deg, rgba(0,0,0,0.92), rgba(20,20,20,0.7)),
    url('https://images.unsplash.com/photo-1539185441755-769473a23570?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.contact-hero {
  background:
    linear-gradient(120deg, rgba(0,0,0,0.92), rgba(20,20,20,0.7)),
    url('https://images.unsplash.com/photo-1515886657613-9f3515b0c78f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.page-hero-content h1 {
  font-size: 3rem;
  margin: 10px 0 18px;
  color: var(--white);
}
.page-hero-content p {
  max-width: 620px;
  color: #e7e7e7;
  font-size: 1.1rem;
  margin-bottom: 28px;
}
.eyebrow {
  display: inline-block;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

/* ---------- HOME CONTENT ---------- */
.featured-section,
.steps-section,
.mission-section,
.values-section,
.contact-page-section {
  padding: 90px 0;
}
.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.news-section {
  padding: 90px 0;
  background: var(--light-gray);
}
.news-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 48px;
}
.news-image {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.news-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.news-copy h2 {
  font-size: 2rem;
  margin: 10px 0 14px;
  color: var(--black);
}
.news-copy p {
  color: var(--gray);
  margin-bottom: 24px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  margin-top: 40px;
}
.step-item,
.info-block,
.value-card,
.contact-card {
  background: var(--white);
  border: 1px solid rgba(11,11,12,0.08);
  border-radius: var(--radius-sm);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.step-item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}
.step-item h3,
.value-card h3,
.contact-card h2 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.step-item p,
.value-card p,
.contact-card p,
.info-block p {
  color: var(--gray);
}
.announcement-section {
  padding: 80px 0;
  background: var(--light-gray);
}
.announcement-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 44px;
  color: var(--white);
  background: var(--gradient-black-red);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.announcement-box h2 {
  color: var(--white);
  font-size: 2rem;
  margin: 8px 0;
}
.announcement-box p {
  color: #eeeeee;
  max-width: 560px;
}

/* ---------- ABOUT PAGE ---------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.info-block .neutral-icon,
.value-card .neutral-icon,
.contact-card .neutral-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}
.info-block h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.values-section {
  background: var(--light-gray);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-page-section {
  background: var(--white);
}
.contact-page-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.contact-card .btn-consultar {
  margin-top: 16px;
}
.neutral-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border: 2px solid var(--red);
  border-radius: 50%;
}
.neutral-icon::before,
.neutral-icon::after {
  content: '';
  position: absolute;
  background: var(--red);
}
.icon-delivery::before { width: 12px; height: 2px; }
.icon-delivery::after { width: 5px; height: 5px; border-radius: 50%; bottom: 4px; right: 4px; }
.icon-active::before { width: 12px; height: 2px; transform: rotate(-35deg); }
.icon-active::after { width: 7px; height: 2px; transform: rotate(35deg); right: 4px; top: 7px; }
.icon-family::before { width: 5px; height: 5px; border-radius: 50%; top: 5px; left: 5px; box-shadow: 8px 0 0 var(--red); }
.icon-family::after { width: 14px; height: 2px; bottom: 6px; }
.icon-support::before { width: 12px; height: 8px; border: 2px solid var(--red); border-radius: 2px; background: transparent; }
.icon-support::after { width: 6px; height: 2px; bottom: 5px; right: 4px; }
.icon-variety::before { width: 10px; height: 10px; background: transparent; border: 2px solid var(--red); border-radius: 2px; }
.icon-variety::after { width: 6px; height: 6px; background: transparent; border: 2px solid var(--red); border-radius: 2px; right: 3px; bottom: 3px; }
.icon-catalog::before { width: 12px; height: 14px; background: transparent; border: 2px solid var(--red); border-radius: 2px; }
.icon-catalog::after { width: 7px; height: 2px; top: 8px; }
.icon-style::before { width: 12px; height: 12px; background: transparent; border: 2px solid var(--red); transform: rotate(45deg); }
.icon-style::after { width: 6px; height: 2px; }

/* ---------- Section titles ---------- */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 12px;
  color: var(--black);
}
.section-title.light { color: var(--white); }
.section-subtitle {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
  color: var(--gray);
  font-size: 1.02rem;
}
.section-subtitle.light { color: #e2e2e2; }

.category-section { padding: 90px 0; position: relative; }

/* Background image sections */
.bg-deportiva, .bg-hombres, .bg-mujeres, .bg-ninos {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
}
.bg-deportiva { background-image: url('https://images.unsplash.com/photo-1518611012118-696072aa579a?auto=format&fit=crop&w=1600&q=80'); }
.bg-hombres { background-image: url('https://images.pexels.com/photos/13028284/pexels-photo-13028284.jpeg?auto=compress&cs=tinysrgb&w=1600'); }
.bg-mujeres { background-image: url('https://images.unsplash.com/photo-1556906781-9a412961c28c?auto=format&fit=crop&w=1600&q=80'); }
.bg-ninos { background-image: url('https://images.pexels.com/photos/8813513/pexels-photo-8813513.jpeg?auto=compress&cs=tinysrgb&w=1600'); }

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(11,11,12,0.88), rgba(225,6,0,0.45));
}
.bg-deportiva .container, .bg-hombres .container, .bg-mujeres .container, .bg-ninos .container {
  position: relative;
  z-index: 2;
}

/* ---------- Cards grid (mini cards) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.mini-card {
  background: var(--white);
  color: var(--dark-gray);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.mini-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.mini-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.mini-card h3 { font-size: 1.1rem; padding: 16px 18px 4px; }
.mini-card p { font-size: 0.88rem; color: var(--gray); padding: 0 18px; flex-grow: 1; }
.mini-card .btn-consultar { margin: 16px 18px 18px; }

/* ---------- Consultar button ---------- */
.btn-consultar {
  display: inline-block;
  text-align: center;
  background: var(--gradient-red-black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: 50px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-consultar:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- CATALOG ---------- */
.catalog { padding: 100px 0 80px; background: var(--light-gray); }

.filter-panel {
  max-width: 920px;
  margin: 0 auto 44px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(11, 11, 12, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.filter-panel h3 {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 18px;
  color: var(--black);
}
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--white);
  color: var(--dark-gray);
  font-weight: 600;
  font-size: 0.88rem;
  border: 2px solid transparent;
  transition: all 0.25s ease;
}
.filter-btn:hover { border-color: var(--red); }
.filter-btn.active {
  background: var(--gradient-red-black);
  color: var(--white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-card.hidden { display: none; }

.card-image { position: relative; height: 220px; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .card-image img { transform: scale(1.08); }

.card-tag {
  display: none;
}
.tag-nuevo { background: #1ebe5d; }
.tag-vendido { background: var(--red); }
.tag-oferta { background: var(--black); }

.card-body { padding: 20px; }
.card-category {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--red);
  font-weight: 700;
}
.card-body h3 { font-size: 1.15rem; margin: 6px 0 10px; }
.card-price { color: var(--gray); font-size: 0.92rem; margin-bottom: 14px; }
.card-price strong { color: var(--black); font-size: 1.05rem; }

/* ---------- Tallas y colores disponibles ---------- */
.card-variants { margin-bottom: 14px; }
.variant-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.variant-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--gray); font-weight: 700; min-width: 42px; }
.size-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 24px;
  padding: 0 6px;
  border-radius: 6px;
  background: var(--light-gray);
  color: var(--dark-gray);
  font-size: 0.72rem;
  font-weight: 700;
}
.color-chip {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  display: inline-block;
}
.no-variants { font-size: 0.78rem; color: var(--gray); font-style: italic; }

.catalog-note {
  text-align: center;
  margin-top: 36px;
  font-size: 0.85rem;
  color: var(--gray);
}

/* ---------- BENEFITS ---------- */
.benefits { padding: 100px 0; background: var(--white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-bottom: 70px;
}
.benefit-item {
  text-align: center;
  padding: 36px 22px;
  border-radius: var(--radius);
  background: var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.benefit-item:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.benefit-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.benefit-icon.neutral-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  border-width: 2px;
}
.benefit-icon.neutral-icon::before,
.benefit-icon.neutral-icon::after {
  transform-origin: center;
}
.benefit-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
.benefit-item p { font-size: 0.88rem; color: var(--gray); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: var(--gradient-red-black);
  border-radius: var(--radius);
  padding: 50px 30px;
}
.stat-box { text-align: center; color: var(--white); }
.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 900;
}
.stat-label { font-size: 0.88rem; opacity: 0.9; }

/* ---------- PROMOTIONS ---------- */
.promotions {
  padding: 100px 0;
  background: var(--gradient-black-red);
  position: relative;
}
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.promo-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 34px 26px;
  color: var(--white);
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.promo-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.12); }
.promo-badge {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0;
  border-radius: 0;
  margin-bottom: 10px;
}
.promo-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.promo-card p { font-size: 0.88rem; color: #e7e7e7; }

/* ---------- GALLERY ---------- */
.gallery { padding: 100px 0; background: var(--light-gray); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 220px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.12); }

/* ---------- CTA FINAL ---------- */
.cta-final {
  padding: 110px 0;
  text-align: center;
  background: var(--gradient-red-black);
  color: var(--white);
}
.cta-final h2 { font-size: 2.4rem; margin-bottom: 14px; }
.cta-final p { font-size: 1.1rem; margin-bottom: 34px; color: #f1f1f1; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 56px auto 0;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 40px;
}
.contact-info h4 { font-size: 0.95rem; margin-bottom: 6px; }
.contact-info p { font-size: 0.9rem; color: #f1f1f1; margin: 0; }

/* ---------- FOOTER ---------- */
.site-footer { background: var(--black); color: #d8d8d8; padding: 70px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; color: #a8a8a8; max-width: 280px; }
.footer-links h4, .footer-contact h4, .footer-social h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links ul li, .footer-contact ul li { font-size: 0.88rem; margin-bottom: 10px; color: #b5b5b5; }
.footer-links ul li a:hover { color: var(--red); }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  font-size: 0.78rem;
  font-weight: 700;
  transition: background 0.25s ease, transform 0.25s ease;
}
.social-icons a:hover { background: var(--red); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: #888;
}

/* ---------- WHATSAPP FLOAT BUTTON ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #1ebe5d;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 999;
  transition: transform 0.25s ease, background 0.25s ease;
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); background: #17a34d; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(30, 190, 93, 0.55); }
  70% { box-shadow: 0 0 0 16px rgba(30, 190, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(30, 190, 93, 0); }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .main-nav {
    display: block;
    flex: 0;
  }
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1101;
  }

  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    padding: 18px 24px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-14px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 1100;
    border-top: 1px solid rgba(11,11,12,0.08);
    box-shadow: 0 18px 32px rgba(0,0,0,0.16);
  }
  .nav-list.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-link {
    display: block;
    color: var(--black);
    font-size: 1.08rem;
    padding: 14px 0;
    text-align: center;
  }

  .header-cta { display: none; }

  .hero-content { margin: 0 auto; text-align: center; }
  .hero-content p { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .hero-float-card { position: static; margin: 40px auto 0; right: auto; bottom: auto; }
  .hero { flex-direction: column; padding-bottom: 60px; text-align: center; }
  .page-hero-content { text-align: center; margin-inline: auto; }
  .page-hero-content p { margin-inline: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-copy .section-title,
  .about-copy p { text-align: center; margin-inline: auto; }
  .compact-grid,
  .steps-grid,
  .mission-grid,
  .values-grid,
  .contact-page-grid,
  .news-grid { grid-template-columns: 1fr 1fr; }
  .announcement-box { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .hero-content h1 { font-size: 2.1rem; }
  .page-hero-content h1 { font-size: 2.15rem; }
  .section-title { font-size: 1.7rem; }
  .compact-grid,
  .steps-grid,
  .mission-grid,
  .values-grid,
  .contact-page-grid,
  .news-grid { grid-template-columns: 1fr; }
  .news-image img { height: 280px; }
  .announcement-box { padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .header-inner { padding: 14px 18px; }
  .nav-list {
    top: 72px;
    padding: 14px 22px 22px;
  }
  .logo-img { height: 44px; }
  .site-header.scrolled .logo-img { height: 40px; }
  .footer-logo-img { height: 78px; }
  .logo-text strong { font-size: 1rem; }
}
