:root {
  /* Brand */
  --green-900: #061f16;
  --green-800: #092a1f;
  --green-700: #0d3d2d;
  --green-600: #145a42;
  --green-500: #1f7a5a;
  --green-400: #3ca07a;
  --green-300: #7ec850;
  --green-200: #b5e0a0;
  --green-100: #e2f5d8;

  --gold-500: #f4c430;
  --gold-400: #f7d35e;
  --gold-300: #f9e08a;
  --gold-200: #fcedb5;
  --gold-100: #fef8e0;

  /* Brown (from logo) */
  --brown-900: #2d1a1a;
  --brown-800: #452626;
  --brown-700: #5a3333;
  --brown-600: #785050;
  --brown-500: #8c6060;
  --brown-400: #a07878;
  --brown-300: #c8a0a0;
  --brown-200: #e0c8c8;
  --brown-100: #f5e8e8;

  --neutral-900: #1a1a1a;
  --neutral-800: #333;
  --neutral-700: #4d4d4d;
  --neutral-600: #666;
  --neutral-500: #808080;
  --neutral-400: #999;
  --neutral-300: #ccc;
  --neutral-200: #e0e0e0;
  --neutral-100: #f5f5f5;
  --neutral-50: #fafafa;
  --white: #fff;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-glow: 0 0 20px rgba(244,196,48,0.3);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration: 0.3s;

  /* Layout */
  --header-h: 70px;
  --container: 1200px;
  --container-narrow: 900px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-tap-highlight-color: transparent; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--neutral-50);
  color: var(--neutral-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- Container --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
.text-accent { color: var(--gold-500); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.section-tag::before,
.section-tag::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--green-800);
  line-height: 1.2;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: var(--neutral-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), #e6b800);
  color: var(--green-900);
  box-shadow: 0 4px 15px rgba(244,196,48,0.35);
}
.btn-primary:hover {
  box-shadow: 0 6px 25px rgba(244,196,48,0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(9,42,31,0.25);
}
.btn-secondary:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(9,42,31,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--green-800);
  border: 2px solid var(--green-800);
}
.btn-outline:hover {
  background: var(--green-800);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6,31,22,0.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration) var(--ease);
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 60px; width: auto; display: block; }

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  position: relative;
}
.nav-link:hover {
  color: var(--gold-500);
  background: rgba(244,196,48,0.08);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-cart {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-cart:hover {
  background: rgba(244,196,48,0.12);
  border-color: rgba(244,196,48,0.25);
  color: var(--gold-500);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 0.65rem;
  font-weight: 800;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(244,196,48,0.4);
}

.btn-mobile {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  cursor: pointer;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
}
.btn-mobile:hover { background: rgba(255,255,255,0.1); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../images/fotos/rb-coutinho-agronecio-23.jpg') center / cover no-repeat;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 40%, rgba(244,196,48,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 60%, rgba(126,200,80,0.08) 0%, transparent 50%),
    linear-gradient(160deg, rgba(6,31,22,0.75) 0%, rgba(9,42,31,0.7) 25%, rgba(13,61,45,0.65) 55%, rgba(20,90,66,0.6) 85%, rgba(31,122,90,0.55) 100%);
  z-index: -1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/bg-pattern.png') center / cover no-repeat;
  opacity: 0.04;
  z-index: -1;
}
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold-500);
  border-radius: 50%;
  opacity: 0.15;
  animation: float-particle 20s infinite linear;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,196,48,0.1);
  border: 1px solid rgba(244,196,48,0.2);
  border-radius: var(--radius-full);
  padding: 6px 16px 6px 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-400);
  margin-bottom: 24px;
}
.hero-badge span {
  background: var(--gold-500);
  color: var(--green-900);
  border-radius: var(--radius-full);
  padding: 2px 10px;
  font-size: 0.65rem;
  font-weight: 700;
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.hero-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

/* --- Brands / Trusted By --- */
.brands {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--neutral-100);
}
.brands-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 24px;
}
.brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.4;
}
.brands-grid span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-600);
  letter-spacing: 1px;
}

/* --- Features --- */
.features {
  padding: 100px 0;
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  background: var(--neutral-50);
  border: 1px solid var(--neutral-100);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-300));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--gold-100), var(--green-100));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-600);
  transition: all var(--duration) var(--ease);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--white);
  transform: scale(1.05) rotate(-3deg);
}
.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 8px;
}
.feature-text {
  color: var(--neutral-600);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- About --- */
.about {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-900), var(--green-800), var(--green-700));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,196,48,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  position: relative;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,0.1);
  pointer-events: none;
}
.about-image img { width: 100%; height: 450px; object-fit: cover; }
.about-content .section-title { color: var(--white); text-align: left; }
.about-text {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 28px;
  line-height: 1.8;
}
.about-list { display: flex; flex-direction: column; gap: 14px; }
.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}
.about-list li svg { flex-shrink: 0; }

/* --- Products --- */
.products {
  padding: 120px 0;
  background: var(--neutral-50);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--neutral-100);
  transition: all var(--duration) var(--ease);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}
.product-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-category {
  display: inline-block;
  padding: 3px 10px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  align-self: flex-start;
}
.product-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-800);
}
.product-desc {
  font-size: 0.82rem;
  color: var(--neutral-600);
  line-height: 1.5;
  flex: 1;
}
.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-500), #e6b800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.product-info .btn {
  margin-top: 8px;
}

/* --- Testimonials --- */
.testimonials {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: var(--white);
  position: relative;
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all var(--duration) var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(244,196,48,0.15);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star-filled { color: var(--gold-500); }
.star-empty { color: rgba(255,255,255,0.15); }
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 16px;
}
.testimonial-author {
  color: var(--gold-500);
  font-weight: 600;
  font-size: 0.85rem;
}

/* --- Contact --- */
.contact {
  padding: 120px 0;
  background: var(--white);
}
.contact-form-wrapper {
  background: var(--neutral-50);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--neutral-100);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--neutral-700);
}
.form-control {
  padding: 12px 16px;
  border: 2px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  transition: all var(--duration) var(--ease);
  outline: none;
  background: var(--white);
}
.form-control:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 4px rgba(244,196,48,0.12);
}
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Footer --- */
.footer {
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: var(--white);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
}
.footer-logo .logo-accent { color: var(--gold-500); }
.footer-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin: 16px 0 24px;
  line-height: 1.8;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
  color: rgba(255,255,255,0.6);
}
.footer-social a:hover {
  background: var(--gold-500);
  color: var(--green-900);
  transform: translateY(-3px);
}
.footer-links h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.88rem;
  margin-bottom: 10px;
  transition: all var(--duration) var(--ease);
}
.footer-links a:hover {
  color: var(--gold-500);
  padding-left: 6px;
}
.footer-bottom {
  text-align: center;
  padding: 24px 0;
}
.footer-bottom p {
  color: rgba(255,255,255,0.35);
  font-size: 0.82rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25d366, #20bd5b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 999;
  transition: all var(--duration) var(--ease-bounce);
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 30px rgba(37,211,102,0.55);
}

/* --- Flash Messages --- */
.flash-messages {
  position: fixed;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1100;
  width: 90%;
  max-width: 600px;
}
.flash-message {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
  animation: flashIn 0.35s var(--ease-bounce);
  box-shadow: var(--shadow-lg);
}
.flash-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.flash-error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
@keyframes flashIn {
  from { opacity: 0; transform: translateY(-24px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Cart Modal --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease);
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }

.cart-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92) translateY(20px);
  width: 520px;
  max-width: calc(100vw - 32px);
  max-height: 88vh;
  background: var(--white);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s var(--ease-bounce);
}
.cart-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1) translateY(0);
}

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--neutral-100);
}
.cart-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
}
.cart-close {
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--neutral-500);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration) var(--ease);
}
.cart-close:hover { background: var(--neutral-100); color: var(--neutral-800); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
  max-height: 50vh;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  gap: 16px;
  color: var(--neutral-400);
}
.cart-empty p { font-size: 0.9rem; }

.cart-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--neutral-100);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--neutral-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-price {
  color: var(--gold-500);
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 2px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--neutral-100);
  border-radius: var(--radius-sm);
  padding: 2px;
  flex-shrink: 0;
}
.cart-item-qty button {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-800);
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.cart-item-qty button:hover { background: var(--neutral-200); }
.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--neutral-800);
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--neutral-300);
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease);
  flex-shrink: 0;
}
.cart-item-remove:hover { color: #e74c3c; background: rgba(231,76,60,0.08); }

.cart-footer {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--neutral-100);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
}
.cart-footer-row { display: flex; gap: 10px; }
.cart-footer-row .btn { flex: 1; }

/* --- Page Header (inner pages) --- */
.page-header {
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 40px;
  background: linear-gradient(160deg, var(--green-900), var(--green-800), var(--green-700));
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244,196,48,0.05), transparent);
  border-radius: 50%;
}
.page-header h1 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  position: relative;
}
.page-header p {
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-size: 0.95rem;
  position: relative;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: color var(--duration) var(--ease);
  position: relative;
}
.back-link:hover { color: var(--gold-500); }

/* --- Products Listing --- */
.products-page { padding: 60px 0; }

/* --- Product Detail --- */
.product-detail { padding: 60px 0; }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product-detail-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.product-detail-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.04);
  pointer-events: none;
}
.product-detail-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.product-detail-name {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 8px;
}
.product-detail-category {
  display: inline-block;
  padding: 4px 12px;
  background: var(--green-100);
  color: var(--green-600);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-detail-price {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 24px;
}
.product-detail-desc {
  color: var(--neutral-600);
  line-height: 1.9;
  margin-bottom: 32px;
  font-size: 1rem;
}
.product-detail-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Empty State --- */
.empty-state { text-align: center; padding: 80px 20px; color: var(--neutral-400); }
.empty-state p { margin-bottom: 16px; }

/* --- Checkout --- */
.checkout-section { padding: 40px 0 80px; }
.checkout-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: start; }
.checkout-form h2, .checkout-summary h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--gold-500);
}
.checkout-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}
.checkout-form .form-group { margin-bottom: 20px; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.checkout-form .form-row .form-group { margin-bottom: 0; }
.checkout-summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.checkout-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--neutral-100);
}
.checkout-item:last-child { border-bottom: none; }
.checkout-item-img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.checkout-item-info { flex: 1; min-width: 0; }
.checkout-item-name {
  font-weight: 600;
  color: var(--neutral-800);
  font-size: 0.9rem;
}
.checkout-item-qtd { font-size: 0.78rem; color: var(--neutral-400); margin-top: 2px; }
.checkout-item-price {
  font-weight: 700;
  color: var(--green-800);
  font-size: 0.9rem;
  white-space: nowrap;
}
.checkout-item-qty {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--neutral-100);
  border-radius: var(--radius-sm);
  padding: 2px;
  flex-shrink: 0;
}
.checkout-item-qty button {
  background: none; border: none;
  width: 28px; height: 28px;
  font-size: 1rem; font-weight: 700;
  color: var(--green-800); cursor: pointer;
  border-radius: 4px; display: flex;
  align-items: center; justify-content: center;
  transition: background 0.15s;
}
.checkout-item-qty button:hover { background: var(--neutral-200); }
.checkout-item-qty span { min-width: 24px; text-align: center; font-weight: 600; font-size: 0.85rem; color: var(--neutral-800); }
.checkout-item-remove {
  background: none; border: none; color: var(--neutral-300);
  cursor: pointer; padding: 6px; border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease); flex-shrink: 0;
}
.checkout-item-remove:hover { color: #e74c3c; background: rgba(231,76,60,0.08); }
.checkout-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 20px; margin-top: 8px;
  border-top: 3px solid var(--green-800);
  font-size: 1.2rem; font-weight: 700; color: var(--green-800);
}

.alert { padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px; font-size: 0.9rem; font-weight: 500; }
.alert-error { background: #fff0f0; border: 1px solid #ffd4d4; color: #c0392b; }

/* --- Checkout Success --- */
.checkout-success { padding: 60px 0 80px; }
.success-box {
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--white); border-radius: var(--radius-xl);
  padding: 56px 40px; box-shadow: var(--shadow-md);
  border: 1px solid var(--neutral-100);
}
.success-icon { margin-bottom: 20px; }
.success-box h2 { font-size: 1.5rem; font-weight: 800; color: var(--green-800); margin-bottom: 12px; }
.success-msg { color: var(--neutral-600); margin-bottom: 28px; line-height: 1.7; }
.success-details {
  background: var(--green-100); border-radius: var(--radius-md);
  padding: 20px 24px; margin-bottom: 32px; text-align: left;
}
.success-details p {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04);
  font-size: 0.9rem; color: var(--green-800);
}
.success-details p:last-child { border-bottom: none; }
.success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.success-actions .btn { min-width: 180px; }

/* --- Institutional Pages --- */
.content-page { padding: 60px 0 80px; background: var(--neutral-50); min-height: 50vh; }
.content-box {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 48px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-100);
  max-width: 800px; margin: 0 auto;
}
.content-box h2 {
  font-size: 1.2rem; font-weight: 700; color: var(--green-800);
  margin-top: 36px; margin-bottom: 12px;
}
.content-box h2:first-child { margin-top: 0; }
.content-box p {
  color: var(--neutral-600); line-height: 1.8;
  font-size: 0.92rem; margin-bottom: 8px;
}
.faq-list { display: flex; flex-direction: column; gap: 20px; }
.faq-item { border-bottom: 1px solid var(--neutral-100); padding-bottom: 20px; }
.faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.faq-item h3 { font-size: 1rem; font-weight: 600; color: var(--green-800); margin-bottom: 8px; }
.faq-item p { color: var(--neutral-600); line-height: 1.7; font-size: 0.9rem; }

/* --- 404 Page --- */
.not-found {
  min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; justify-content: center; padding: 100px 0;
}
.not-found-card {
  text-align: center; padding: 60px 40px;
  background: var(--white); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md); max-width: 500px;
  border: 1px solid var(--neutral-100);
}
.not-found-icon { margin-bottom: 20px; }
.not-found-title {
  font-size: 4rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.not-found-subtitle { font-size: 1.4rem; font-weight: 600; color: var(--green-800); margin-bottom: 12px; }
.not-found-text { color: var(--neutral-600); margin-bottom: 24px; }

/* --- Gallery --- */
.gallery {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--brown-800), var(--brown-700), var(--brown-600));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.gallery::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,196,48,0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gallery .section-title { color: var(--white); }
.gallery .section-subtitle { color: rgba(255,255,255,0.6); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
  transition: border-color var(--duration) var(--ease);
}
.gallery-item:hover::after { border-color: var(--gold-500); }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 4px;
}
.gallery-item-overlay p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.gallery-item-wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* --- Brand Values --- */
.brand-values {
  padding: 120px 0;
  background: var(--white);
}
.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.brand-value-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: var(--brown-100);
  border: 1px solid var(--brown-200);
  transition: all var(--duration) var(--ease);
  position: relative;
  overflow: hidden;
}
.brand-value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown-600), var(--gold-500));
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
}
.brand-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.brand-value-card:hover::before { opacity: 1; }
.brand-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--brown-600), var(--brown-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--duration) var(--ease);
}
.brand-value-card:hover .brand-value-icon {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  transform: scale(1.05) rotate(-5deg);
}
.brand-value-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brown-800);
  margin-bottom: 8px;
}
.brand-value-text {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

/* --- CTA Section --- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brown-800), var(--green-800));
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/embalagens.png') center / cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,196,48,0.06), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.cta-section > .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

/* --- Unidades --- */
.unidades {
  padding: 120px 0;
  background: linear-gradient(160deg, var(--green-900), var(--green-800));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.unidades::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(244,196,48,0.05), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.unidades .section-title { color: var(--white); }
.unidades .section-subtitle { color: rgba(255,255,255,0.6); }
.unidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.unidade-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.unidade-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244,196,48,0.2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.unidade-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.unidade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.unidade-card:hover .unidade-image img { transform: scale(1.08); }
.unidade-body { padding: 24px; }
.unidade-nome {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.unidade-endereco,
.unidade-telefone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-bottom: 8px;
  line-height: 1.5;
}
.unidade-endereco svg,
.unidade-telefone svg {
  flex-shrink: 0;
  opacity: 0.5;
  color: var(--gold-500);
}

/* --- Complete Gallery (GLightbox) --- */
.gallery-complete {
  padding: 120px 0;
  background: var(--white);
}
.gallery-complete-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery-complete-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
}
.gallery-complete-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: border-color var(--duration) var(--ease);
  pointer-events: none;
}
.gallery-complete-item:hover::after { border-color: var(--gold-500); }
.gallery-complete-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}
.gallery-complete-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery-complete-item:hover img { transform: scale(1.1); }

/* GLightbox overrides */
.glightbox-clean .gslide-description {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}
.glightbox-clean .gslide-title {
  color: var(--gold-500);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}
.glightbox-clean .gslide-desc {
  color: rgba(255,255,255,0.7);
  font-family: 'Poppins', sans-serif;
}

/* --- 1024px --- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero-stats { gap: 32px; }
  .about-grid { gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-values-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-complete-grid { grid-template-columns: repeat(3, 1fr); }
  .unidades-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .navbar-menu {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(6,31,22,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .navbar-menu.active { display: flex; }
  .nav-link { padding: 12px 16px; width: 100%; }
  .btn-mobile { display: flex; align-items: center; justify-content: center; }

  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats { gap: 24px; flex-wrap: wrap; margin-top: 40px; padding-top: 24px; }
  .hero-stat strong { font-size: 1.4rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 36px 24px; }

  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-image img { height: 280px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-image { height: 180px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-form-wrapper { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .product-detail-image img { height: 300px; }

  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-form .form-row { grid-template-columns: 1fr; }
  .checkout-form, .checkout-summary { padding: 24px 20px; }

  .form-row { grid-template-columns: 1fr; }
  .success-box { padding: 40px 24px; }

  .hero-particles { display: none; }
  .hero-badge { font-size: 0.7rem; }
  .brands-grid { gap: 24px; }
  .brands-grid span { font-size: 0.9rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item-wide { grid-column: span 1; grid-row: span 1; }
  .gallery-item-tall { grid-row: span 1; }
  .brand-values-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 80px 0; }
  .gallery-complete-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-complete { padding: 80px 0; }
  .unidades-grid { grid-template-columns: 1fr; }
  .unidades { padding: 80px 0; }
  .unidade-image { height: 180px; }
}

/* --- 480px --- */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .product-image { height: 220px; }
  .content-box { padding: 28px 20px; }
  .logo-img { height: 48px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .brand-values-grid { grid-template-columns: 1fr; }
  .gallery { padding: 80px 0; }
  .brand-values { padding: 80px 0; }
  .gallery-complete-grid { grid-template-columns: 1fr; }
  .gallery-complete { padding: 60px 0; }
  .unidades-grid { grid-template-columns: 1fr; }
  .unidades { padding: 60px 0; }
  .unidade-image { height: 200px; }
}
