/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ===========================
     PALETA DE CORES - ST MOTORS
     =========================== */
  
  /* Identidade da Marca */
  --color-primary: #6EAF49;
  --color-primary-hover: #5A9339;
  --color-primary-dark: #4A7D31;
  --color-primary-light: #8BC96A;
  
  /* Backgrounds */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #FAFAF8;
  --color-bg-dark: #0F0F0F;
  --color-bg-dark-secondary: #1A1A1A;
  
  /* Textos */
  --color-text-primary: #1A1A1A;
  --color-text-secondary: #6B6B6B;
  --color-text-tertiary: #999999;
  --color-text-light: #FAFAF8;
  
  /* Bordas */
  --color-border-light: #E5E5E5;
  --color-border-medium: #CCCCCC;
  --color-border-dark: #2A2A2A;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Layout */
  --header-height: 72px;
  --header-height-mobile: 64px;
  --max-width-container: 1280px;
  --max-width-search: 680px;
  --transition-speed: 0.3s;
  --transition-ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index Scale */
  --z-cookie-consent: 10001;
  --z-header: 1000;
  --z-overlay: 998;
  --z-mobile-menu: 999;
  --z-location-badge: 100;
  --z-skip-link: 10000;
}

/* ===========================
   HTML & BODY
   =========================== */
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
}

/* ================================
   UTILITY CLASSES
   ================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-primary);
  color: var(--color-bg-primary);
  padding: var(--spacing-sm) var(--spacing-md);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  z-index: var(--z-skip-link);
  transition: top var(--transition-speed) var(--transition-ease);
}

.skip-link:focus {
  top: 0;
}

/* ================================
   COOKIE CONSENT BANNER (LGPD)
   ================================ */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 15, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: var(--z-cookie-consent);
  padding: var(--spacing-md);
  animation: slideUp 0.4s var(--transition-ease);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent__container {
  max-width: var(--max-width-container);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.cookie-consent__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.cookie-consent__title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin: 0;
}

.cookie-consent__description {
  font-size: var(--font-size-sm);
  color: rgba(250, 250, 248, 0.85);
  line-height: 1.6;
  margin: 0;
}

.cookie-consent__link {
  color: var(--color-primary-light);
  text-decoration: underline;
  transition: color var(--transition-speed);
}

.cookie-consent__link:hover {
  color: var(--color-primary);
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}

.cookie-consent__button {
  padding: var(--spacing-sm) var(--spacing-lg);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-ease);
  min-height: 44px;
  min-width: 44px;
}

.cookie-consent__button--primary {
  background: var(--color-primary);
  color: #FFFFFF;
}

.cookie-consent__button--primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(110, 175, 73, 0.3);
}

.cookie-consent__button--secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-consent__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-consent__button:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* ================================
   HEADER
   ================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height-mobile);
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 8px 32px rgba(15, 15, 15, 0.12);
  z-index: var(--z-header);
  transition: all var(--transition-speed) var(--transition-ease);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(15, 15, 15, 0.08);
}

.header__container {
  max-width: var(--max-width-container);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition-speed) var(--transition-ease);
  min-height: 44px;
  min-width: 44px;
}

.header__logo-link:hover,
.header__logo-link:focus {
  opacity: 0.85;
}

.header__logo-img {
  height: 42px;
  width: auto;
  display: block;
}

/* Navigation Desktop */
.header__nav {
  display: none;
}

.nav__list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: var(--spacing-xs);
}

.nav__link {
  position: relative;
  display: block;
  padding: var(--spacing-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-ease);
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transform: translateX(-50%);
  transition: width var(--transition-speed) var(--transition-ease);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 80%;
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-primary);
}

/* Mobile Menu Toggle */
.header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: calc(var(--z-mobile-menu) + 1);
  transition: transform var(--transition-speed) var(--transition-ease);
}

.header__menu-toggle:hover {
  transform: scale(1.05);
}

.header__menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-speed) var(--transition-ease);
  transform-origin: center;
}

.header__menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.header__menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation */
.header__nav-mobile {
  position: fixed;
  top: var(--header-height-mobile);
  right: -100%;
  width: 280px;
  height: calc(100vh - var(--header-height-mobile));
  background: var(--color-bg-primary);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: var(--z-mobile-menu);
  transition: right var(--transition-speed) var(--transition-ease);
}

.header__nav-mobile.active {
  right: 0;
}

.nav__list-mobile {
  list-style: none;
  padding: var(--spacing-md);
}

.nav__item-mobile {
  border-bottom: 1px solid var(--color-border-light);
}

.nav__item-mobile:last-child {
  border-bottom: none;
}

.nav__link-mobile {
  display: block;
  padding: var(--spacing-md) var(--spacing-sm);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-speed) var(--transition-ease);
  min-height: 44px;
}

.nav__link-mobile:hover,
.nav__link-mobile--active {
  color: var(--color-primary);
  padding-left: var(--spacing-md);
}

/* Overlay */
.header__overlay {
  position: fixed;
  top: var(--header-height-mobile);
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-height-mobile));
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: var(--z-overlay);
  transition: all var(--transition-speed) var(--transition-ease);
}

.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height-mobile);
  overflow: hidden;
}

/* Hero Background */
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.hero__background-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 20, 15, 0.06) 0%,
    rgba(15, 20, 15, 0.12) 45%,
    rgba(15, 20, 15, 0.18) 100%
  );
  z-index: 3;
}

/* ================================
   LOCATION BADGE (Glass Effect)
   ================================ */
.hero__location-badge {
  position: absolute;
  top: calc(var(--header-height-mobile) + var(--spacing-sm));
  right: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-sm);
  
  /* Glass Morphism Effect */
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  
  text-decoration: none;
  z-index: var(--z-location-badge);
  max-width: 180px;
  transition: all var(--transition-speed) var(--transition-ease);
  min-height: 44px;
}

.hero__location-badge:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.hero__location-badge:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.hero__location-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  color: rgba(255, 255, 255, 0.95);
  stroke-width: 2.5;
  margin-top: 2px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.hero__location-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--font-size-xs);
  line-height: 1.3;
}

.hero__location-city {
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.98);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero__location-cta {
  color: rgba(255, 255, 255, 0.95);
  font-weight: var(--font-weight-medium);
  font-size: 0.6875rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* ================================
   HERO CONTENT
   ================================ */
.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width-search);
  width: 100%;
  padding: 0 var(--spacing-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

/* ================================
   EYEBROW / SLOGAN
   ================================ */
.hero__eyebrow {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.98);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: right;
  text-shadow: 
    0 2px 4px rgba(0, 0, 0, 0.5),
    0 4px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInDownPulse 20s ease-in-out infinite; 
}

@keyframes fadeInDownPulse {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.35),
      0 0 7px rgba(0, 0, 0, 0.22);
  }

  20% {
    opacity: 1;
    transform: translateY(0);
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.35),
      0 0 7px rgba(0, 0, 0, 0.22);
  }

  60% {
    text-shadow:
      0 3px 4px rgba(0, 0, 0, 0.48),
      0 0 12px rgba(0, 0, 0, 0.34);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    text-shadow:
      0 1px 2px rgba(0, 0, 0, 0.35),
      0 0 7px rgba(0, 0, 0, 0.22);
  }
}

/* ================================
   HERO SEARCH (Minimalista)
   ================================ */
.hero__search {
  width: 100%;
}

.hero__search-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  overflow: hidden;
  transition: all var(--transition-speed) var(--transition-ease);
  min-height: 56px;
}

.hero__search-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 
    0 12px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.hero__search-wrapper:focus-within {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 12px 48px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(255, 255, 255, 0.2) inset;
  transform: translateY(-2px);
}

.hero__search-input {
  flex: 1;
  padding: var(--spacing-sm) var(--spacing-md);
  font-family: var(--font-family);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-normal);
  color: rgba(255, 255, 255, 0.98);
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
}

.hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
  opacity: 1;
  font-size: var(--font-size-sm);
}

.hero__search-input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.hero__search-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: all var(--transition-speed) var(--transition-ease);
  border-radius: 0 50px 50px 0;
  min-width: 56px;
  min-height: 56px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero__search-button:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.02);
}

.hero__search-button:active {
  transform: scale(0.98);
}

.hero__search-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
}

.hero__search-icon {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

/* Autocomplete */
.hero__search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-light);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(15, 15, 15, 0.18);
  overflow: hidden;
  max-height: 320px;
  overflow-y: auto;
  z-index: 100;
}

.hero__search-suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-md);
  cursor: pointer;
  transition: background var(--transition-speed) var(--transition-ease);
  border-bottom: 1px solid var(--color-border-light);
  min-height: 44px;
}

.hero__search-suggestion-item:last-child {
  border-bottom: none;
}

.hero__search-suggestion-item:hover,
.hero__search-suggestion-item.active {
  background: rgba(110, 175, 73, 0.08);
}

.hero__search-suggestion-item:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

.suggestion-name {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-primary);
}

.suggestion-year {
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
  font-weight: var(--font-weight-normal);
}

.hero__search-suggestions[hidden] {
  display: none;
}

/* ================================
   VALUE SECTION (DARK THEME)
   H1 SEO + Trust Signals Premium
   ================================ */
.value-section {
  position: relative;
  padding: var(--spacing-3xl) var(--spacing-md);
  background: var(--color-bg-dark);
  overflow: hidden;
}

.value-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(
    180deg,
    rgba(110, 175, 73, 0.03) 0%,
    transparent 100%
  );
  pointer-events: none;
}

.value-section__container {
  position: relative;
  max-width: var(--max-width-container);
  margin: 0 auto;
  z-index: 1;
}

/* H1 - SEO Otimizado */
.value-section__title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: var(--spacing-md);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* H2 - Subtítulo */
.value-section__subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  line-height: 1.4;
  color: rgba(250, 250, 248, 0.8);
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Trust Grid */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  max-width: 1100px;
  margin: 0 auto var(--spacing-2xl);
}

/* Trust Card */
.trust-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border-dark);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--color-primary) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover::before {
  opacity: 1;
}

.trust-card:hover {
  transform: translateY(-8px);
  background: rgba(26, 26, 26, 0.8);
  border-color: rgba(110, 175, 73, 0.3);
  box-shadow: 
    0 24px 64px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(110, 175, 73, 0.1) inset;
}

.trust-card__icon-wrapper {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.trust-card__icon-wrapper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(110, 175, 73, 0.15) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trust-card:hover .trust-card__icon-wrapper::before {
  opacity: 1;
}

.trust-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(110, 175, 73, 0.1) 0%,
    rgba(110, 175, 73, 0.05) 100%
  );
  border: 2px solid rgba(110, 175, 73, 0.2);
  border-radius: 50%;
  color: var(--color-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.trust-card:hover .trust-card__icon {
  background: var(--color-primary);
  color: var(--color-bg-dark);
  border-color: var(--color-primary);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 
    0 12px 32px rgba(110, 175, 73, 0.4),
    0 0 0 8px rgba(110, 175, 73, 0.1);
}

.trust-card__icon svg {
  stroke-width: 2;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.trust-card__content {
  text-align: center;
}

.trust-card__title {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  margin-bottom: var(--spacing-xs);
  transition: color 0.3s ease;
}

.trust-card:hover .trust-card__title {
  color: var(--color-primary-light);
}

.trust-card__description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: rgba(250, 250, 248, 0.7);
  font-weight: var(--font-weight-normal);
  max-width: 300px;
}

/* CTA Section */
.value-section__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  max-width: 600px;
  margin: 0 auto;
}

.value-section__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  border-radius: 12px;
  transition: all var(--transition-speed) var(--transition-ease);
  min-height: 56px;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.value-section__button--primary {
  background: var(--color-primary);
  color: #FFFFFF;
  border: 2px solid var(--color-primary);
}

.value-section__button--primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(110, 175, 73, 0.4);
}

.value-section__button--secondary {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.value-section__button--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-4px);
}

.value-section__button:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 4px;
}

/* ================================
   MEDIA QUERIES
   ================================ */

/* TABLET (768px+) */
@media screen and (min-width: 768px) {
  :root {
    --header-height-mobile: 72px;
  }

  .cookie-consent__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-consent__content {
    flex: 1;
  }

  .cookie-consent__actions {
    flex-shrink: 0;
  }

  .header__container {
    padding: 0 var(--spacing-md);
  }

  .header__logo-img {
    height: 48px;
  }

  .header__menu-toggle {
    width: 48px;
    height: 48px;
  }

  .header__nav-mobile {
    width: 320px;
  }

  .hero {
    padding-top: var(--header-height-mobile);
  }

  .hero__location-badge {
    top: calc(var(--header-height-mobile) + var(--spacing-md));
    right: var(--spacing-md);
    padding: var(--spacing-sm) var(--spacing-md);
    max-width: 200px;
  }

  .hero__location-text {
    font-size: var(--font-size-sm);
  }

  .hero__location-cta {
    font-size: var(--font-size-xs);
  }

  .hero__eyebrow {
    font-size: 1.5rem;
  }

  .hero__search-input {
    font-size: var(--font-size-base);
    padding: var(--spacing-sm) var(--spacing-lg);
  }

  .hero__search-button {
    padding: var(--spacing-sm) var(--spacing-lg);
    min-width: 60px;
  }

  .hero__search-icon {
    width: 18px;
    height: 18px;
  }

  .value-section__title {
    font-size: var(--font-size-3xl);
  }

  .value-section__subtitle {
    font-size: var(--font-size-xl);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }

  .trust-card {
    padding: var(--spacing-2xl) var(--spacing-xl);
  }

  .trust-card__icon {
    width: 88px;
    height: 88px;
  }

  .value-section__cta {
    flex-direction: row;
  }

  .value-section__button {
    width: auto;
    min-width: 240px;
  }
}

/* DESKTOP (1024px+) */
@media screen and (min-width: 1024px) {
  .header {
    height: var(--header-height);
  }

  .header__container {
    padding: 0 var(--spacing-lg);
  }

  .header__logo-img {
    height: 52px;
  }

  .header__nav {
    display: block;
  }

  .header__menu-toggle,
  .header__nav-mobile,
  .header__overlay {
    display: none;
  }

  .nav__list {
    gap: var(--spacing-sm);
  }

  .nav__link {
    font-size: var(--font-size-base);
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .hero {
    padding-top: var(--header-height);
  }

  .hero__location-badge {
    top: calc(var(--header-height) + var(--spacing-lg));
    right: var(--spacing-lg);
  }

  .hero__eyebrow {
    font-size: 1.8rem;
  }

  .value-section__title {
    font-size: var(--font-size-4xl);
  }

  .trust-card__icon {
    width: 96px;
    height: 96px;
  }
}

/* LARGE DESKTOP (1280px+) */
@media screen and (min-width: 1280px) {
  .nav__list {
    gap: var(--spacing-md);
  }

  .hero__content {
    max-width: 720px;
  }

  .value-section {
    padding: calc(var(--spacing-3xl) * 1.2) var(--spacing-lg);
  }
}

/* ================================
   ACESSIBILIDADE - MOTION
   ================================ */
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow {
    animation: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .cookie-consent {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ================================
   ACESSIBILIDADE GLOBAL
   ================================ */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  .hero__eyebrow {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .hero__location-cta {
    color: #FFFFFF;
    text-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  .trust-card {
    border-color: var(--color-primary);
  }
}