/* ===== Madeireira Rei Davi - LP ===== */
/* Primary: #07321C | Secondary: #E59F00 | Tertiary: white */

:root {
  --primary: #07321C;
  --primary-light: #0a4528;
  --primary-dark: #052616;
  --secondary: #E59F00;
  --secondary-light: #f0b01a;
  --secondary-dark: #c98a00;
  --tertiary: #ffffff;
  --overlay-dark: rgba(7, 50, 28, 0.75);
  --overlay-hero: linear-gradient(
    135deg,
    rgba(7, 50, 28, 0.85) 0%,
    rgba(7, 50, 28, 0.5) 40%,
    rgba(7, 50, 28, 0.25) 70%,
    transparent 100%
  );
  --gradient-cta: linear-gradient(135deg, #E59F00 0%, #f0b01a 50%, #E59F00 100%);
  --gradient-header: linear-gradient(
    180deg,
    rgba(7, 50, 28, 0.95) 0%,
    rgba(7, 50, 28, 0.85) 100%
  );
  --gradient-header-scrolled: linear-gradient(
    180deg,
    rgba(7, 50, 28, 0.98) 0%,
    rgba(7, 50, 28, 0.95) 100%
  );
  --shadow-cta: 0 4px 24px rgba(229, 159, 0, 0.4);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1080px;
  --header-height: 72px;
  --gradient-section-dark: linear-gradient(180deg, #052616 0%, #07321C 50%, #0a4528 100%);
  --gradient-section-light: linear-gradient(180deg, #0a4528 0%, #07321C 50%, #0d5532 100%);
}

/* Alternância de fundo entre seções */
.section-bg-dark {
  background: var(--gradient-section-dark);
}

.section-bg-light {
  background: var(--gradient-section-light);
}

/* Textura bg-wood (alternar: Quem Somos e Depoimentos com; Soluções, Ofertas e Contato sem) */
.section-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.32;
  background: url("../img/bg-wood.jpg") center / cover no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--tertiary);
  background: var(--primary);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ----- main_container (igual ao common.scss da referência) ----- */
.main_container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .main_container {
    max-width: 920px;
  }
}
@media (max-width: 991.98px) {
  .main_container {
    padding: 0 1rem;
    max-width: 820px;
  }
}

/* Alias para compatibilidade */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .container {
    max-width: 920px;
  }
}
@media (max-width: 991.98px) {
  .container {
    padding: 0 1rem;
    max-width: 820px;
  }
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: var(--gradient-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header.is-scrolled {
  background: var(--gradient-header-scrolled);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: height var(--transition-smooth);
}

.header.is-scrolled .header__logo {
  height: 2.75rem;
}

/* Nav desktop */
.header__nav {
  display: none;
}

@media (min-width: 768px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.header__nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--tertiary);
  opacity: 0.95;
  transition: opacity var(--transition-fast), color var(--transition-fast);
}

.header__nav a:hover {
  opacity: 1;
  color: var(--secondary);
}

/* CTA no header (opcional) */
.header__cta {
  display: none;
}

@media (min-width: 768px) {
  .header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--gradient-cta);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 9999px;
    box-shadow: var(--shadow-cta);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  }

  .header__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(229, 159, 0, 0.5);
  }
}

/* Menu mobile (hamburger) */
.header__menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  color: var(--tertiary);
  cursor: pointer;
  padding: 0;
  transition: color var(--transition-fast);
}

@media (min-width: 768px) {
  .header__menu-btn {
    display: none;
  }
}

.header__menu-btn:hover {
  color: var(--secondary);
}

.header__menu-btn svg {
  width: 28px;
  height: 28px;
}

/* Overlay e menu mobile aberto */
.header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 50, 28, 0.9);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.header__overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 100%);
  height: 100vh;
  background: var(--gradient-header-scrolled);
  z-index: 99;
  padding: calc(var(--header-height) + 1.5rem) 1.5rem 1.5rem;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
}

.header__overlay.is-open .header__drawer {
  transform: translateX(0);
}

.header__drawer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  color: var(--tertiary);
  cursor: pointer;
  border-radius: 8px;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.header__drawer-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
}

.header__drawer .header__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.header__drawer .header__nav a {
  padding: 0.75rem 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--primary) url("../img/bg-hero.jpeg") center / cover no-repeat;
}

.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--overlay-hero);
  pointer-events: none;
}

/* Fallback quando não houver imagem: gradiente moderno */
.hero__bg.no-image {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 30%,
    var(--primary-light) 60%,
    rgba(10, 69, 40, 0.9) 100%
  );
}

.hero__bg.no-image::after {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(7, 50, 28, 0.3) 60%,
    rgba(7, 50, 28, 0.7) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--header-height) + 2rem) 1.5rem 3rem;
  max-width: 800px;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--tertiary);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255, 255, 255, 0.92);
  max-width: 560px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--gradient-cta);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-cta);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
}

.hero__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(229, 159, 0, 0.5);
}

.hero__cta:active {
  transform: translateY(-1px);
}

.hero__cta--secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--tertiary);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: none;
}

.hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-color: var(--tertiary);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* ===== QUEM SOMOS ===== */
.quem-somos {
  position: relative;
  padding: 4rem 0 4.5rem;
}

.quem-somos__inner {
  position: relative;
  z-index: 1;
}

.quem-somos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .quem-somos__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.quem-somos__content {
  order: 2;
}

.quem-somos__img-wrap {
  order: 1;
}

@media (min-width: 768px) {
  .quem-somos__content {
    order: 1;
  }
  .quem-somos__img-wrap {
    order: 2;
  }
}

.quem-somos__title {
  color: var(--tertiary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .quem-somos__title {
    font-size: 2rem;
  }
}

.quem-somos__content {
  text-align: center;
}

.quem-somos__text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  line-height: 1.65;
}

.quem-somos__text p {
  margin: 0 0 1rem;
}

.quem-somos__text p:last-child {
  margin-bottom: 0;
}

.quem-somos__destaque {
  font-weight: 600 !important;
  color: var(--tertiary) !important;
}

.quem-somos__img-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.quem-somos__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===== SOLUÇÕES ===== */
.solucoes {
  position: relative;
  padding: 4.5rem 0 3rem;
  overflow: hidden;
}

.solucoes.section-bg-dark .solucoes__bg {
  background: var(--gradient-section-dark);
}

.solucoes.section-bg-dark .solucoes__bg::after {
  background: transparent;
}

.solucoes__bg {
  position: absolute;
  inset: 0;
  background: var(--primary) url("../img/section-about-us-detail.png") top center / cover no-repeat;
  z-index: 0;
}

/* Fallback: sem imagem de fundo, usa gradiente */
.solucoes__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-section-dark);
  z-index: 0;
}

.solucoes__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.solucoes__header {
  text-align: center;
  margin-bottom: 2rem;
}

.solucoes__subtitle {
  color: var(--tertiary);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.solucoes__title {
  color: var(--tertiary);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .solucoes__title {
    font-size: 1.875rem;
  }
}

/* Grid: 1 col mobile (evita quebra), 2 cols em telas médias, 4 cols desktop */
.solucoes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 100%;
}

@media (min-width: 480px) {
  .solucoes__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

@media (min-width: 768px) {
  .solucoes__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.solucoes__card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  background: linear-gradient(to bottom right, #000, #000);
  transition: transform var(--transition-smooth);
  aspect-ratio: 4 / 5;
  min-height: 0;
}

@media (min-width: 480px) {
  .solucoes__card {
    min-height: 200px;
  }
}

@media (min-width: 768px) {
  .solucoes__card {
    min-height: 280px;
  }
}

.solucoes__card:hover {
  transform: scale(1.03);
}

.solucoes__card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform var(--transition-smooth);
}

.solucoes__card:hover .solucoes__card-bg {
  transform: scale(1.1);
}

.solucoes__card-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  pointer-events: none;
}

.solucoes__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.solucoes__card-title {
  color: var(--tertiary);
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
  margin: 0 0 0.35rem;
}

@media (min-width: 768px) {
  .solucoes__card-title {
    font-size: 1.25rem;
  }
}

.solucoes__card-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 768px) {
  .solucoes__card-desc {
    font-size: 0.875rem;
  }
}

.solucoes__footer {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.solucoes__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-cta);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: 9999px;
  box-shadow: var(--shadow-cta);
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.solucoes__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(229, 159, 0, 0.5);
}

/* ===== PRODUTOS ===== */
.produtos {
  position: relative;
  padding: 4rem 0 4.5rem;
}

.produtos.section-bg-dark {
  background: var(--gradient-section-dark);
}

.produtos__bg-texture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.32;
  background: url("../img/bg-wood.jpg") center / cover no-repeat;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.produtos__inner {
  position: relative;
  z-index: 1;
}

.produtos__swiper-outer {
  position: relative;
}

.produtos__header {
  text-align: center;
  margin-bottom: 2rem;
}

.produtos__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.produtos__title {
  color: var(--tertiary);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .produtos__title {
    font-size: 1.875rem;
  }
}

.produtos__swiper {
  padding: 0.5rem 0 3.5rem;
  padding-bottom: 3rem !important;
  overflow: hidden;
}

.produtos__card {
  background: var(--tertiary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.produtos__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.produtos__card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--primary-dark);
  cursor: pointer;
}

.produtos__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-smooth);
}

.produtos__card:hover .produtos__card-img {
  transform: scale(1.06);
}

.produtos__card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.produtos__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  height: 46px;
  color: var(--primary);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.produtos__card-desc {
  font-size: 0.8125rem;
  color: rgba(7, 50, 28, 0.75);
  margin: 0 0 0.75rem;
  height: 40px;
  line-height: 1.4;
}

.produtos__card-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
}

.produtos__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--primary);
  color: var(--tertiary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.produtos__card-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.produtos__card-btn svg {
  flex-shrink: 0;
}

/* Swiper: setas e paginação na identidade visual */
.produtos__nav {
  color: var(--tertiary) !important;
  background: var(--primary) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  min-width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.produtos__nav::after {
  font-size: 0.6rem !important;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: var(--tertiary) !important;
}

.produtos__swiper .swiper-button-prev,
.produtos__swiper .swiper-button-next {
  color: var(--tertiary) !important;
}

.produtos__swiper .swiper-button-prev::after,
.produtos__swiper .swiper-button-next::after {
  font-size: 0.6rem !important;
  color: var(--tertiary) !important;
}

.produtos__swiper .swiper-button-prev svg,
.produtos__swiper .swiper-button-next svg {
  fill: var(--tertiary) !important;
  stroke: var(--tertiary) !important;
}

.produtos__nav:hover {
  background: var(--secondary) !important;
  color: var(--primary) !important;
  border-color: var(--secondary);
  transform: scale(1.05);
}

.produtos__nav:hover::after {
  color: var(--primary) !important;
}

.produtos__nav:hover svg {
  fill: var(--primary) !important;
  stroke: var(--primary) !important;
}

.produtos__swiper .swiper-pagination,
.produtos__swiper .produtos__pagination {
  bottom: 1rem !important;
}

.produtos__pagination .swiper-pagination-bullet {
  background: var(--secondary);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: background var(--transition-fast), opacity var(--transition-fast), transform var(--transition-fast);
}

.produtos__pagination .swiper-pagination-bullet:hover {
  opacity: 0.9;
}

.produtos__pagination .swiper-pagination-bullet-active {
  background: var(--secondary);
  opacity: 1;
  transform: scale(1.3);
  box-shadow: 0 0 0 2px var(--primary);
}

.produtos__cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

.produtos__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--tertiary);
  color: var(--tertiary);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.produtos__cta:hover {
  background: var(--tertiary);
  color: var(--primary);
  border-color: var(--tertiary);
  transform: translateY(-2px);
}

/* ===== OFERTAS ===== */
.ofertas {
  padding: 4rem 0 4.5rem;
}

.ofertas.section-bg-light {
  background: var(--gradient-section-light);
}

.ofertas__inner {
  position: relative;
}

.ofertas__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ofertas__title {
  color: var(--tertiary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .ofertas__title {
    font-size: 2rem;
  }
}

.ofertas__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
}

.ofertas__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .ofertas__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.ofertas__card {
  position: relative;
  background: var(--tertiary);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.ofertas__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ofertas__card-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: var(--secondary);
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(229, 159, 0, 0.4);
}

.ofertas__card-img-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--primary-dark);
  cursor: pointer;
}

.ofertas__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-smooth);
}

.ofertas__card:hover .ofertas__card-img {
  transform: scale(1.06);
}

.ofertas__card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ofertas__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.ofertas__card-desc {
  font-size: 0.8125rem;
  color: rgba(7, 50, 28, 0.75);
  margin: 0 0 0.75rem;
  line-height: 1.4;
}

.ofertas__card-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
}

.ofertas__card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--primary);
  color: var(--tertiary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.ofertas__card-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.ofertas__card-btn svg {
  flex-shrink: 0;
}

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  position: relative;
  padding: 4rem 0 4.5rem;
}

.depoimentos.section-bg-dark {
  background: var(--gradient-section-dark);
}

.depoimentos__inner {
  position: relative;
  z-index: 1;
}

.depoimentos__title {
  color: var(--tertiary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem;
}

@media (min-width: 768px) {
  .depoimentos__title {
    font-size: 2rem;
  }
}

.depoimentos__slider-wrap {
  position: relative;
  max-width: 48rem;
  margin: 0 auto;
}

.depoimentos__card {
  background: var(--tertiary);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.depoimentos__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.depoimentos__star {
  color: var(--secondary);
  width: 1.5rem;
  height: 1.5rem;
}

.depoimentos__quote {
  font-size: 1.125rem;
  color: var(--primary);
  text-align: center;
  font-style: italic;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.depoimentos__author {
  text-align: center;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.depoimentos__nav {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) translateX(-1rem);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--tertiary);
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  color: var(--primary);
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

@media (min-width: 768px) {
  .depoimentos__nav {
    transform: translateY(-50%) translateX(-1.5rem);
  }
}

.depoimentos__nav:hover {
  background: var(--secondary);
  color: var(--primary);
}

.depoimentos__nav--next {
  left: auto;
  right: 0;
  transform: translateY(-50%) translateX(1rem);
}

@media (min-width: 768px) {
  .depoimentos__nav--next {
    transform: translateY(-50%) translateX(1.5rem);
  }
}

.depoimentos__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.depoimentos__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.depoimentos__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.depoimentos__dot--active {
  background: var(--primary);
  width: 2rem;
}

/* ===== CONTATO ===== */
.contato {
  padding: 4rem 0 4.5rem;
  margin-top: 0;
}

.contato.section-bg-light {
  background: var(--gradient-section-light);
}

.contato__inner {
  position: relative;
}

.contato__title {
  color: var(--tertiary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 3rem;
}

@media (min-width: 768px) {
  .contato__title {
    font-size: 2rem;
  }
}

.contato__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .contato__grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contato__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contato__icon {
  color: var(--secondary);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.15rem;
}

.contato__label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--tertiary);
  margin: 0 0 0.25rem;
}

.contato__value,
.contato__link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin: 0;
  transition: color var(--transition-fast);
}

.contato__link:hover {
  color: var(--secondary);
}

.contato__wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--secondary);
  color: var(--primary);
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 8px;
  width: 100%;
  max-width: 280px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

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

.contato__map-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  height: 400px;
  min-height: 300px;
}

.contato__map-wrap iframe {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary-dark);
  padding: 2.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 1.5rem 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  justify-items: center;
}

.footer__grid > .footer__brand {
  grid-column: 1 / -1;
}

.footer__grid > .footer__nav {
  grid-column: 1 / -1;
}

.footer__grid > .footer__contact {
  grid-column: 1;
  justify-self: center;
}

.footer__grid > .footer__address {
  grid-column: 2;
  justify-self: center;
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: auto 1fr auto auto;
    grid-template-rows: auto;
    gap: 2.5rem;
    align-items: start;
    justify-items: start;
    text-align: left;
  }

  .footer__grid > .footer__brand,
  .footer__grid > .footer__nav,
  .footer__grid > .footer__contact,
  .footer__grid > .footer__address {
    grid-column: auto;
    justify-self: start;
  }
}

.footer__logo-link {
  display: inline-block;
}

.footer__logo {
  height: 2.5rem;
  width: auto;
  object-fit: contain;
}

/* Links em 2 colunas no mobile */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem 2rem;
  justify-items: center;
}

@media (min-width: 768px) {
  .footer__nav {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    justify-content: flex-start;
  }
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer__nav a:hover {
  color: var(--secondary);
}

.footer__label {
  color: var(--secondary);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.footer__contact .footer__link,
.footer__address .footer__text {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin: 0 0 0.25rem;
}

.footer__contact .footer__link:last-of-type {
  margin-bottom: 0;
}

.footer__link:hover {
  color: var(--secondary);
}

.footer__text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  margin: 0;
  max-width: 220px;
}

@media (max-width: 767px) {
  .footer__contact,
  .footer__address {
    text-align: center;
  }
}

.footer__bottom {
  padding-top: 1.25rem;
  text-align: center;
}

.footer__credit {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8125rem;
  margin: 0;
}

.footer__credit-link {
  color: var(--secondary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer__credit-link:hover {
  color: var(--secondary-light);
}

/* Modal produto */
.produto-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}

.produto-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.produto-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 50, 28, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.produto-modal__box {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  background: var(--tertiary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  transform: scale(0.95);
  transition: transform var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.produto-modal.is-open .produto-modal__box {
  transform: scale(1);
}

.produto-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  color: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.produto-modal__close:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05);
}

.produto-modal__img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--primary-dark);
}

.produto-modal__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.produto-modal__content {
  padding: 1.5rem 1.5rem 1.75rem;
}

.produto-modal__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.produto-modal__desc {
  font-size: 0.9375rem;
  color: rgba(7, 50, 28, 0.8);
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.produto-modal__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1.25rem;
}

.produto-modal__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  background: var(--primary);
  color: var(--tertiary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.produto-modal__cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}
