/* ═══════════════════════════════════════════════════════
   SUPER 500 — Design System
   Estilo: Claro & Fresco com verdes vibrantes
   ═══════════════════════════════════════════════════════ */

/* ── Google Fonts (loaded in HTML) ──
   Outfit: Headings
   Inter: Body
   ───────────────────────────────────── */

/* ── Custom Properties ── */
:root {
  /* Greens */
  --green-950: #052e16;
  --green-900: #0a3d1e;
  --green-800: #017139;
  --green-700: #048a47;
  --green-600: #00cc66;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-300: #86efac;
  --green-200: #bbf7d0;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;

  /* Gold accents */
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;

  /* Neutrals */
  --white: #ffffff;
  --off-white: #fafbfc;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Semantic */
  --text-primary: #1a1a2e;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-accent: #f0fdf4;

  /* Typography */
  --font-heading: 'Outfit', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
  --shadow-green: 0 8px 24px rgba(1, 113, 57, 0.2);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 200ms;
  --duration-base: 300ms;
  --duration-slow: 500ms;

  /* Layout */
  --max-width: 1280px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-out);
}

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

ul, ol {
  list-style: none;
}

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

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

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

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: background var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              backdrop-filter var(--duration-base) var(--ease-out);
}

/* Default state: transparent on home */
.site-header--transparent {
  background: transparent;
}

.site-header--transparent .nav-link {
  color: var(--white);
}

.site-header--transparent .nav-link:hover {
  color: var(--green-300);
}

/* Scrolled or solid state */
.site-header--solid,
.site-header--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.site-header--solid .nav-link,
.site-header--scrolled .nav-link {
  color: var(--green-800);
}

.site-header--solid .nav-link:hover,
.site-header--scrolled .nav-link:hover {
  color: var(--green-600);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.header-logo img {
  height: 56px;
  width: auto;
  transition: transform var(--duration-base) var(--ease-spring);
}

.header-logo:hover img {
  transform: scale(1.05);
}

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--duration-fast) var(--ease-out);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--green-500);
  border-radius: 1px;
  transition: transform var(--duration-base) var(--ease-spring);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link--cta {
  background: var(--green-800);
  color: var(--white) !important;
  border-radius: var(--radius-full);
  padding: 8px 20px;
}

.nav-link--cta:hover {
  background: var(--green-700);
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-green);
}

.nav-link--cta::after {
  display: none;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 1100;
  position: relative;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: all var(--duration-base) var(--ease-out);
}

.site-header--transparent .hamburger span {
  background: var(--white);
}

.site-header--solid .hamburger span,
.site-header--scrolled .hamburger span {
  background: var(--green-800);
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100vh;
  background: var(--white);
  z-index: 1060;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform var(--duration-slow) var(--ease-out);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.is-open {
  transform: translateX(0);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--green-800);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.mobile-nav-link:hover {
  background: var(--green-50);
  color: var(--green-600);
}

.mobile-nav-link svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  flex-shrink: 0;
}

.mobile-nav-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

.mobile-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 24px;
  background: var(--green-800);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
}

.mobile-nav-cta:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}

@media (max-width: 1024px) {
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════
   HERO — HOME
   ══════════════════════════════════════ */
.hero {
  position: relative;
  height: 90vh;
  min-height: 650px;
  max-height: 850px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 4px solid var(--gold);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 32% 20%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(4, 22, 11, 0.7) 0%, rgba(4, 22, 11, 0) 38%),
    linear-gradient(
      to right,
      rgba(6, 32, 15, 0.88) 0%,
      rgba(6, 32, 15, 0.5) 42%,
      rgba(4, 28, 14, 0.24) 100%
    );
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.hero-card {
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 3px solid var(--gold-light);
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  max-width: 680px;
  width: 100%;
  box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 0, 0, 0.3);
  text-align: left;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.hero-title span {
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-pills {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.hero-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--duration-fast) var(--ease-out);
}

.hero-pill:hover {
  background: var(--green-700);
  border-color: var(--green-500);
  transform: translateY(-1px);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.5;
  max-width: 100%;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-card {
    padding: 32px 24px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
  animation: bounce-scroll 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
  display: none;
}

.hero-scroll-indicator svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

/* ══════════════════════════════════════
   HERO — SUB-PAGES
   ══════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: var(--header-height);
  border-bottom: 4px solid var(--gold);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 46, 22, 0.88) 0%,
    rgba(1, 113, 57, 0.75) 50%,
    rgba(0, 204, 102, 0.6) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-out);
}

.page-hero-breadcrumb a:hover {
  color: var(--white);
}

.page-hero-breadcrumb span {
  color: var(--gold-light);
  font-weight: 600;
}

/* ══════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all var(--duration-base) var(--ease-spring);
  letter-spacing: 0.02em;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--white);
  color: var(--green-800);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green-800);
  color: var(--white);
}

.btn-green:hover {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ══════════════════════════════════════
   SECTION — NOSSOS ESPAÇOS (Cards)
   ══════════════════════════════════════ */
.section {
  padding: 60px 0;
}

.section--gray {
  background: var(--bg-secondary);
}

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

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

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-bottom: 12px;
}

.section-title {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Spaces Grid */
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.space-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid rgba(0, 204, 102, 0.08);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.space-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 12px 24px -10px rgba(1, 113, 57, 0.2);
}

.space-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform var(--duration-slow) var(--ease-out), filter var(--duration-base) var(--ease-out);
}

.space-card:hover .space-card-img {
  filter: saturate(1.15) contrast(1.05);
}

.space-card:hover .space-card-img {
  transform: scale(1.08);
}

/* Glassmorphic Space Badge (Logo) */
.space-card-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all var(--duration-base) var(--ease-spring);
}

.space-card-badge svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.space-card-badge svg path {
  stroke-width: 2.2;
}

.space-card:hover .space-card-badge {
  transform: translateY(-2px) scale(1.08);
  background: var(--gold-light);
  color: var(--green-950);
  border-color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(251, 191, 36, 0.35);
}

.space-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 46, 22, 0.9) 0%,
    rgba(1, 113, 57, 0.35) 55%,
    rgba(5, 46, 22, 0.14) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
  transition: background var(--duration-base) var(--ease-out);
}

.space-card:hover .space-card-overlay {
  background: linear-gradient(
    to top,
    rgba(5, 46, 22, 0.96) 0%,
    rgba(1, 113, 57, 0.55) 60%,
    rgba(0, 204, 102, 0.25) 100%
  );
}

.space-card-content {
  display: flex;
  flex-direction: column;
  transform: translateY(22px);
  transition: transform var(--duration-base) var(--ease-spring);
  margin-bottom: 8px;
}

.space-card:hover .space-card-content {
  transform: translateY(0);
}

.space-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}

.space-card-tagline {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--duration-base) var(--ease-out),
              transform var(--duration-base) var(--ease-out);
}

.space-card:hover .space-card-tagline {
  opacity: 1;
  transform: translateY(0);
}

.space-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-400);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--duration-base) var(--ease-spring);
}

.space-card:hover .space-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

.space-card-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  transition: transform var(--duration-fast) var(--ease-out);
}

.space-card:hover .space-card-arrow svg {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .spaces-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .spaces-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .space-card {
    aspect-ratio: 16/10;
  }
}

/* ══════════════════════════════════════
   SECTION — SOBRE / ABOUT
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   SECTION — SOBRE / ABOUT
   ══════════════════════════════════════ */
.about-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.about-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.about-section-bg img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  will-change: transform;
}

.about-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 46, 22, 0.94) 0%,
    rgba(1, 113, 57, 0.88) 100%
  );
  z-index: 1;
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-info-col {
  display: flex;
  flex-direction: column;
}

.about-info-col .section-tag {
  color: var(--green-300);
}

.about-info-col h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.about-info-col p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Lista de Diferenciais */
.about-features-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.about-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
  padding: 4px;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.about-feature-item:hover .about-feature-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--gold-light);
  color: var(--green-900);
}

.about-feature-icon svg {
  width: 14px;
  height: 14px;
}

/* Coluna Visual e Stats de Vidro */
.about-visual-col {
  position: relative;
  width: 100%;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 4/3;
}

.about-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.about-visual-col:hover .about-showcase-img {
  transform: scale(1.04);
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(5, 46, 22, 0.4) 100%
  );
}

/* Grid de Stats de Vidro */
.about-stats-glass {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: calc(100% + 40px);
  z-index: 3;
}

.about-stat-glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  transition: transform var(--duration-base) var(--ease-spring),
              background var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out),
              border-color var(--duration-base) var(--ease-out);
}

.about-stat-glass-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px 0 rgba(0, 0, 0, 0.3),
              0 0 20px rgba(0, 204, 102, 0.2);
}

.about-stat-glass-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold-light);
  margin-bottom: 12px;
  transition: transform var(--duration-base) var(--ease-spring);
}

.about-stat-glass-card:hover .about-stat-glass-icon {
  transform: scale(1.1) rotate(-8deg);
  background: var(--gold-light);
  color: var(--green-900);
}

.about-stat-glass-icon svg {
  width: 22px;
  height: 22px;
}

.about-stat-glass-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 2px;
  letter-spacing: -0.01em;
}

.about-stat-glass-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .about-info-col {
    align-items: center;
  }

  .about-features-list {
    align-items: flex-start;
    text-align: left;
    max-width: 500px;
  }

  .about-stats-glass {
    position: relative;
    bottom: 0;
    right: 0;
    width: 100%;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 80px 0;
  }

  .about-stats-glass {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-stat-glass-card {
    padding: 16px;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 16px;
  }

  .about-stat-glass-icon {
    margin-bottom: 0;
  }

  .about-stat-glass-number {
    font-size: 1.8rem;
  }
}

/* ══════════════════════════════════════
   SECTOR STRIP — Atalhos rápidos
   ══════════════════════════════════════ */
.sector-strip {
  background: linear-gradient(to right, #114b0a 0%, #1a6d10 30%, #2ba01b 50%, #1a6d10 70%, #114b0a 100%);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}

.sector-strip-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sector-strip-track::-webkit-scrollbar {
  display: none;
}

.sector-strip-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--duration-fast) var(--ease-out);
}

.sector-strip-item svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  stroke: currentColor;
}

.sector-strip-item:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .sector-strip-track {
    justify-content: flex-start;
    padding: 0 24px;
  }
}

/* ══════════════════════════════════════
   GALLERY — MASONRY
   ══════════════════════════════════════ */
.gallery-section {
  padding: 80px 0 100px;
}

.gallery-section .section-header {
  margin-bottom: 48px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 113, 57, 0);
  transition: background var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.gallery-item:hover::after {
  background: rgba(1, 113, 57, 0.15);
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--duration-base) var(--ease-spring);
  pointer-events: none;
}

.gallery-item:hover .gallery-item-zoom {
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item-zoom svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-800);
}

@media (max-width: 768px) {
  .gallery-masonry {
    columns: 2;
    column-gap: 12px;
  }

  .gallery-item {
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* ══════════════════════════════════════
   LIGHTBOX
   ══════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out);
}

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

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  transform: scale(0.9);
  transition: transform var(--duration-slow) var(--ease-spring);
}

.lightbox.is-open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: all var(--duration-fast) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--duration-fast) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================
   DELUXE SEPARATED SECTIONS
   ========================================== */

/* --- Section 1: Catalog Deluxe --- */
.catalog-section {
  padding: 56px 0;
  background: #2b2b2b;
  position: relative;
  overflow: visible;
}

.catalog-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,204,102,0.25) 0%, rgba(0,204,102,0) 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.catalog-strip {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
  max-width: 820px;
  margin: 0 auto;
}

.catalog-badge {
  display: inline-block;
  background: rgba(10, 204, 102, 0.15);
  color: rgb(0, 204, 102);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  margin-bottom: 8px;
}

.catalog-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  line-height: 0;
}

.catalog-strip-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-950) 100%);
  color: var(--gold-light);
}

.catalog-strip-icon svg {
  width: 24px;
  height: 24px;
}

.catalog-strip-text {
  flex: 1;
  min-width: 0;
}

.catalog-strip-text h2 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0 0 4px;
}

.catalog-strip-text p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
  margin: 0;
}

.btn-gold-deluxe {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--green-950) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: var(--radius-full);
  padding: 11px 22px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
  display: inline-flex;
  align-items: center;
  transition: all var(--duration-base) var(--ease-spring);
}

.btn-gold-deluxe:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

@media (max-width: 640px) {
  .catalog-strip {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    border-radius: var(--radius-xl);
    padding: 24px;
  }

  .catalog-strip-text {
    flex: 1 1 100%;
    text-align: center;
  }

  .btn-gold-deluxe {
    flex: 1 1 100%;
    justify-content: center;
  }
}


/* --- Section 2: Newsletter Split --- */
.newsletter-section {
  padding: 70px 0 90px;
  background: linear-gradient(180deg, #f0fdf4 0%, #e3faea 100%);
}

.newsletter-split-card {
  background: var(--white);
  border: 1px solid var(--green-100);
  border-top: 4px solid var(--green-500);
  border-radius: var(--radius-2xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.newsletter-image-side {
  position: relative;
  height: 100%;
  min-height: 340px;
}

.newsletter-side-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.newsletter-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 46, 22, 0.55) 0%, rgba(5, 46, 22, 0.05) 45%, rgba(9, 46, 14, 0.15) 100%);
}

.newsletter-photo-tag {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: var(--radius-full);
}

.newsletter-form-side {
  padding: 60px 80px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.newsletter-heading-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.newsletter-mail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--radius-md);
}

.newsletter-mail-icon svg {
  width: 20px;
  height: 20px;
}

.newsletter-badge-glow {
  background: rgba(10, 204, 102, 0.08);
  color: var(--green-600);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 16px;
  border: 1px solid rgba(10, 204, 102, 0.12);
  align-self: flex-start;
}

.newsletter-form-side h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 0;
}

.newsletter-form-side p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 24px;
}

.newsletter-split-form {
  display: flex;
  gap: 10px;
}

.input-glow-wrapper {
  flex-grow: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.input-glow-wrapper:focus-within {
  border-color: var(--green-500);
  box-shadow: 0 0 10px rgba(10, 204, 102, 0.15);
}

.input-split-premium {
  width: 100%;
  border: none;
  background: transparent;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--green-950);
}

.input-split-premium:focus {
  outline: none;
}

.btn-primary-split {
  background: var(--green-500);
  color: var(--white) !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  padding: 0 28px;
  transition: all var(--duration-base) var(--ease-spring);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(10, 204, 102, 0.2);
}

.btn-primary-split:hover {
  transform: translateY(-1px);
  background: var(--green-600);
  box-shadow: 0 6px 16px rgba(10, 204, 102, 0.35);
}

.lead-status-msg {
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.lead-status-msg.success {
  color: #16a34a;
}

.lead-status-msg.error {
  color: #dc2626;
}

@media (max-width: 992px) {
  .catalog-deluxe-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 30px;
    text-align: center;
  }
  .catalog-graphic-side {
    order: 2;
  }
  .btn-gold-deluxe {
    align-self: center;
    width: 100%;
    justify-content: center;
  }
  
  .newsletter-split-card {
    grid-template-columns: 1fr;
  }
  .newsletter-image-side {
    min-height: 200px;
  }
  .newsletter-form-side {
    padding: 40px 30px;
    text-align: center;
  }
  .newsletter-badge-glow {
    align-self: center;
  }
  .newsletter-split-form {
    flex-direction: column;
  }
  .btn-primary-split {
    width: 100%;
    padding: 13px;
  }
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 45px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 204, 102, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-col a:hover {
  color: var(--green-400);
}

.footer-logo-img {
  height: 64px;
  width: auto;
  max-width: 220px;
  margin-bottom: 10px;
}

.footer-brand-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--green-400);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all var(--duration-fast) var(--ease-out);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 204, 102, 0.3);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-hours-item {
  margin-bottom: 12px;
}

.footer-hours-item strong {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2px;
}

.footer-hours-item span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom {
  margin-top: 35px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-credit-logo {
  height: 20px;
  width: auto;
  opacity: 0.4;
  filter: brightness(0) invert(1);
  transition: opacity var(--duration-fast) var(--ease-out);
}

.footer-credit:hover .footer-credit-logo {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer {
    padding: 60px 0 0;
  }
}

/* ══════════════════════════════════════
   FLOATING WHATSAPP
   ══════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--duration-base) var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: whatsapp-pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

@keyframes bounce-scroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1); opacity: 0; }
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }
.reveal-delay-5 { transition-delay: 500ms; }
.reveal-delay-6 { transition-delay: 600ms; }

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-children .reveal:nth-child(2) { transition-delay: 80ms; }
.stagger-children .reveal:nth-child(3) { transition-delay: 160ms; }
.stagger-children .reveal:nth-child(4) { transition-delay: 240ms; }
.stagger-children .reveal:nth-child(5) { transition-delay: 320ms; }
.stagger-children .reveal:nth-child(6) { transition-delay: 400ms; }

/* ══════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ══════════════════════════════════════
   SECTORS — GENERAL STYLES
   ══════════════════════════════════════ */
.sector-intro {
  padding: 80px 0 60px;
}

.sector-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sector-intro-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--green-900);
}

.sector-intro-text p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sector-intro-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sector-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

.sector-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--green-50);
  color: var(--green-800);
  border-radius: 50%;
  padding: 5px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sector-benefit-icon svg {
  width: 14px;
  height: 14px;
}

.sector-intro-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16/10;
  border: 1px solid var(--gray-200);
}

.sector-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.sector-intro-image:hover img {
  transform: scale(1.05);
}

/* Sector Features / Catalog Grid */
.sector-features {
  padding: 60px 0 80px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.sector-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.sector-features-grid--3cols {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1020px;
  margin-left: auto;
  margin-right: auto;
}

.sector-feature-card {
  height: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration-base) var(--ease-spring);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sector-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 10px 20px -8px rgba(1, 113, 57, 0.12);
  border-color: var(--green-200);
}

.sector-feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--green-50);
  color: var(--green-800);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  transition: all var(--duration-base) var(--ease-spring);
}

.sector-feature-card:hover .sector-feature-icon-wrapper {
  background: var(--green-800);
  color: var(--white);
  transform: scale(1.08) rotate(-4deg);
}

.sector-feature-icon-wrapper svg {
  width: 28px;
  height: 28px;
}

.sector-feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.sector-feature-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Sector CTA Section */
.sector-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-950) 0%, var(--green-900) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sector-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(0, 204, 102, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.sector-cta-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.sector-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 16px;
}

.sector-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 32px;
}

/* Adaptations to existing elements */
.gallery-section.section {
  padding: 80px 0;
}

/* Responsive Sector */
@media (max-width: 1024px) {
  .sector-features-grid,
  .sector-features-grid--3cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .sector-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sector-intro-image {
    order: -1;
  }
}

@media (max-width: 576px) {
  .sector-features-grid,
  .sector-features-grid--3cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .sector-feature-card {
    padding: 24px 20px;
  }
}


/* ══════════════════════════════════════
   RESPONSIVE — GLOBAL
   ══════════════════════════════════════ */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .hero {
    height: 75vh;
    min-height: 480px;
    z-index: 1;
  }

  .page-hero {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .section {
    padding: 40px 0;
  }

  .hero {
    height: 70vh;
    min-height: 400px;
  }

  .page-hero {
    height: 220px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* --- Faixas divisorias amarelas entre as secoes da Home --- */
#espacos,
#sobre,
.catalog-section,
.newsletter-section {
  border-bottom: 4px solid var(--gold);
}
