/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* RESET & GLOBALS */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

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

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

.container-pad {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* NAV */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 140px;
  background: #000;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo img {
  height: 90px;
  width: auto;
  max-height: 100%;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: all 0.3s;
  border-radius: 2px;
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* MENU NAV */
.nav__menu {
  display: flex !important;
}

.nav__menu a:hover {
  color: #B86B3A !important;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }

  .nav__menu {
    display: none !important;
  }

  .nav {
    height: 90px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* OVERLAY MENU */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 160px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.overlay.open {
  opacity: 1;
  visibility: visible;
}

.overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: white;
  z-index: 101;
}

.overlay__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

.overlay__link {
  color: white;
  font-size: 24px;
  font-weight: 600;
  transition: color 0.3s;
}

.overlay__link:hover {
  color: #B86B3A;
}

.overlay__foot {
  text-align: center;
  color: #999;
  font-size: 14px;
}

.overlay__foot p {
  margin: 8px 0;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* HERO */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: 140px;
  padding: 60px 20px;
  min-height: 100vh;
  background-size: cover !important;
  background-position: center !important;
}

.hero__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #B86B3A;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 6vw, 56px);
  line-height: 1.2;
  font-weight: 600;
  color: #333;
}

.hero__title em {
  font-style: italic;
  color: #B86B3A;
}

.hero__rule {
  width: 60px;
  height: 3px;
  background: #B86B3A;
  margin: 20px 0;
}

.hero__cta {
  display: inline-block;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #333;
  transition: all 0.3s;
}

.hero__cta:hover {
  border-bottom-color: #B86B3A;
  color: #B86B3A;
}

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 12px;
  color: #999;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: #999;
  animation: scroll-pulse 1.5s infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* Note: Carousel styles moved to CAROUSEL HERO section below */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* STRIP MARQUEE */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.strip {
  background: #1e1e1e;
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
}

.strip__track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.strip__track span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.strip__track em {
  color: #B86B3A;
  font-style: normal;
  margin: 0 10px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CATÁLOGO SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.catalogo {
  background: #1e1e1e;
  color: white;
  padding: 80px 0;
}

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

.label-sm {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #B86B3A;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.catalogo__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
}

.catalogo__title em {
  font-style: italic;
  color: #B86B3A;
}

.catalog-category {
  margin-bottom: 60px;
}

.catalog-subheader {
  font-size: 1.5rem;
  color: #B86B3A;
  margin: 30px 0 30px;
  font-weight: 600;
}

.produtos-grid-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.produto-card-catalog {
  background: #2a2a2a;
  border: 1px solid #444;
  border-radius: 8px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s;
}

.produto-card-catalog:hover {
  box-shadow: 0 8px 24px rgba(184, 107, 58, 0.3);
  transform: translateY(-6px);
  border-color: #B86B3A;
}

.produto-card-catalog h4 {
  font-size: 16px;
  margin: 0 0 15px;
  color: #fff;
  font-weight: 600;
}

.produto-card-catalog .price {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin: 15px 0 20px;
}

.produto-card-catalog .qty-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #B86B3A;
  background: transparent;
  color: #B86B3A;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: #B86B3A;
  color: #fff;
  transform: scale(1.1);
}

.qty-display {
  width: 50px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* AVES SECTION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.aves {
  padding: 60px 0;
  background: white;
}

.aves--simple {
  text-align: center;
  max-width: 700px;
}

.aves__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  color: #333;
  margin: 15px 0;
}

.aves__title em {
  font-style: italic;
  color: #B86B3A;
}

.aves__sub {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* ESPÉCIES (FILTRO) */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.especies {
  background: #f5f5f5;
  padding: 60px 0;
}

.especies__header {
  text-align: center;
  margin-bottom: 35px;
}

.especies__hint {
  font-size: 12px;
  color: #999;
  margin-top: 8px;
}

.especies__track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 20px;
  margin-bottom: 40px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.especies__track::-webkit-scrollbar {
  height: 6px;
}

.especies__track::-webkit-scrollbar-thumb {
  background: #ddd;
  border-radius: 3px;
}

.esp {
  padding: 10px 20px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 25px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  white-space: nowrap;
  transition: all 0.3s;
  cursor: pointer;
}

.esp:hover {
  border-color: #B86B3A;
  color: #B86B3A;
}

.esp.active {
  background: #B86B3A;
  color: white;
  border-color: #B86B3A;
}

.especies__result {
  text-align: center;
  padding: 0 20px;
}

.esp__msg {
  font-size: 15px;
  color: #666;
  font-weight: 500;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* NÚMEROS */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.numeros {
  background: #f9f9f9;
  padding: 80px 0;
}

.numeros__grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.num strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: #B86B3A;
  margin-bottom: 10px;
}

.num span {
  display: block;
  font-size: 14px;
  color: #666;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FÁBRICA */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.fabrica {
  background: #1e1e1e;
  color: white;
  padding: 80px 0;
}

.fabrica__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.label-sm--light {
  color: #B86B3A;
}

.fabrica__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  margin: 20px 0 30px;
}

.fabrica__title em {
  font-style: italic;
  color: #B86B3A;
}

.fabrica__text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ccc;
}

.btn-fab {
  display: inline-block;
  padding: 12px 24px;
  background: #B86B3A;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 30px;
  transition: background 0.3s;
}

.btn-fab:hover {
  background: #a05a2f;
}

.fab-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(184, 107, 58, 0.3);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.fab-card__line {
  width: 60px;
  height: 3px;
  background: #B86B3A;
  margin: 0 auto 20px;
}

.fab-card__text {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #fff;
}

.fab-card__sig {
  display: flex;
  justify-content: center;
}

.fab-card__sig img {
  height: 52px;
  width: auto;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .fabrica__inner {
    grid-template-columns: 1fr;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* CTA */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.cta {
  padding: 80px 0;
  background: white;
}

.cta__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.cta__question {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.cta__sub {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.cta__action {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cta__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
}

.cta__input:focus {
  outline: none;
  border-color: #B86B3A;
  box-shadow: 0 0 0 3px rgba(184, 107, 58, 0.1);
}

.cta__btn {
  padding: 14px 30px;
  background: #B86B3A;
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s;
  white-space: nowrap;
}

.cta__btn:hover {
  background: #a05a2f;
}

@media (max-width: 768px) {
  .cta__action {
    flex-direction: column;
  }

  .cta__btn {
    justify-content: center;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* FOOTER */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.footer {
  background: #000;
  color: #ccc;
  padding: 40px 0 20px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 30px;
}

.footer__logo {
  height: 26px;
  width: auto;
}

.footer__links {
  display: flex;
  gap: 30px;
}

.footer__links a {
  font-size: 14px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #B86B3A;
}

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  font-size: 12px;
}

.footer__bottom p {
  margin: 5px 0;
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .footer__links {
    flex-direction: column;
    gap: 10px;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* WHATSAPP FLOAT */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.wa-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 1000;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

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

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

@media (max-width: 768px) {
  .wa-float {
    bottom: 20px;
    right: 20px;
  }
}

/* GOOGLE REVIEWS FLOAT - HOVER */
.wa-float[style*="4285F4"]:hover {
  box-shadow: 0 6px 20px rgba(66, 133, 244, 0.6);
  background: #3367D6 !important;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* REVEAL ANIMATION */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.js-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}

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

/* Carousel styles removed - using background images in hero section */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
/* AVES SIMPLIFICADO */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
.aves--simple {
  text-align: center;
  max-width: 700px;
  padding: 60px 0;
}

.aves--simple .label-sm {
  display: block;
  margin-bottom: 15px;
}

.aves--simple .aves__title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.2;
  font-weight: 600;
  color: #333;
  margin: 15px 0;
}

.aves--simple .aves__title em {
  font-style: italic;
  color: #B86B3A;
}

.aves--simple .aves__sub {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}
}
