/* ==========================================
   SUPERTORRES – Modern Corporate Design System
   Color Scheme: Dark Forest Green (#133821) + Warm Cream (#faf8f3) + Vibrant Green (#1fa24e) + Orange (#f07d00)
   ========================================== */

/* ---- TOKENS & RESET ---- */
:root {
  --green-forest: #1F3C1A;
  --green-forest-dark: #142811;
  --green-forest-light: #2A5223;
  --green-primary: #4C863B;
  --green-dark: #3B6B2E;
  --green-light: #5FA84B;
  --green-bg-light: #EFF6EE;
  --green: #4C863B;
  
  --orange-primary: #D48518;
  --orange-dark: #B86F10;
  --orange-light: #EBA038;
  --orange-bg-light: #FDF6EC;
  --orange: #D48518;

  --dark: #0f1e16;
  --dark-2: #152916;
  --dark-3: #102114;

  --bg-main: #FAFBF9;
  --bg-secondary: #F3F6F2;
  --bg-white: #ffffff;
  --card-bg: #ffffff;
  --card-border: rgba(0, 0, 0, 0.07);

  --text-primary: #1B291A;
  --text-secondary: #475845;
  --text-muted: #798C76;
  --text-white: #ffffff;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 50px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 8px 24px rgba(31, 60, 26, 0.06);
  --shadow-lg: 0 16px 40px rgba(31, 60, 26, 0.1);
  --shadow-green: 0 8px 24px rgba(76, 134, 59, 0.25);
  --shadow-orange: 0 8px 24px rgba(212, 133, 24, 0.25);

  --font-main: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --font-accent: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, blinkmacsystemfont, 'Segoe UI', roboto, sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.65;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; object-fit: cover; }
button, input, textarea, select { font-family: inherit; outline: none; border: none; }

/* UTILITY CLASSES */
.container {
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-green { color: var(--green-primary) !important; font-weight: 700; }
.text-orange { color: var(--orange-primary) !important; font-weight: 700; }
.text-dark { color: var(--text-primary) !important; }
.text-white { color: var(--text-white) !important; }
.text-muted { color: var(--text-muted) !important; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--green-primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(31, 162, 78, 0.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 162, 78, 0.4);
}

.btn-orange-solid {
  background: var(--orange-primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(240, 125, 0, 0.3);
}
.btn-orange-solid:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(240, 125, 0, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  transform: translateY(-2px);
}

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

.btn-full {
  width: 100%;
}

.btn-glow {
  box-shadow: 0 10px 26px rgba(76, 134, 59, 0.18);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp:hover {
  background: #1eb957;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

/* SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--green-bg-light);
  border: 1px solid rgba(76, 134, 59, 0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-primary);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-accent);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  margin-top: 12px;
  line-height: 1.6;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.link-all {
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 15px;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-all:hover {
  color: var(--green-dark);
  transform: translateX(4deg);
}

/* ==========================================
   TOP BAR & NAVBAR
   ========================================== */
.top-bar {
  background: var(--green-forest);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-family: var(--font-main);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.top-bar i {
  color: var(--orange-primary);
  margin-right: 6px;
}

#navbar {
  position: sticky;
  top: 0;
  z-index: 9000;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

/* ST LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-st-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo-image,
.footer-logo-image {
  display: block;
  width: auto;
  max-width: 140px;
  max-height: 110px;
  height: auto;
  object-fit: contain;
}
.st-logo-icon {
  width: 52px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.st-logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}
.st-text-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.0;
}
.brand-super-torres {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.st-text-brand .brand-super {
  font-family: var(--font-main);
  font-size: 19px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: -0.01em;
}
.st-text-brand .brand-torres {
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 900;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.st-text-brand .brand-subtext {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  color: var(--green-primary);
  letter-spacing: -0.01em;
  margin-top: 2px;
  opacity: 0.95;
  white-space: nowrap;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--green-primary);
  background: var(--green-bg-light);
}

.nav-dropdown {
  position: relative;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px;
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 99;
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
}
.dropdown-menu a:hover {
  background: var(--green-bg-light);
  color: var(--green-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 18px;
  position: relative;
  transition: var(--transition);
}
.cart-btn:hover {
  background: var(--green-bg-light);
  color: var(--green-primary);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--orange-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  background: radial-gradient(circle at top left, rgba(126, 211, 33, 0.22), transparent 28%),
              radial-gradient(circle at bottom right, rgba(229, 144, 40, 0.18), transparent 22%),
              linear-gradient(135deg, #0a2715 0%, #16381e 40%, #224e29 100%);
  background-size: 300% 300%;
  animation: heroGradient 18s ease infinite;
  color: #ffffff;
  padding: 72px 0 88px 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.6;
  pointer-events: none;
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.28;
  filter: blur(22px);
  animation: floatShapes 18s ease-in-out infinite;
}
.hero-shape-1 {
  width: 260px;
  height: 260px;
  background: rgba(79, 178, 82, 0.25);
  top: 12%;
  left: -6%;
}
.hero-shape-2 {
  width: 180px;
  height: 180px;
  background: rgba(244, 146, 35, 0.22);
  top: 45%;
  right: 10%;
  animation-duration: 22s;
}
.hero-shape-3 {
  width: 340px;
  height: 340px;
  background: rgba(255, 255, 255, 0.12);
  bottom: -6%;
  left: 18%;
  animation-duration: 20s;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-branding {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}
.hero-logo-image {
  width: clamp(180px, 22vw, 260px);
  min-width: 180px;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  background: rgba(255,255,255,0.18);
  padding: 18px;
  box-shadow: 0 22px 50px rgba(0,0,0,0.24);
}
.hero-brand-copy {
  display: flex;
  flex-direction: column;
}
.hero-brand-label {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.hero-brand-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-top: 6px;
}
@keyframes heroGradient {
  0% { background-position: 0% 38%; }
  50% { background-position: 100% 63%; }
  100% { background-position: 0% 38%; }
}
@keyframes floatShapes {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-18px) translateX(14px); }
}

.page-hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) brightness(0.7);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 22, 0.25) 0%, rgba(15, 30, 22, 0.8) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
  color: #ffffff;
}
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  margin-bottom: 18px;
}
.page-hero .breadcrumb a {
  color: rgba(255,255,255,0.9);
}
.page-hero .breadcrumb i {
  font-size: 10px;
}
.hero-content h1 {
  font-family: var(--font-accent);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* HERO COMPOSITE ARTWORK & FULL-WIDTH COVER SLIDER */
.hero-top-bar-intro {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

.hero-top-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-headline-block {
  max-width: 960px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.hero-headline-block h1 {
  font-family: var(--font-accent);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin: 14px 0 16px;
  letter-spacing: -0.02em;
}

.hero-headline-block .hero-desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* HERO FULLWIDTH SLIDER SECTION (DE PONTA A PONTA SEM MARGENS) */
.hero-top-section {
  background: radial-gradient(circle at top left, rgba(126, 211, 33, 0.22), transparent 28%),
              radial-gradient(circle at bottom right, rgba(229, 144, 40, 0.18), transparent 22%),
              linear-gradient(135deg, #0a2715 0%, #16381e 40%, #224e29 100%);
  color: #ffffff;
  padding: 36px 0 24px 0;
  position: relative;
}

.hero-fullwidth-slider-section {
  width: 100%;
  padding: 0;
  margin: 0;
  background: #071510;
  position: relative;
  overflow: hidden;
}

.hero-fullwidth-slider-section .hero-cover-slider,
.hero-cover-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
  background: #071510;
  height: clamp(640px, 68vw, 1150px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stats-section {
  background: #0a2014;
  padding: 0 0 50px 0;
  color: #ffffff;
}

.hero-slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.25, 0.8, 0.25, 1);
  transform: scale(1.02);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.hero-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Garante que os rostos e cabeças fiquem 100% visíveis */
  display: block;
}

.hero-slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(10, 24, 15, 0.88);
  border: 2px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
}

.hero-slide-nav:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 14px 40px rgba(76, 134, 59, 0.65);
}

.hero-slide-nav.prev { left: 40px; }
.hero-slide-nav.next { right: 40px; }

.hero-slide-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
  background: rgba(10, 24, 15, 0.8);
  padding: 10px 28px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-slide-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: var(--transition);
}

.hero-slide-dot.active {
  width: 44px;
  border-radius: 12px;
  background: var(--orange-primary);
  box-shadow: 0 0 16px rgba(212, 133, 24, 0.85);
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  max-width: 680px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.18);
  background: #071510;
}
.hero-mockup-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
}

/* HERO STATS BAR */
.hero-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.h-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.h-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--orange-primary);
  flex-shrink: 0;
}
.h-stat-val {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}
.h-stat-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

/* STEP BADGES FOR ORGANIZATION */
.card-step-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
  opacity: 0.6;
}

/* ==========================================
   O QUE PROCURA HOJE?
   ========================================== */
.what-looking {
  padding: 80px 0;
  background: var(--bg-main);
}
.looking-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.looking-card {
  background: var(--bg-white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.looking-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 162, 78, 0.3);
}
.looking-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.looking-icon-wrap.green {
  background: var(--green-bg-light);
  color: var(--green-primary);
}
.looking-icon-wrap.orange {
  background: var(--orange-bg-light);
  color: var(--orange-primary);
}

.looking-card h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.looking-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}
.looking-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--transition);
}
.looking-arrow-btn.green {
  background: var(--green-primary);
  box-shadow: 0 4px 12px rgba(31, 162, 78, 0.3);
}
.looking-arrow-btn.orange {
  background: var(--orange-primary);
  box-shadow: 0 4px 12px rgba(240, 125, 0, 0.3);
}
.looking-card:hover .looking-arrow-btn {
  transform: scale(1.1);
}

/* ==========================================
   QUEM SOMOS
   ========================================== */
.about-section {
  padding: 80px 0;
  background: #ffffff;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-content h2 {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}
.about-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
}

.mvv-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.mvv-card {
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  border: 1px solid var(--card-border);
}
.mvv-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}
.mvv-icon.green { background: var(--green-bg-light); color: var(--green-primary); }
.mvv-icon.orange { background: var(--orange-bg-light); color: var(--orange-primary); }
.mvv-card h4 {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.mvv-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================
   LOJA ONLINE CATEGORIES
   ========================================== */
.loja-section {
  padding: 80px 0;
  background: var(--bg-main);
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.cat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.cat-img-box {
  height: 130px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
  background: #f8f9fa;
}
.cat-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.cat-card:hover .cat-img-box img {
  transform: scale(1.08);
}
.cat-card h4 {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.cat-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ==========================================
   PRODUTOS EM DESTAQUE
   ========================================== */
.produtos-section {
  padding: 80px 0;
  background: #ffffff;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.product-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 162, 78, 0.3);
}
.product-img-box {
  height: 140px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
  background: #f8f9fa;
}
.product-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.product-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-price {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 12px;
  margin-top: auto;
}
.product-actions-row {
  display: flex;
  gap: 8px;
}
.btn-action-cart, .btn-action-wa {
  flex: 1;
  padding: 8px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-action-cart {
  background: var(--green-bg-light);
  color: var(--green-primary);
}
.btn-action-cart:hover {
  background: var(--green-primary);
  color: #fff;
}
.btn-action-wa {
  background: #e7f9ee;
  color: #25D366;
}
.btn-action-wa:hover {
  background: #25D366;
  color: #fff;
}

/* ==========================================
   NOSSOS SERVIÇOS
   ========================================== */
.servicos-section {
  padding: 80px 0;
  background: var(--bg-main);
}
.services-grid-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-item-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-item-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.serv-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px auto;
}
.serv-icon-circle.green { background: var(--green-bg-light); color: var(--green-primary); }
.serv-icon-circle.orange { background: var(--orange-bg-light); color: var(--orange-primary); }
.service-item-card h3 {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-item-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================
   SUPER EXPRESS LOGISTICS BANNER
   ========================================== */
.express-section {
  padding: 80px 0;
  background: #ffffff;
}
.express-banner-card {
  background: linear-gradient(135deg, #f8f6f0 0%, #edf6f0 100%);
  border: 1px solid rgba(31, 162, 78, 0.15);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  gap: 36px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.express-rider-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.express-info-col h2 {
  font-family: var(--font-accent);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 12px;
}
.express-info-col p {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.express-pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.exp-pill {
  background: #ffffff;
  border: 1px solid var(--card-border);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-primary);
}

.delivery-plans-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}
.delivery-plans-box h4 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}
.plan-row:last-child { border-bottom: none; }
.plan-badge-label {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  color: #fff;
}
.plan-badge-label.imediata { background: var(--green-primary); }
.plan-badge-label.urgente { background: var(--orange-primary); }
.plan-badge-label.normal { background: #2ecc71; }
.plan-badge-label.seguinte { background: var(--green-forest); }
.plan-time { font-size: 13px; font-weight: 600; color: var(--text-secondary); }

/* ==========================================
   PORTFOLIO
   ========================================== */
.portfolio-section {
  padding: 80px 0;
  background: var(--bg-main);
}
.portfolio-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.port-card-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.port-card-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.port-img-container {
  height: 220px;
  overflow: hidden;
}
.port-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.port-card-item:hover .port-img-container img {
  transform: scale(1.06);
}
.port-card-body {
  padding: 20px;
}
.port-tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--green-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
}
.port-card-body h4 {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: 80px 0;
  background: #ffffff;
}
.contact-grid-3 {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 36px;
}
.contact-info-box h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-bg-light);
  color: var(--green-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-detail-item strong { display: block; font-size: 14px; color: var(--text-primary); }
.contact-detail-item span { font-size: 14px; color: var(--text-secondary); }

.contact-form-box {
  background: var(--bg-main);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--card-border);
}
.contact-form-box h3 {
  font-family: var(--font-accent);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.contact-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 32px;
}
.contact-form-wrap .section-label {
  color: var(--text-white);
  background: rgba(255,255,255,0.08);
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: var(--font-main);
  font-size: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.65);
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(95,168,75,0.8);
  box-shadow: 0 0 0 3px rgba(95,168,75,0.16);
}
.contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  color: #ffffff;
}
.contact-item-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: var(--green-light);
  font-size: 20px;
}
.contact-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  color: #fff;
}
.contact-item p,
.contact-item a {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.7;
}
.contact-item a:hover {
  color: var(--green-light);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.social-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  color: #fff;
  transition: var(--transition);
}
.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.14);
}
.service-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 28px 22px;
  color: #fff;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.service-card h3 {
  margin: 18px 0 12px;
  font-family: var(--font-accent);
  font-size: 20px;
  color: #fff;
}
.service-card p {
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}
.faq-list {
  display: grid;
  gap: 16px;
}
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.faq-header i {
  transition: transform 0.3s ease;
}
.faq-item.active .faq-header i {
  transform: rotate(45deg);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.active .faq-body {
  max-height: 240px;
}
.faq-body-inner {
  padding: 0 20px 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
}
.contact-map {
  margin-top: 32px;
  min-height: 360px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}
@media (max-width: 868px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group-item {
  margin-bottom: 16px;
}
.form-group-item label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.form-group-item input, .form-group-item textarea {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
}
.form-group-item input:focus, .form-group-item textarea:focus {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px rgba(31, 162, 78, 0.15);
}

.map-card-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  height: 100%;
  min-height: 320px;
}
.map-card-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================
   PAGE HEADER FOR SUBPAGES
   ========================================== */
.page-header {
  background: linear-gradient(135deg, var(--green-forest-dark) 0%, var(--green-forest) 100%);
  color: #ffffff;
  padding: 56px 0 64px 0;
  text-align: center;
}
.page-header h1 {
  font-family: var(--font-accent);
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 10px;
}
.page-header p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--green-forest);
  color: rgba(255, 255, 255, 0.85);
  padding: 72px 0 28px 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-col h4 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--orange-primary);
  padding-left: 6px;
}

.newsletter-box p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text-primary);
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1100px) {
  .looking-grid, .categories-grid, .services-grid-row {
    grid-template-columns: repeat(3, 1fr);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .express-banner-card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 868px) {
  .hero-inner, .about-inner, .contact-grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .looking-grid, .categories-grid, .products-grid, .services-grid-row, .portfolio-grid-3, .mvv-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .looking-grid, .categories-grid, .products-grid, .services-grid-row, .portfolio-grid-3, .mvv-cards, .footer-grid {
    grid-template-columns: 1fr;
  }
  .top-bar-right {
    display: none;
  }
}

/* ==========================================
   ANIMATIONS & DYNAMIC MICRO-INTERACTIONS
   ========================================== */

/* Logo Hover Effect */
.logo:hover .st-logo-icon {
  transform: scale(1.08) rotate(-2deg);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .brand-super {
  color: var(--orange-primary) !important;
}

/* Card Hover Lift & Glow Effects */
.looking-card, .service-item-card, .port-card-item, .product-page-card, .mvv-card {
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease, border-color 0.35s ease !important;
}

.looking-card:hover, .service-item-card:hover, .port-card-item:hover, .product-page-card:hover {
  transform: translateY(-8px) scale(1.01) !important;
  box-shadow: 0 16px 36px rgba(31, 60, 26, 0.12), 0 0 0 1px rgba(76, 134, 59, 0.25) !important;
}

/* Toast Container */
#toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.custom-toast {
  background: var(--green-forest);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
  border-left: 4px solid var(--orange-primary);
}

.custom-toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-toast i {
  font-size: 18px;
  color: var(--orange-primary);
}

/* Section Highlight Pulse on Hash Navigation */
.section-highlight-active {
  animation: sectionPulseHighlight 2s ease;
}

@keyframes sectionPulseHighlight {
  0% { box-shadow: 0 0 0 0 rgba(76, 134, 59, 0.7); }
  50% { box-shadow: 0 0 0 12px rgba(76, 134, 59, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 134, 59, 0); }
}

@keyframes scaleInCard {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes bounceBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

/* Mobile Nav Drawer */
@media (max-width: 868px) {
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-bottom: 2px solid var(--green-primary);
    z-index: 9999;
  }
}

/* ==========================================
   SHOPPING CART DRAWER
   ========================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
  z-index: 9990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay.show {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 380px;
  max-width: 92vw;
  background: var(--dark-2);
  border-left: 1px solid var(--card-border);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.4);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  transform: translateX(105%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--card-border);
}
.cart-drawer-header h3 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
  margin: 0;
}
.cart-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-close:hover {
  background: var(--orange);
  color: #fff;
  transform: rotate(90deg);
}

.cart-empty {
  color: var(--text-muted);
  text-align: center;
  padding: 40px 20px;
  font-family: var(--font-main);
  font-size: 14px;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
}
.ci-info {
  flex: 1;
  min-width: 0;
}
.ci-name {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
}
.ci-price {
  font-family: var(--font-main);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.ci-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}
.ci-controls button {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.ci-controls button:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.ci-controls span {
  min-width: 22px;
  text-align: center;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
}
.ci-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  transition: var(--transition);
}
.ci-remove:hover {
  color: #ff6b6b;
}

.cart-footer {
  border-top: 1px solid var(--card-border);
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
}
.cart-total-row #cart-total {
  color: var(--orange-light);
}
.cart-clear-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 12.5px;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition);
}
.cart-clear-btn:hover {
  color: #ff6b6b;
}

/* ==========================================
   FLOATING WHATSAPP BUTTON
   ========================================== */
.wa-float-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 9980;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.wa-float-btn:hover {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.6);
  color: #fff;
}
.wa-float-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.6);
  animation: waPulse 2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
.wa-float-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-3);
  color: var(--text-white);
  font-family: var(--font-main);
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: var(--dark-3);
}
.wa-float-btn:hover .wa-float-tooltip {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-3);
  border-top: 2px solid var(--green);
  padding: 16px 22px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.4);
}
.cookie-banner p {
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  max-width: 720px;
  line-height: 1.6;
}
.cookie-banner a {
  color: var(--green-light);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* ==========================================
   FOOTER LEGAL LINKS
   ========================================== */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-main);
  font-size: 12.5px;
  transition: var(--transition);
}
.footer-legal-links a:hover {
  color: var(--green-light);
}
.footer-legal-links span {
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================
   LEGAL PAGES (Privacy / Terms)
   ========================================== */
.legal-page main {
  background: var(--dark);
}
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px 0 100px;
}
.legal-content h2 {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  margin: 44px 0 14px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}
.legal-content ul {
  padding-left: 22px;
  margin: 10px 0 20px;
}
.legal-content li {
  margin-bottom: 8px;
}
.legal-content strong {
  color: var(--text-white);
}
.legal-updated {
  font-family: var(--font-main);
  font-size: 13px;
  color: var(--green-light);
  margin-top: 8px;
}

@media (max-width: 560px) {
  .cart-drawer {
    width: 100vw;
  }
  .cookie-banner {
    padding: 14px 16px;
    text-align: center;
  }
  .cookie-banner-actions {
    justify-content: center;
    width: 100%;
  }
}

/* ==========================================
   LOJA ONLINE & PORTFOLIO PAGE STYLES (DUCKBILL-INSPIRED)
   ========================================== */

/* Store & Portfolio Filter Bar */
.store-filters, .portfolio-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 50px;
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  user-select: none;
}

.filter-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: var(--green-primary);
  border-color: var(--green-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(76, 134, 59, 0.3);
}

/* Products Grid */
.products-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-page-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.product-page-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 134, 59, 0.35);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--orange-primary);
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 50px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-badge.new {
  background: var(--green-primary);
}

.ppc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.ppc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-page-card:hover .ppc-img img {
  transform: scale(1.08);
}

.ppc-actions {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
  z-index: 3;
  opacity: 0.95;
  transition: var(--transition);
}

.prod-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.prod-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
  transform: scale(1.1);
}

.prod-btn.wa {
  background: #25d366;
  color: #ffffff;
}

.prod-btn.wa:hover {
  background: #1eb857;
  transform: scale(1.1);
}

.ppc-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ppc-cat {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-primary);
  margin-bottom: 6px;
}

.ppc-info h4 {
  font-family: var(--font-accent);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 14px;
}

.ppc-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ppc-price-val {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: var(--green-dark);
}

/* Portfolio Grid & Cards */
.portfolio-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.portfolio-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(76, 134, 59, 0.4);
}

.pi-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--bg-secondary);
}

.pi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.portfolio-item:hover .pi-img img {
  transform: scale(1.08);
}

.pi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 30, 22, 0.85) 0%, rgba(15, 30, 22, 0.2) 60%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .pi-overlay {
  opacity: 1;
}

.pi-view-btn {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transform: translateY(12px);
  transition: var(--transition);
}

.portfolio-item:hover .pi-view-btn {
  transform: translateY(0);
}

.portfolio-item:hover .pi-view-btn:hover {
  background: var(--green-primary);
  color: #ffffff;
}

.pi-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.pi-cat {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange-primary);
  margin-bottom: 6px;
}

.pi-info h4 {
  font-family: var(--font-accent);
  font-size: 17px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.pi-info p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Lightbox Modal */
.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.portfolio-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.plb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 15, 0.88);
  backdrop-filter: blur(8px);
}

.plb-container {
  position: relative;
  z-index: 2;
  background: var(--dark-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  max-width: 960px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  animation: plbScaleIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes plbScaleIn {
  from { transform: scale(0.92) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.plb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.plb-close:hover {
  background: var(--orange-primary);
  color: #fff;
  transform: rotate(90deg);
}

.plb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}

.plb-prev { left: 16px; }
.plb-next { right: 16px; }

.plb-nav:hover {
  background: var(--green-primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.plb-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.plb-image-wrapper {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  max-height: 600px;
  overflow: hidden;
}

.plb-image-wrapper img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.plb-details {
  padding: 36px 32px;
}

.plb-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(76, 134, 59, 0.2);
  border: 1px solid rgba(76, 134, 59, 0.4);
  color: var(--green-light);
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.plb-details h3 {
  font-family: var(--font-accent);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.3;
  margin-bottom: 14px;
}

.plb-details p {
  font-family: var(--font-main);
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 26px;
}

.plb-actions {
  display: flex;
  gap: 12px;
}

@media (max-width: 768px) {
  .plb-content {
    grid-template-columns: 1fr;
  }
  .plb-image-wrapper {
    min-height: 240px;
    max-height: 350px;
  }
  .plb-details {
    padding: 24px;
  }
  .plb-nav {
    display: none;
  }
}

/* ===================================================
   HOMEPAGE PORTFOLIO GRID & CARD STYLES
   =================================================== */
.portfolio-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.port-card-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.port-card-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(76, 134, 59, 0.45);
}

.port-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #08160e;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.port-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* Mantém os rostos e elementos superiores perfeitamente visíveis */
  transition: transform 0.5s ease;
}

.port-card-item:hover .port-img-container img {
  transform: scale(1.05);
}

.port-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,15,8,0.1) 0%, rgba(5,15,8,0.85) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.port-card-item:hover .port-img-overlay {
  opacity: 1;
}

.port-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-primary);
  color: #fff;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: var(--transition);
}

.port-view-btn:hover {
  background: var(--orange-primary);
  color: #fff;
  transform: translateY(-2px);
}

.port-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.port-tag {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange-primary);
  margin-bottom: 8px;
  display: inline-block;
}

.port-card-body h4 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 10px;
}

.port-card-body p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.port-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.port-card-footer a {
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
}

/* ===================================================
   DARK SECTIONS & HIGH-CONTRAST GLOBAL READABILITY
   =================================================== */

/* Garantia de alto contraste para todas as secções com fundo escuro */
section[style*="background:var(--dark)"],
section[style*="background:var(--dark-2)"],
section[style*="background:var(--dark-3)"],
.dark-section,
.page-hero,
.legal-page main {
  color: #ffffff !important;
}

section[style*="background:var(--dark)"] .section-title,
section[style*="background:var(--dark-2)"] .section-title,
section[style*="background:var(--dark-3)"] .section-title,
.dark-section .section-title,
.page-hero h1 {
  color: #ffffff !important;
}

section[style*="background:var(--dark)"] .section-subtitle,
section[style*="background:var(--dark-2)"] .section-subtitle,
section[style*="background:var(--dark-3)"] .section-subtitle,
.dark-section .section-subtitle,
.page-hero p {
  color: rgba(255, 255, 255, 0.88) !important;
}

section[style*="background:var(--dark)"] p,
section[style*="background:var(--dark-2)"] p,
section[style*="background:var(--dark-3)"] p {
  color: rgba(255, 255, 255, 0.88);
}

section[style*="background:var(--dark)"] .section-label,
section[style*="background:var(--dark-2)"] .section-label,
section[style*="background:var(--dark-3)"] .section-label,
.page-hero .section-label {
  background: rgba(76, 134, 59, 0.22) !important;
  color: var(--green-light) !important;
  border-color: rgba(76, 134, 59, 0.45) !important;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 140px 0 85px;
  background: var(--dark);
  overflow: hidden;
  color: #ffffff;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 30, 22, 0.85) 0%, rgba(15, 30, 22, 0.98) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}
.page-hero-content h1 {
  font-family: var(--font-accent);
  font-size: clamp(32px, 4.5vw, 54px);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.15;
  margin: 14px 0 16px;
}
.page-hero-content p {
  font-family: var(--font-main);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92) !important;
  line-height: 1.7;
  max-width: 680px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 18px;
}
.breadcrumb a {
  color: var(--green-light);
  font-weight: 600;
}
.breadcrumb a:hover {
  color: #ffffff;
}

/* About Page & Visual Elements */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}
.about-img-box {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4 / 3;
}
.about-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  top: -16px;
  left: 24px;
  background: rgba(15, 30, 22, 0.94);
  border: 1px solid rgba(240, 125, 0, 0.45);
  padding: 8px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  z-index: 3;
}
.about-years-badge {
  position: absolute;
  bottom: -20px;
  right: -15px;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 16px 22px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  z-index: 3;
}
.years-num {
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}
.years-text {
  font-family: var(--font-main);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, rgba(31, 60, 26, 0.75), rgba(15, 30, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.stat-big-num {
  font-family: var(--font-accent);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}
.stat-big-sym {
  font-family: var(--font-accent);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--orange-primary);
}
.stat-big-label {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Values Grid (Missão, Visão, Valores & Diferenciais) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.value-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  border-color: rgba(76, 134, 59, 0.45);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}
.value-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.value-icon.g {
  background: rgba(76, 134, 59, 0.25);
  color: var(--green-light);
  border: 1px solid rgba(76, 134, 59, 0.35);
}
.value-icon.o {
  background: rgba(212, 133, 24, 0.25);
  color: var(--orange-light);
  border: 1px solid rgba(212, 133, 24, 0.35);
}
.value-card h4 {
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
}
.value-card p {
  font-family: var(--font-main);
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(76, 134, 59, 0.45);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}
.team-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #08160e;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}
.team-card:hover .team-img img {
  transform: scale(1.08);
}
.team-info {
  padding: 20px;
  text-align: center;
}
.team-info h4 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 4px;
}
.team-info span {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange-primary) !important;
  display: block;
  margin-bottom: 12px;
}
.team-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.social-btn.sm {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.social-btn.sm:hover {
  background: var(--green-primary);
  color: #ffffff;
}

/* Service Blocks (servicos.html) */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}
.service-block.layout-right {
  grid-template-columns: 1.1fr 1fr;
}
.service-block-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.12);
  aspect-ratio: 4 / 3;
}
.service-block-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-block-number {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 900;
  color: var(--orange-primary);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.service-block-content h2 {
  font-family: var(--font-accent);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.25;
  margin-bottom: 16px;
}
.service-block-content p {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 14px;
}
.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin: 22px 0;
}
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}
.service-feature i {
  color: var(--green-light);
  font-size: 14px;
}
.price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 133, 24, 0.22);
  border: 1px solid rgba(212, 133, 24, 0.45);
  padding: 8px 18px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 800;
  color: var(--orange-light);
  margin: 16px 0 24px;
}

/* Super Express (super-express.html) */
.express-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.express-stat-num {
  font-family: var(--font-accent);
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
}
.express-stat-label {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 6px;
  text-transform: uppercase;
}
.zones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.zone-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: var(--transition);
}
.zone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(76, 134, 59, 0.45);
}
.zone-card h4 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.zone-card p {
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 16px;
}
.zone-price {
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 800;
  color: var(--orange-primary);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
  color: #ffffff;
  font-family: var(--font-accent);
  font-size: 20px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 8px 20px rgba(76, 134, 59, 0.35);
}
.step-card h4 {
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.step-card p {
  font-family: var(--font-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   FAQ ACCORDION STYLES
   ========================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-item:hover, .faq-item.active {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.04);
}
.faq-header {
  padding: 18px 22px;
  font-family: var(--font-accent);
  font-size: 15.5px;
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-header i {
  font-size: 14px;
  color: var(--green-light, #22c55e);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.active .faq-header i {
  transform: rotate(45deg);
  color: var(--orange-primary, #f97316);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-body-inner {
  padding: 0 22px 20px;
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
}
