/* =============================================
   FEROCE.CL — Estilos principales
   ============================================= */

/* ===== AVISO CATÁLOGO EN PREPARACIÓN ===== */
.aviso-bar {
  background: linear-gradient(90deg, #2D5E3A 0%, #1C3F52 100%);
  color: rgba(255,255,255,0.92);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  position: relative;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.aviso-bar__text { line-height: 1.5; }
.aviso-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 20px;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.aviso-bar__link:hover { opacity: 0.88; }
@media (max-width: 480px) {
  .aviso-bar { padding: 10px 16px; font-size: 0.8rem; }
}

/* ===== VARIABLES ===== */
:root {
  --teal:         #1C3F52;
  --teal-dark:    #142E3C;
  --orange:       #E07530;
  --orange-light: #F0893E;
  --green:        #2D5E3A;
  --green-light:  #3A7A4D;
  --terracota:    #C44B2B;
  --cream:        #F0EBE1;
  --cream-light:  #FAF8F3;
  --white:        #FFFFFF;
  --text-dark:    #1A1A1A;
  --text-gray:    #5A5A5A;
  --text-light:   #8A8A8A;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --radius:       12px;
  --radius-sm:    8px;
  --radius-lg:    20px;
  --transition:   all 0.3s ease;
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--cream-light);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(224, 117, 48, 0.4);
}
.btn--primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 117, 48, 0.5);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}
.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: linear-gradient(to bottom, rgba(10,26,36,0.75) 0%, transparent 100%);
}

.header.scrolled {
  background: rgba(20, 46, 60, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  gap: 20px;
}

.nav__logo img {
  height: 90px;
  width: auto;
  border: none;
  background: transparent;
  transition: opacity 0.3s ease;
}

.nav__logo img:hover {
  opacity: 0.85;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav__link {
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  padding: 10px 18px;
  border-radius: 8px;
  transition: var(--transition);
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}
.nav__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
  text-shadow: none;
}

.nav__whatsapp {
  font-size: 0.82rem;
  padding: 10px 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: #1C3F52;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 20, 28, 0.55) 0%,
      rgba(10, 28, 40, 0.35) 35%,
      rgba(10, 28, 40, 0.45) 65%,
      rgba(8, 20, 28, 0.75) 100%
    );
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,20,28,0.4) 0%, transparent 60%);
}

.hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.shape--1 {
  width: 500px;
  height: 500px;
  background: var(--orange);
  top: -150px;
  right: -100px;
}
.shape--2 {
  width: 300px;
  height: 300px;
  background: var(--green);
  bottom: -80px;
  left: 10%;
}
.shape--3 {
  width: 200px;
  height: 200px;
  background: var(--terracota);
  top: 30%;
  right: 20%;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__tag {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== STATS ===== */
.stats {
  background: var(--teal);
  padding: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat:last-child { border-right: none; }
.stat:hover { background: rgba(255,255,255,0.04); }

.stat__number {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ===== SECTION BASE ===== */
.section {
  padding: 96px 0;
}

.section__header {
  text-align: center;
  margin-bottom: 60px;
}

.section__tag {
  display: inline-block;
  background: rgba(224, 117, 48, 0.12);
  color: var(--orange);
  border: 1px solid rgba(224, 117, 48, 0.2);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--teal);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.section__subtitle {
  font-size: 0.98rem;
  color: var(--text-gray);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CATEGORIES ===== */
.categories {
  background: var(--cream-light);
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c1, #E07530), var(--c2, #C44B2B));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.category-card:hover::before {
  transform: scaleX(1);
}

.category-card__icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.category-card__title {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
}

.category-card__desc {
  font-size: 0.86rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.category-card__link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--orange);
  transition: letter-spacing 0.3s ease;
}
.category-card:hover .category-card__link {
  letter-spacing: 0.4px;
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--cream);
}

.products__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
  justify-content: center;
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-gray);
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.1);
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.filter-btn.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  box-shadow: 0 4px 12px rgba(28,63,82,0.25);
}

.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card.hidden {
  display: none;
}

.product-card__image {
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card__image--photo {
  background: #f5f5f5;
}

.product-card__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card__image--photo img {
  transform: scale(1.04);
}

.product-placeholder-icon {
  font-size: 4rem;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
}

.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card__body {
  padding: 24px;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-card__desc {
  font-size: 0.84rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.product-card__price {
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--terracota);
}

/* ===== ABOUT ===== */
.about {
  background: var(--cream-light);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about__visual {
  display: flex;
  justify-content: center;
}

.about__logo-wrap {
  width: 380px;
  height: 380px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 64px rgba(28,63,82,0.14), 0 0 0 8px var(--white);
  transition: var(--transition);
}
.about__logo-wrap:hover {
  box-shadow: 0 30px 80px rgba(28,63,82,0.2), 0 0 0 8px var(--white);
  transform: scale(1.02);
}

.about__logo {
  width: 300px;
}

.about__content .section__tag {
  margin-bottom: 8px;
}
.about__content .section__title {
  text-align: left;
  margin-bottom: 20px;
}

.about__text {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 16px;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.value__icon {
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value__title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 3px;
}

.value__text {
  font-size: 0.84rem;
  color: var(--text-gray);
  line-height: 1.5;
}

/* ===== CATEGORY PAGES ===== */
.header--solid {
  background: rgba(20, 46, 60, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.cat-hero {
  padding: 130px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cat-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c1, #1C3F52) 0%, var(--c2, #2D5E3A) 100%);
}
.cat-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 0);
  background-size: 40px 40px;
}
.cat-hero__content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--orange); }
.cat-hero__icon {
  font-size: 3.2rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}
.cat-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.cat-hero__desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

.cat-nav {
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 0;
  position: sticky;
  top: 100px;
  z-index: 100;
}
.cat-nav__list {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-nav__list::-webkit-scrollbar { display: none; }
.cat-nav__item {
  flex-shrink: 0;
}
.cat-nav__link {
  display: block;
  padding: 14px 20px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-gray);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.cat-nav__link:hover { color: var(--teal); }
.cat-nav__link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* ===== BLOG ===== */
.blog {
  background: var(--cream-light);
}

.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.blog-card__body {
  padding: 24px;
}

.blog-card__tag {
  display: inline-block;
  background: rgba(224,117,48,0.12);
  color: var(--orange);
  border-radius: 50px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.blog-card__title {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card__desc {
  font-size: 0.84rem;
  color: var(--text-gray);
  line-height: 1.65;
  margin-bottom: 18px;
}

.blog-card__link {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--orange);
  transition: letter-spacing 0.3s ease;
}
.blog-card:hover .blog-card__link {
  letter-spacing: 0.4px;
}

@media (max-width: 768px) {
  .blog__grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .blog__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(45,94,58,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(196,75,43,0.25) 0%, transparent 50%),
    linear-gradient(135deg, #142E3C 0%, #1C3F52 50%, #2D5E3A 100%);
}
.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.04) 1px, transparent 0);
  background-size: 40px 40px;
}

.cta-section__content {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.cta-section__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.75);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  height: 70px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer__social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.social-link:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__heading {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
}
.footer__links a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer__bottom {
  padding: 20px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 30px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.1); }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .categories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about__visual {
    order: -1;
  }
  .about__logo-wrap {
    width: 300px;
    height: 300px;
  }
  .about__logo {
    width: 240px;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  /* Mobile nav */
  .nav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(20, 46, 60, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
  }
  .nav__menu.open {
    display: flex;
  }
  .nav__link {
    font-size: 1.4rem;
    font-weight: 800;
  }
  .nav__whatsapp {
    display: none;
  }
  .nav__toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    padding: 100px 0 80px;
    text-align: center;
    background-attachment: scroll;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__ctas {
    justify-content: center;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  /* Stats */
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat:nth-child(odd) {
    border-right: 1px solid rgba(255,255,255,0.08);
  }
  .stat:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* Sections */
  .section {
    padding: 64px 0;
  }

  /* Categories */
  .categories__grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .category-card {
    padding: 24px 20px;
  }

  /* Products */
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 32px;
  }

  /* About */
  .about__content .section__title {
    text-align: center;
  }
  .about__content .section__tag {
    display: block;
    text-align: center;
  }
  .about__text {
    text-align: center;
  }
  .about__logo-wrap {
    width: 260px;
    height: 260px;
  }
  .about__logo {
    width: 200px;
  }
}

@media (max-width: 480px) {
  .categories__grid {
    grid-template-columns: 1fr;
  }
  .products__grid {
    grid-template-columns: 1fr;
  }
  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero__ctas .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .products__filters {
    gap: 6px;
  }
  .filter-btn {
    padding: 7px 14px;
    font-size: 0.78rem;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }
}
