/* ==========================================================================
   Green Cotton — Design System v2
   Modern · Elegant · Serif · Clean
   ==========================================================================

   Fonts:
     Display/Headings: Cormorant Garamond (serif)
     Body/UI:          Manrope (sans-serif)

   Colors:
     --clr-bg:        #FAFAF8
     --clr-text:      #1A1A1A
     --clr-text-muted:#6B6B6B
     --clr-primary:   #2D5A3D
     --clr-accent:    #3A7D52
     --clr-surface:   #F2F0EC
     --clr-surface-alt:#E8EDE9
     --clr-border:    #E5E2DB
     --clr-footer:    #1E3A2A
     --clr-white:     #FFFFFF
   ========================================================================== */

/* ---- Reset ---- */

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--clr-bg, #FAFAF8);
  color: var(--clr-text, #1A1A1A);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

:focus-visible {
  outline: 2px solid var(--clr-primary, #2D5A3D);
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- Custom Properties ---- */
:root {
  --clr-bg: #FAFAF8;
  --clr-text: #1A1A1A;
  --clr-text-muted: #6B6B6B;
  --clr-primary: #2D5A3D;
  --clr-accent: #3A7D52;
  --clr-surface: #F2F0EC;
  --clr-surface-alt: #E8EDE9;
  --clr-border: #E5E2DB;
  --clr-footer: #1E3A2A;
  --clr-white: #FFFFFF;
  --font-display: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --gutter: 24px;
}

/* ---- Layout ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 24px;
  }
}

.section {
  padding: 64px 0;
}

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

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }
}

/* ---- Preloader ---- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--clr-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 72px;
  height: 72px;
  background: url(../images/logo.png) 50% / contain no-repeat;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

/* ---- Navigation — Mobile ---- */
.nav-bar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 20px;
  border-bottom: 1px solid var(--clr-border);
}

.nav-logo {
  width: 120px;
  height: auto;
  background: url(../images/logo.png) 50% / contain no-repeat;
  flex-shrink: 0;
  aspect-ratio: 128 / 37;
}

.nav-menu-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--clr-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}

.nav-menu-btn:hover {
  opacity: 0.7;
}

/* ---- Navigation — Desktop ---- */
.nav-bar-desktop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px 20px 80px;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
}

@media (min-width: 1024px) {
  .nav-bar-desktop {
    display: flex;
  }

  .nav-bar-mobile {
    display: none;
  }
}

.nav-logo-desktop {
  aspect-ratio: 128 / 37;
  height: 32px;
  width: 170px;
  background: url('../images/logo.png') 50% / contain no-repeat;
  display: block;
  flex-shrink: 0;
}

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

.nav-link-desktop {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}

.nav-link-desktop::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-primary);
  transition: width 0.3s ease;
}

.nav-link-desktop:hover {
  color: var(--clr-primary);
}

.nav-link-desktop:hover::after {
  width: 100%;
}

.nav-link-desktop[data-active="true"] {
  color: var(--clr-primary);
  font-weight: 700;
}

.nav-link-desktop[data-active="true"]::after {
  width: 100%;
}

/* ---- Nav Overlay ---- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--clr-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-text);
  padding: 8px;
  transition: opacity 0.2s;
}

.nav-overlay-close:hover {
  opacity: 0.5;
}

.nav-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay-link {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clr-text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 6px;
  transition: color 0.25s ease;
}

.nav-overlay-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-primary);
  transition: width 0.3s ease;
}

.nav-overlay-link:hover {
  color: var(--clr-primary);
}

.nav-overlay-link:hover::after {
  width: 100%;
}

.nav-overlay-link[data-active="true"] {
  color: var(--clr-primary);
}

.nav-overlay-link[data-active="true"]::after {
  width: 100%;
}

@media (max-width: 767px) {
  .nav-overlay-link {
    font-size: 32px;
  }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
  margin-top: 60px;
}

@media (min-width: 1024px) {
  .hero {
    margin-top: 72px;
    height: 75vh;
    max-height: 760px;
  }
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 300%;
  display: flex;
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide {
  flex: 0 0 33.333%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(30, 58, 42, 0.25) 0%,
      rgba(30, 58, 42, 0.45) 60%,
      rgba(30, 58, 42, 0.65) 100%);
  z-index: 1;
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.hero-dot:hover {
  border-color: #fff;
}

.hero-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .hero-dots {
    bottom: 40px;
    gap: 14px;
  }

  .hero-dot {
    width: 12px;
    height: 12px;
  }
}

/* ---- Nossa Historia (Sobre) ---- */
.sobre-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px 56px;
  background: var(--clr-white);
}

@media (min-width: 768px) {
  .sobre-hero {
    padding: 32px 48px 72px;
  }
}

.sobre-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.05;
  color: var(--clr-text);
  text-align: center;
  letter-spacing: -0.5px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: 100%;
  max-width: 1080px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .sobre-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sobre-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.sobre-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 32px 28px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.sobre-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--clr-primary);
  border-radius: 12px;
  flex-shrink: 0;
}

.sobre-card-icon svg {
  width: 22px;
  height: 22px;
}

.sobre-card-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.2px;
  line-height: 1.2;
  color: var(--clr-text);
}

.sobre-card-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--clr-text-muted);
}

.sobre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  background: var(--clr-primary);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 48px;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.25s ease;
}

.sobre-btn:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

/* ---- Produtos (Carousel) ---- */
.produtos-wrap {
  background: var(--clr-surface);
  padding: 56px 0;
}

@media (min-width: 768px) {
  .produtos-wrap {
    padding: 72px 0;
  }
}

.produtos-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: var(--clr-text);
  margin-bottom: 20px;
}

.produtos-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--clr-text-muted);
  max-width: 560px;
}


/* ---- Premium Carousel ---- */
.paper-carousel {
  position: relative;
  margin: 48px auto 0;
  padding: 0 60px;
}

.paper-carousel__viewport {
  overflow: hidden;
}

.paper-carousel__track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.paper-carousel__card {
  flex-shrink: 0;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #CBD0BF;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.paper-carousel__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18),
    0 4px 12px rgba(0, 0, 0, 0.08);
}

.paper-carousel__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  cursor: default;
}

.paper-carousel__cta p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--clr-text-muted);
  max-width: 220px;
}

.paper-carousel__cta a {
  color: var(--clr-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.25s ease;
  white-space: nowrap;
}

.paper-carousel__cta a:hover {
  opacity: 0.75;
}

.paper-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 9999px;
  border: none;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.06);
  color: #1A1A1A;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  outline: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.25s ease;
}

.paper-carousel__btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.16),
    0 2px 6px rgba(0, 0, 0, 0.08);
  background: #f5f5f3;
}

.paper-carousel__btn:active {
  transform: translateY(-50%) scale(0.94);
  transition-duration: 0.1s;
}

.paper-carousel__btn:focus-visible {
  outline: 2px solid #2D5A3D;
  outline-offset: 3px;
}

.paper-carousel__btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.paper-carousel__btn--prev {
  left: 0;
}

.paper-carousel__btn--next {
  right: 0;
}

.paper-carousel__btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Expanding Dots */
.paper-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
}

.paper-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  border: none;
  background: #D1CEC7;
  cursor: pointer;
  padding: 0;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease;
}

.paper-carousel__dot:hover:not(.paper-carousel__dot--active) {
  background: #A8A49C;
}

.paper-carousel__dot--active {
  width: 32px;
  background: #2D5A3D;
}

/* Carousel Responsive */
@media (max-width: 850px) {
  .paper-carousel {
    padding: 0 48px;
    margin-top: 36px;
  }

  .paper-carousel__track {
    gap: 20px;
  }

  .paper-carousel__card {
    height: 180px;
  }

  .paper-carousel__btn {
    width: 44px;
    height: 44px;
  }

  .paper-carousel__btn svg {
    width: 18px;
    height: 18px;
  }

  .paper-carousel__dots {
    gap: 6px;
    margin-top: 24px;
  }

  .paper-carousel__dot {
    width: 8px;
    height: 8px;
  }

  .paper-carousel__dot--active {
    width: 26px;
  }
}

@media (max-width: 480px) {
  .paper-carousel {
    padding: 0 40px;
    margin-top: 28px;
  }

  .paper-carousel__track {
    gap: 16px;
  }

  .paper-carousel__card {
    height: 200px;
    border-radius: 14px;
  }

  .paper-carousel__btn {
    width: 40px;
    height: 40px;
  }

  .paper-carousel__btn svg {
    width: 16px;
    height: 16px;
  }

  .paper-carousel__dots {
    gap: 5px;
    margin-top: 20px;
  }

  .paper-carousel__dot {
    width: 7px;
    height: 7px;
  }

  .paper-carousel__dot--active {
    width: 22px;
  }
}

/* ---- Colecao ---- */
.section--colecao {
  padding: 24px 0 0px;
}

@media (min-width: 768px) {
  .section--colecao {
    padding: 36px 0 px;
  }
}

@media (min-width: 1024px) {
  .section--colecao {
    padding: 48px 0 0px;
  }
}

.colecao-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: var(--clr-text);
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .colecao-title {
    margin-bottom: 56px;
  }
}

.colecao-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .colecao-grid {
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
  }
}

.colecao-pill {
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  width: clamp(50px, 5vw, 72px);
  height: clamp(200px, 25vw, 360px);
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--clr-border);
  transition: width 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-radius 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.colecao-pill:hover {
  width: clamp(200px, 25vw, 360px);
  border-radius: 16px;
}

@media (max-width: 767px) {
  .colecao-grid {
    flex-direction: column;
    gap: 4px;
    padding: 0 16px;
    max-width: 400px;
    margin: 0 auto;
  }

  .colecao-pill {
    width: 100% !important;
    height: 80px;
    border-radius: 10px;
    flex-shrink: 0;
    border: 0;
  }

  .colecao-pill:hover {
    width: 100% !important;
    border-radius: 10px;
  }
}

/* ---- CTA ---- */
.cta-section {
  padding: 36px 24px 48px;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 48px 48px 60px;
  }
}

.cta-new {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 40px;
  border-radius: 16px;
  text-align: center;
}

@media (max-width: 767px) {
  .cta-new {
    padding: 40px 24px;
    border-radius: 12px;
  }
}

.cta-new-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.cta-new-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--clr-text);
  letter-spacing: -0.3px;
}

.cta-new-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text-muted);
  max-width: 480px;
}

.cta-new-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 28px;
  border-radius: 8px;
  background: var(--clr-primary);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-white);
  text-decoration: none;
  border: none;
  margin-top: 8px;
  transition: background 0.25s, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-new-btn:hover {
  background: var(--clr-accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 90, 61, 0.3);
}

/* ---- Product Sections (Telas Cruas / Acabadas) ---- */
.product-section {
  padding: 100px 0 56px;
}

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

.product-section.alt {
  background: var(--clr-surface);
}

.product-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .product-grid {
    flex-direction: row;
    gap: 64px;
  }
}

.product-grid.reversed {
  flex-direction: column;
}

@media (min-width: 768px) {
  .product-grid.reversed {
    flex-direction: row-reverse;
  }
}

.product-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .product-img {
    width: 50%;
  }
}

.product-info {
  width: 100%;
}

@media (min-width: 768px) {
  .product-info {
    width: 50%;
  }
}

.product-name {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 24px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .product-name {
    margin-bottom: 32px;
  }
}

.product-specs {
  font-size: 14px;
  line-height: 2;
  color: var(--clr-primary);
  font-weight: 500;
}

.product-specs-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--clr-text);
  margin: 28px 0 12px;
  letter-spacing: -0.2px;
}

.product-specs-title:first-child {
  margin-top: 0;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
  font-size: 13px;
}

.spec-table th {
  text-align: left;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--clr-text-muted);
  border-bottom: 2px solid var(--clr-border);
  padding: 8px 12px 6px;
}

.spec-table td {
  padding: 7px 12px;
  border-bottom: 1px solid var(--clr-border);
  color: var(--clr-primary);
  font-weight: 500;
}

.spec-table tbody tr:last-child td {
  border-bottom: none;
}

.spec-table tbody tr:hover {
  background: var(--clr-surface);
}

.product-sizes {
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--clr-primary);
  font-size: 13px;
}

.product-note {
  margin-top: 8px;
  margin-bottom: 0;
  font-style: italic;
  color: var(--clr-text-muted);
  font-size: 13px;
}

.product-note--last {
  margin-top: 16px;
}

@media (max-width: 767px) {
  .spec-table {
    font-size: 12px;
  }

  .spec-table th {
    display: none;
  }

  .spec-table td {
    display: block;
    padding: 4px 12px;
    text-align: right;
  }

  .spec-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: 600;
    color: var(--clr-text-muted);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .spec-table tbody tr {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-border);
  }
}

/* ---- Contact Page ---- */
.section--contacts-hero {
  background: var(--clr-primary);
  padding: 120px 0 56px;
  text-align: center;
}

@media (min-width: 768px) {
  .section--contacts-hero {
    padding: 140px 0 72px;
  }
}

.contacts-hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--clr-white);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.contacts-hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

.section--contacts {
  padding-top: 56px;
}

@media (min-width: 768px) {
  .section--contacts {
    padding-top: 80px;
  }
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 768px) {
  .contact-page-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 72px;
  }
}

@media (min-width: 1024px) {
  .contact-page-grid {
    gap: 100px;
  }
}

.contact-page-info-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--clr-text);
  margin-bottom: 12px;
}

.contact-page-info-desc {
  color: var(--clr-text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
  font-size: 15px;
}

.contact-page-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-page-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-page-icon {
  width: 44px;
  height: 44px;
  background: var(--clr-primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-page-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.contact-page-item-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-page-item-text {
  color: var(--clr-text);
  line-height: 1.6;
  font-size: 15px;
}

.contact-page-item-text a {
  color: var(--clr-primary);
  transition: opacity 0.2s;
}

.contact-page-item-text a:hover {
  opacity: 0.7;
}

.contact-page-form-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--clr-text);
  margin-bottom: 8px;
}

.contact-page-form-subtitle {
  font-weight: 400;
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

.contact-form-group {
  width: 100%;
  margin-bottom: 20px;
}

.contact-form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 6px;
}

.contact-required {
  color: var(--clr-primary);
}

/* ---- Footer ---- */
.footer {
  background: var(--clr-footer);
  color: var(--clr-white);
  font-family: var(--font-body);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-desktop {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 56px 48px 32px;
}

.footer-desktop .footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
  max-width: 1000px;
}

.footer-desktop .footer-col-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
}

.footer-desktop .footer-logo-wrap {
  height: 56px;
  aspect-ratio: 128 / 37;
  margin-top: 24px;
  background: url(../images/logo-white.png) 50% / contain no-repeat;
}

.footer-desktop .footer-desc {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 0;
  max-width: 280px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-desktop .footer-col-links,
.footer-desktop .footer-col-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.footer-desktop .footer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.footer-desktop .footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-desktop .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
}

.footer-desktop .footer-links a:hover {
  color: #fff;
}

.footer-desktop .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-desktop .footer-bottom span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-agilstore-link {
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-agilstore-link:hover {
  color: #fff !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Footer Mobile */
.footer-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 32px;
  gap: 20px;
}

.footer-mobile .footer-logo-wrap {
  display: flex;
  justify-content: center;
  height: 28px;
}

.footer-mobile .footer-logo-img {
  height: auto;
  width: 140px;
  aspect-ratio: 128 / 37;
  background: url(../images/logo-white.png) 50% / contain no-repeat;
}

.footer-mobile .footer-desc {
  font-size: 13px;
  line-height: 1.65;
  text-align: center;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.65);
}

.footer-mobile .footer-links-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.footer-mobile .footer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.45);
}

.footer-mobile .footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-mobile .footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-mobile .footer-links a:hover {
  color: #fff;
}

.footer-mobile .footer-bottom {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-mobile .footer-agilstore-link {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4) !important;
  text-shadow: none;
  transition: color 0.3s, text-shadow 0.3s;
}

.footer-mobile .footer-agilstore-link:hover {
  color: #fff !important;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.5), 0 0 14px rgba(255, 255, 255, 0.25);
}

@media (min-width: 1024px) {
  .footer-desktop {
    display: flex;
  }

  .footer-mobile {
    display: none;
  }
}

/* ---- Lightbox ---- */
.colecao-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.colecao-lightbox.open {
  display: flex;
}

.colecao-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.colecao-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.colecao-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 12px;
  display: block;
}

.colecao-lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1;
  transition: background 0.2s;
}

.colecao-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.7);
}

@media (min-width: 768px) {
  .colecao-lightbox {
    display: none !important;
  }
}

/* ---- AnimatedContent (GSAP) ---- */
/* Elements with [data-ac] are animated by GSAP + ScrollTrigger.
   Initial state is set by gsap.set() in animate-content.js.
   This rule ensures elements are hidden before GSAP runs. */
[data-ac] {
  visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
  [data-ac] {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- Contact cards (index legacy) ---- */
.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .contact-info-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-info-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-info-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  background: var(--clr-white);
  color: var(--clr-primary);
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--clr-text-muted);
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--clr-text);
  line-height: 1.4;
}

/* ---- Hero Title (if present) ---- */
.hero-title {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  position: relative;
  z-index: 2;
}

.hero-title.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 0;
  max-width: 800px;
}

.hero-title h1 {
  color: var(--clr-white);
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3.5rem);
  font-weight: 600;
  text-align: center;
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero-title h1 {
    line-height: 1.05;
  }

  .hero-title {
    margin-top: 32px;
  }
}

/* ---- Privacy / Resolucao pages ---- */
.privacy-hero,
.resolucao-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: var(--clr-bg);
}

.privacy-hero h1,
.resolucao-hero h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  color: var(--clr-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

.privacy-hero p {
  font-size: 16px;
  color: var(--clr-text-muted);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.privacy-content,
.resolucao-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.privacy-content h2,
.resolucao-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--clr-primary);
  margin: 32px 0 16px;
}

.privacy-content p,
.resolucao-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.privacy-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.privacy-content li {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 8px;
}

.resolucao-entities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.resolucao-entity {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.resolucao-entity-icon {
  width: 40px;
  height: 40px;
  background: var(--clr-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.resolucao-entity-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.resolucao-entity-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--clr-text);
}

.resolucao-entity-location {
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 2px;
}

@media (min-width: 768px) {

  .contact-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  @media (min-width: 768px) {
    .contact-card {
      flex-direction: row;
      padding: 48px 56px;
      gap: 48px;
    }
  }

  .contact-image {
    width: 100%;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
  }

  @media (min-width: 768px) {
    .contact-image {
      width: 50%;
      min-height: 400px;
    }
  }

  @media (min-width: 1024px) {
    .contact-image {
      min-height: 480px;
    }
  }

  .contact-logo {
    height: 32px;
    width: 140px;
    background: url(../images/logo-white.png) 50% / contain no-repeat;
  }

  @media (min-width: 768px) {
    .contact-logo {
      height: 40px;
      width: 200px;
    }
  }

  .contact-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    color: var(--clr-text);
    line-height: 1.2;
  }

  .contact-details {
    font-size: 15px;
    line-height: 1.8;
    color: var(--clr-text);
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .contact-details {
      line-height: 2;
    }
  }

  .contact-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-text);
  }

  /* ---- Legal / Policy Pages ---- */
  .legal-hero {
    background: var(--clr-primary);
    padding: 120px 0 56px;
    text-align: center;
  }

  @media (min-width: 768px) {
    .legal-hero {
      padding: 140px 0 72px;
    }
  }

  .legal-hero-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--clr-white);
    letter-spacing: -0.3px;
    margin-bottom: 16px;
  }

  .legal-hero-desc {
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
  }

  .container--narrow {
    max-width: 800px;
  }

  .legal-block {
    margin-bottom: 32px;
  }

  .legal-block p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: var(--clr-text);
  }

  .legal-block p:last-child {
    margin-bottom: 0;
  }

  .legal-block--center {
    text-align: center;
  }

  .legal-heading {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 600;
    color: var(--clr-text);
    margin-bottom: 12px;
    letter-spacing: -0.2px;
  }

  .legal-list {
    padding-left: 24px;
    margin: 0 0 12px;
  }

  .legal-list li {
    margin-bottom: 6px;
    line-height: 1.7;
    color: var(--clr-text);
  }

  .legal-highlight {
    background: var(--clr-surface);
    border-left: 3px solid var(--clr-primary);
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin-top: 12px;
    line-height: 1.7;
  }

  /* Litigio entity cards */
  .litigio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0 32px;
  }

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

  .litigio-card {
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 24px;
    transition: box-shadow 0.25s, border-color 0.25s;
  }

  .litigio-card:hover {
    border-color: var(--clr-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  }

  .litigio-card-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 8px;
  }

  .litigio-card-desc {
    font-size: 14px;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .litigio-card-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s;
  }

  .litigio-card-link:hover {
    color: var(--clr-accent);
  }