/* ============================================================
   NUTRINZOO — style.css
   Site institucional B2B Premium | Saúde e Nutrição Animal
   ============================================================ */

/* === GOOGLE FONTS IMPORT === */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700&family=Inter:wght@400;500;600&display=swap');


/* === DESIGN TOKENS (CSS VARIABLES) === */
:root {
  /* Brand Colors */
  --purple:        #5A2783;
  --purple-dark:   #34134F;
  --purple-mid:    #7B43A3;
  --teal:          #58C4BD;
  --teal-dark:     #2E9D98;
  --teal-light:    #DDF7F5;
  --white:         #FFFFFF;
  --off-white:     #F7F7FA;
  --gray-light:    #EEF0F4;
  --gray-mid:      #C9CDD6;
  --gray-dark:     #20232A;
  --gray-text:     #6E7280;

  /* Gradients */
  --grad-hero:    linear-gradient(135deg, #34134F 0%, #5A2783 48%, #58C4BD 100%);
  --grad-section: linear-gradient(135deg, #FFFFFF 0%, #F7F7FA 55%, #DDF7F5 100%);
  --grad-cta:     linear-gradient(135deg, #5A2783 0%, #58C4BD 100%);
  --grad-card:    linear-gradient(135deg, #F7F7FA 0%, #DDF7F5 100%);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(90, 39, 131, 0.08);
  --shadow-md:  0 4px 20px rgba(90, 39, 131, 0.12);
  --shadow-lg:  0 8px 40px rgba(90, 39, 131, 0.18);

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Motion */
  --transition: 250ms ease;

  /* Layout */
  --container: 1200px;
}


/* === RESET & BASE === */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  cursor: pointer;
  color: inherit;
  transition: color var(--transition);
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

ul,
ol {
  list-style: none;
}

/* Remove default outline, add accessible focus */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--gray-dark);
}

h1 {
  font-size: clamp(36px, 5vw, 64px);
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
}

h3 {
  font-size: 20px;
  font-weight: 600;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

p {
  line-height: 1.6;
}

small {
  font-size: 13px;
  font-weight: 500;
}


/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

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

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}


/* === GRID UTILITIES === */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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


/* === CARD BASE === */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}


/* === BADGES / TAGS === */
.badge {
  display: inline-flex;
  align-items: center;
  background-color: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

.badge-purple {
  background-color: rgba(90, 39, 131, 0.1);
  color: var(--purple);
}

.badge-dark {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}


/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--purple);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: var(--purple-dark);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  background-color: var(--purple);
  color: var(--white);
}

.btn-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--teal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-teal:hover {
  background-color: var(--teal-dark);
  box-shadow: var(--shadow-md);
  color: var(--white);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50px;
  padding: 12px 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-white:hover {
  background-color: var(--white);
  color: var(--purple);
}

/* Button size modifier */
.btn-lg {
  padding: 18px 44px;
  font-size: 17px;
}


/* === ANIMATION ON SCROLL === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-dark);
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-links a:hover {
  color: var(--purple);
}

.nav-links a[aria-current="page"] {
  color: var(--purple);
  border-bottom: 2px solid var(--teal);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--gray-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--purple-dark);
  z-index: 999;
  flex-direction: column;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform 300ms ease;
}

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

.mobile-nav .nav-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.mobile-nav .nav-links a {
  color: var(--white);
  font-size: 24px;
  font-weight: 600;
  padding: 8px 0;
}

.mobile-nav .nav-links a:hover {
  color: var(--teal);
}

.mobile-nav .nav-links a[aria-current="page"] {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
}

.mobile-nav-cta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  font-size: 20px;
  transition: background var(--transition);
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.2);
}


/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: var(--grad-hero);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-layout, .hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 56px;
  width: 100%;
}

.hero-content {
  flex: 1;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(88, 196, 189, 0.18);
  border: 1px solid rgba(88, 196, 189, 0.4);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: var(--font-heading);
}

.hero-title span {
  color: var(--teal);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Species chips below CTA */
.hero-species {
  display: flex;
  gap: 8px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-species-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* Hero portfolio panel (right column) */
.hero-panel {
  flex-shrink: 0;
  width: 400px;
  position: relative;
  z-index: 2;
}

.hero-panel-inner {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-panel-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(88, 196, 189, 0.28) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-panel-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 18px;
}

.hero-panel-brand {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  transition: background var(--transition);
}

.hero-panel-brand--icc {
  border-color: rgba(88, 196, 189, 0.3);
  background: rgba(88, 196, 189, 0.07);
}

.hero-panel-brand-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  font-family: var(--font-heading);
}

.hero-panel-brand-count {
  font-size: 12px;
  font-weight: 500;
  color: var(--teal);
  background: rgba(88, 196, 189, 0.15);
  padding: 3px 10px;
  border-radius: 50px;
}

.hero-panel-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.hero-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.hero-panel-stat {
  text-align: center;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-sm);
}

.hero-panel-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-panel-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-panel-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--teal);
  font-weight: 500;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Hero stats bar (species breakdown) */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  flex-wrap: wrap;
}

.hero-stat, .hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat strong, .hero-stat-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  line-height: 1;
}

.hero-stat span, .hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
  font-weight: 400;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
  align-self: stretch;
}


/* ============================================================
   SECTION: O QUE A NUTRINZOO FAZ (#sobre)
   ============================================================ */
#sobre {
  background: var(--off-white);
}

.sobre-intro {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}

.sobre-intro p {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-top: 16px;
}

.sobre-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.sobre-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.sobre-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.sobre-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 24px;
  flex-shrink: 0;
}

.sobre-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.sobre-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}


/* ============================================================
   SECTION: PROBLEMAS (#problemas)
   ============================================================ */
#problemas {
  background: var(--grad-section);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--gray-light);
  transition: border-left-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.problem-card:hover {
  border-left-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.problem-card-icon {
  font-size: 28px;
  margin-bottom: 16px;
  line-height: 1;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}


/* ============================================================
   SECTION: SOLUÇÕES (#solucoes)
   ============================================================ */
#solucoes {
  background: var(--white);
}

.solucoes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  border-top: 3px solid var(--teal);
  transition: background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.solution-card:hover {
  background: var(--grad-card);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.solution-icon {
  width: 56px;
  height: 56px;
  background: var(--grad-cta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  flex-shrink: 0;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}


/* ============================================================
   SECTION: MARCAS (#marcas)
   ============================================================ */
#marcas {
  background: var(--purple-dark);
}

#marcas .section-title {
  color: var(--white);
}

#marcas .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.marca-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.marca-card:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.marca-logo-placeholder {
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  font-weight: 500;
}

.marca-logo-placeholder img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.marca-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.marca-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 24px;
}

.marca-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.marca-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(88, 196, 189, 0.15);
  color: var(--teal);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.marca-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: gap var(--transition), opacity var(--transition);
}

.marca-link:hover {
  opacity: 0.8;
  gap: 12px;
}


/* ============================================================
   SECTION: PRODUTOS (#produtos)
   ============================================================ */
#produtos {
  background: var(--off-white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--gray-mid);
  background: var(--white);
  color: var(--gray-text);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.filter-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.filter-btn.active {
  background: var(--purple);
  border-color: var(--purple);
  color: var(--white);
}

.filter-btn[data-filter="natural-feed-br"].active {
  background: var(--purple);
  border-color: var(--purple);
}

.filter-btn[data-filter="icc"].active {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.produto-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border-top: 3px solid var(--teal);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.produto-card.hidden {
  display: none;
}

.produto-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.produto-brand {
  display: inline-flex;
  align-items: center;
  background: rgba(90, 39, 131, 0.1);
  color: var(--purple);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.produto-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark);
  margin: 12px 0 8px;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.produto-category {
  display: inline-flex;
  align-items: center;
  background: var(--teal-light);
  color: var(--teal-dark);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.produto-desc {
  font-size: 14px;
  color: var(--gray-text);
  margin: 12px 0 20px;
  line-height: 1.5;
}

.produto-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}

.produto-card-link {
  color: var(--purple);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.produto-card-link:hover {
  color: var(--purple-dark);
}


/* ============================================================
   SECTION: QUEM É GISELE (#gisele)
   ============================================================ */
#gisele {
  background: var(--white);
}

.gisele-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: center;
}

.gisele-photo {
  aspect-ratio: 3 / 4;
  background: var(--grad-card);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 13px;
  font-weight: 500;
  min-height: 480px;
  border: 2px dashed var(--gray-light);
  overflow: hidden;
  position: relative;
}

.gisele-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.gisele-content h2 {
  margin-bottom: 24px;
}

.gisele-content p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.gisele-highlights {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.gisele-highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 18px;
  flex-shrink: 0;
}

.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.highlight-text strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
}

.highlight-text span {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

.gisele-credentials {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.credential-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.credential-number {
  font-size: 28px;
  font-weight: 700;
  color: var(--purple);
  font-family: var(--font-heading);
  line-height: 1;
}

.credential-label {
  font-size: 13px;
  color: var(--gray-text);
  font-weight: 500;
}


/* ============================================================
   SECTION: COMO FUNCIONA / ATENDIMENTO (#atendimento)
   ============================================================ */
#atendimento {
  background: var(--off-white);
}

.steps-list {
  display: flex;
  gap: 0;
  position: relative;
  align-items: flex-start;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: -1px;
  width: calc(100% - 48px);
  right: calc(-50% + 24px);
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}

.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--purple);
  opacity: 0.2;
  line-height: 1;
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
  display: block;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  font-size: 22px;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}

.step:hover .step-icon {
  background: var(--teal-light);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.step-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-dark);
  margin: 8px 0 4px;
}

.step-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
}

/* Steps connector — hidden on last step (handled via :not(:last-child)::after above) */
.step-connector {
  position: absolute;
  top: 28px;
  right: -1px;
  width: 100%;
  height: 2px;
  background: var(--gray-light);
}

.step:last-child .step-connector {
  display: none;
}


/* ============================================================
   SECTION: CTA FINAL (#contato)
   ============================================================ */
#contato {
  background: var(--grad-hero);
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

#contato .hero-decoration {
  pointer-events: none;
  opacity: 0.1;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.cta-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 16px;
  line-height: 1.15;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--purple-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  padding: 80px 0 48px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 2;
}

.footer-col ul a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 2;
  transition: color var(--transition);
}

.footer-col ul a:hover {
  color: var(--white);
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 48px 0 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  padding-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 16px;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.social-link:hover {
  background: var(--teal);
  color: var(--white);
}

/* Footer contact column — icons before links */
.footer-col ul li a[href^="https://wa.me"]:not(.social-link),
.footer-col ul li a[href^="https://instagram.com"]:not(.social-link),
.footer-col ul li a[href^="mailto:"]:not(.social-link) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a[href^="https://wa.me"]:not(.social-link)::before,
.footer-col ul li a[href^="https://instagram.com"]:not(.social-link)::before,
.footer-col ul li a[href^="mailto:"]:not(.social-link)::before {
  content: '';
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.65;
}

.footer-col ul li a[href^="https://wa.me"]:not(.social-link)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z'/%3E%3C/svg%3E");
}

.footer-col ul li a[href^="https://instagram.com"]:not(.social-link)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Crect x='2' y='2' width='20' height='20' rx='5' ry='5'/%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Ccircle cx='17.5' cy='6.5' r='1' fill='%23ffffff' stroke='none'/%3E%3C/svg%3E");
}

.footer-col ul li a[href^="mailto:"]:not(.social-link)::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2'%3E%3Cpath d='M4 4h16c1.1 0 2 .9 2 2v12c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2z'/%3E%3Cpolyline points='22 6 12 13 2 6'/%3E%3C/svg%3E");
}


/* ============================================================
   PÁGINAS DE PRODUTO
   ============================================================ */

/* Breadcrumb */
.breadcrumb-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
}

.breadcrumb {
  font-size: 13px;
  color: var(--gray-text);
  padding: 14px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
}

.breadcrumb li + li::before {
  content: '›';
  color: var(--gray-mid);
  font-size: 14px;
}

.breadcrumb a {
  color: var(--purple);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--purple-dark);
  text-decoration: underline;
}

.breadcrumb-separator {
  color: var(--gray-mid);
  font-size: 12px;
}

/* Product hero */
.produto-hero-section {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-light);
  padding: 64px 0 56px;
}

.produto-hero-inner {
  max-width: 760px;
}

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

.produto-hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  color: var(--gray-dark);
  font-family: var(--font-heading);
  line-height: 1.1;
  margin-bottom: 20px;
}

.produto-hero-lead,
.produto-hero-desc {
  font-size: 18px;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 680px;
}

/* Product info grid */
.produto-info-grid {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 48px;
  align-items: start;
}

.produto-info-block {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--gray-light);
}

.produto-info-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.produto-info-block h2,
.produto-info-block h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 16px;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.produto-info-block p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 16px;
}

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

.produto-info-block ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.produto-info-block ul li {
  font-size: 16px;
  color: var(--gray-dark);
  line-height: 1.6;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.produto-info-block ul li::before {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--teal);
  border-radius: 50%;
  margin-top: 8px;
}

/* Product sidebar */
.produto-sidebar-card {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 32px;
}

.produto-sidebar-card h3,
.produto-sidebar-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.produto-sidebar-card p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 20px;
}

.produto-sidebar-divider {
  border: none;
  border-top: 1px solid var(--gray-light);
  margin: 24px 0;
}

.produto-sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.produto-sidebar-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-dark);
}

.produto-sidebar-meta-item svg,
.produto-sidebar-meta-item .meta-icon {
  color: var(--teal-dark);
  flex-shrink: 0;
}

.produto-sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Product CTA banner */
.produto-cta-banner {
  background: var(--grad-hero);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.produto-cta-banner .cta-title {
  font-size: clamp(24px, 3.5vw, 40px);
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

.text-white  { color: var(--white); }
.text-purple { color: var(--purple); }
.text-teal   { color: var(--teal); }
.text-gray   { color: var(--gray-text); }

.bg-white      { background-color: var(--white); }
.bg-off-white  { background-color: var(--off-white); }
.bg-purple     { background-color: var(--purple); }
.bg-purple-dark { background-color: var(--purple-dark); }
.bg-teal-light { background-color: var(--teal-light); }

.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.mb-8    { margin-bottom: 8px; }
.mb-16   { margin-bottom: 16px; }
.mb-24   { margin-bottom: 24px; }
.mb-32   { margin-bottom: 32px; }
.mb-48   { margin-bottom: 48px; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  /* Grid adjustments */
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .produtos-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gisele-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .gisele-photo {
    min-height: 360px;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Hero panel hidden on tablet */
  .hero-panel {
    display: none;
  }

  .hero-layout, .hero-inner {
    justify-content: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  /* Marcas */
  .marcas-grid {
    grid-template-columns: 1fr;
  }

  /* Problems */
  .problems-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Solutions */
  .solucoes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sobre */
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  /* Produto info grid */
  .produto-info-grid {
    grid-template-columns: 1fr;
  }

  .produto-sidebar-card {
    position: static;
  }

  /* Steps */
  .steps-list {
    gap: 24px;
    flex-direction: column;
  }

  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    grid-template-rows: auto auto auto;
    gap: 0 16px;
    text-align: left;
    padding: 0;
    align-items: start;
  }

  .step::after {
    display: none !important;
  }

  .step-icon {
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 0;
    min-width: unset;
    align-self: start;
  }

  .step-number {
    grid-column: 2;
    grid-row: 1;
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 2px;
  }

  .step-title {
    grid-column: 2;
    grid-row: 2;
    margin: 0 0 4px;
  }

  .step-desc {
    grid-column: 2;
    grid-row: 3;
  }
}


/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Container */
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Sections */
  .section {
    padding: 60px 0;
  }

  .section-sm {
    padding: 40px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  /* Grids — single column */
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 60px 0 40px;
  }

  /* Steps — handled in 1024px block above */

  /* Hero */
  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-panel {
    display: none;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary,
  .hero-actions .btn-white,
  .hero-actions .btn-teal {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    gap: 28px;
  }

  /* Navigation — hide on mobile */
  .header-nav,
  .site-header nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  /* CTA section */
  #contato {
    padding: 80px 0;
  }

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

  .cta-actions .btn-primary,
  .cta-actions .btn-white,
  .cta-actions .btn-teal {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Footer bottom */
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  /* Gisele section */
  .gisele-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .gisele-photo {
    order: 1;
    min-height: 280px;
  }

  .gisele-content {
    order: 2;
  }

  .gisele-credentials {
    gap: 16px;
  }

  /* Marcas */
  .marca-card {
    padding: 32px 24px;
  }

  /* Problems */
  .problems-grid {
    grid-template-columns: 1fr;
  }

  /* Solutions */
  .solucoes-grid {
    grid-template-columns: 1fr;
  }

  /* Sobre */
  .sobre-grid {
    grid-template-columns: 1fr;
  }

  /* Produto info grid */
  .produto-info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .produto-sidebar-card {
    position: static;
  }

  .produto-hero-section {
    padding: 40px 0 32px;
  }

  .produto-hero-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .produto-hero-lead,
  .produto-hero-desc {
    font-size: 16px;
  }

  .produto-info-block {
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .produto-sidebar-card {
    padding: 24px;
  }

  .produto-cta-banner {
    padding: 60px 0;
  }

  /* Filter bar scroll */
  .filter-bar {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Typography scale down */
  .section-subtitle {
    font-size: 16px;
  }

  .cta-text {
    font-size: 16px;
  }
}


/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(26px, 9vw, 40px);
  }

  .btn-lg {
    padding: 16px 32px;
    font-size: 15px;
  }

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

  .marca-card {
    padding: 24px 20px;
  }

  .footer-grid {
    gap: 24px;
  }
}


/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .hero-decoration,
  .hamburger,
  .mobile-nav {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .container {
    max-width: 100%;
  }
}
