:root {
  /* Cores do Grupo Holanda */
  --color-dark: #1a1a1a;
  --color-dark-hover: #000000;
  --color-gold: #c5a059;
  --color-gold-hover: #d6b068;
  --color-blue: #00adef;
  --color-blue-hover: #0096cf;

  --color-gray-light: #f4f4f4;
  --color-gray-bg: #f9fafb;
  --color-slate: #2d3748;
  --color-white: #ffffff;
  --color-text-body: #4b5563;

  /* Fontes */
  --font-sans: "Montserrat", sans-serif;
  --font-serif: "Playfair Display", serif;

  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
  --border-radius: 12px;
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}

body {
  font-family: var(--font-sans);
  color: var(--color-slate);
  background-color: var(--color-gray-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Tipografia Utilitária */
h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.text-gold {
  color: var(--color-gold) !important;
}
.text-blue {
  color: var(--color-blue) !important;
}
.text-dark {
  color: var(--color-dark) !important;
}
.text-yellow {
  color: #fbbf24 !important;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Botões */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 9999px; /* Rounded Full conforme pedido */
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-outline-white {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  background: transparent;
}

.btn-outline-white:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
  border: 1px solid var(--color-dark);
}

.btn-dark:hover {
  background: var(--color-slate);
  border-color: var(--color-slate);
}

.btn-outline-dark {
  border: 1px solid #d1d5db;
  color: var(--color-slate);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ================= HEADER ================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

header.scrolled,
header.navbar-solid,
header.menu-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
  backdrop-filter: blur(10px);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
  transition: all 0.5s ease;
}

.logo-img:hover {
  transform: scale(1.1);
}

header.scrolled .logo-img,
header.navbar-solid .logo-img,
header.menu-open .logo-img,
.legal-page header .logo-img {
  height: 40px;
  filter: invert(1);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 1px;
  transition: color 0.3s;
}

header.scrolled .logo-text,
header.navbar-solid .logo-text,
header.menu-open .logo-text,
.legal-page header .logo-text {
  color: var(--color-dark);
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-menu ul {
  display: flex;
  gap: 25px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

header.scrolled .nav-link,
header.navbar-solid .nav-link,
.legal-page header .nav-link {
  color: var(--color-slate);
}

.nav-link:hover {
  color: var(--color-gold) !important;
}

.btn-whatsapp-nav {
  border: 1px solid var(--color-white);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-nav:hover {
  background: var(--color-white);
  color: var(--color-dark);
}

.btn-whatsapp-nav i {
  font-size: 1.2rem;
}

header.scrolled .btn-whatsapp-nav,
header.navbar-solid .btn-whatsapp-nav,
header.menu-open .btn-whatsapp-nav,
.legal-page header .btn-whatsapp-nav {
  border-color: var(--color-dark);
  color: var(--color-dark);
}

header.scrolled .btn-whatsapp-nav:hover,
header.navbar-solid .btn-whatsapp-nav:hover,
header.menu-open .btn-whatsapp-nav:hover,
.legal-page header .btn-whatsapp-nav:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 1.8rem;
  cursor: pointer;
}

header.scrolled .menu-toggle,
header.navbar-solid .menu-toggle,
header.menu-open .menu-toggle,
.legal-page header .menu-toggle {
  color: var(--color-dark);
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid #eee;
  padding: 20px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-150%);
  transition: transform 0.4s ease;
  z-index: 999;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-link {
  color: var(--color-dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-cta {
  background: var(--color-dark);
  color: white;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-cta i {
  font-size: 1.2rem;
}

/* ================= HERO ================= */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  z-index: 0;
  background-image: url("background-hero.png");
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  margin-top: -50px;
}

.hero-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1.2rem;
  color: #d1d5db;
  margin-bottom: 1rem;
  font-weight: 400;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  font-weight: 700;
  color: var(--color-white);
}

.hero-description {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #9ca3af;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  color: #e5e7eb;
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-down-indicator a {
  color: var(--color-white);
  font-size: 2rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ================= SECTIONS GERAL ================= */
.section-padding {
  padding: 80px 0;
}
.section-padding-sm {
  padding: 10px 0;
}

.bg-white {
  background-color: var(--color-white);
}
.bg-gray {
  background-color: var(--color-gray-bg);
}

.border-bottom {
  border-bottom: 1px solid #e5e7eb;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-title {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.section-title-sm {
  font-size: 2rem;
  color: var(--color-dark);
}

.section-lead {
  font-size: 1.1rem;
  color: var(--color-text-body);
}

.separator-gold {
  width: 100px;
  height: 4px;
  background: var(--color-gold);
  margin: 0 auto 30px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #9ca3af;
  display: block;
  margin-bottom: 10px;
}

/* ================= CARDS VALORES ================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}
/* 1. Botão WhatsApp (Base) */
.whatsapp-float {
  position: fixed;
  bottom: 30px; /* Distância do chão */
  right: 30px; /* Distância da direita */
  width: 60px;
  height: 60px;
  background-color: #25d366; /* Verde oficial WhatsApp */
  color: #ffffff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000; /* Garante que fique acima de tudo */
  transition: all 0.3s ease;

  /* Animação de Pulso contínuo para chamar atenção */
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1); /* Cresce um pouco ao passar o mouse */
  background-color: #20b857;
}

/* 2. Botão Voltar ao Topo (Ajustado para ficar ACIMA do WhatsApp) */
.back-to-top {
  position: fixed;
  bottom: 120px; /* 30px (base) + 60px (botão whats) + 20px (espaço) */
  right: 35px; /* Levemente centralizado em relação ao botão de baixo */
  width: 50px;
  height: 50px;
  background: var(--color-gold); /* Cor da sua marca */
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 990; /* Fica logo abaixo do nível do WhatsApp */
  cursor: pointer;
  border: none;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-dark);
  transform: translateY(-5px);
}

/* 3. Animação de Pulso Verde */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.btn-whatsapp-nav {
  /* Mantenha o seu CSS atual e adicione a animação */
  animation: pulse-gold 2s infinite;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-values {
  background: #f9fafb;
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}

.card-values:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background: white;
}

.border-top-dark {
  border-top-color: var(--color-dark);
}
.border-top-gold {
  border-top-color: var(--color-gold);
}
.border-top-blue {
  border-top-color: var(--color-blue);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.bg-gray-light {
  background: #e5e7eb;
}
.bg-gold-light {
  background: #fef3c7;
}
.bg-blue-light {
  background: #e0f2fe;
}
.text-gold-dark {
  color: #d97706;
}

.card-values h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-dark);
}

.values-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  color: var(--color-text-body);
}

.values-list li span {
  width: 6px;
  height: 6px;
  background: var(--color-blue);
  border-radius: 50%;
  margin-right: 10px;
}

/* ================= FEATURE SECTIONS ================= */
.feature-row {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

@media (min-width: 992px) {
  .feature-row {
    flex-direction: row;
    gap: 80px;
  }
  .feature-row.reverse {
    flex-direction: row-reverse;
  }
  .feature-image,
  .feature-content {
    flex: 1;
  }
}

#veiculos {
  padding-top: 40px; /* Reduz o espaçamento superior para aproximar do título "Nossas Empresas" */
}

.image-wrapper {
  position: relative;
  overflow: visible; /* IMPORTANTE: permite que o ícone "escape" */
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.image-wrapper > img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 16px; /* Arredonda os cantos da foto */
}

.floating-icon {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%; /* Faz o contentor ser redondo */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
  z-index: 10;
  overflow: hidden; /* IMPORTANTE: Corta qualquer coisa quadrada que esteja dentro */
}

.floating-logo {
  width: 100%; /* Faz a imagem ocupar todo o espaço da bola */
  height: 100%; /* Garante que não sobrem espaços brancos nas bordas */
  object-fit: cover; /* Faz a imagem preencher o círculo sem achatar o desenho */
  border-radius: 50%; /* Garante que a própria imagem assuma a forma circular */
}

/* Ajuste para mobile não quebrar o ícone */
@media (max-width: 768px) {
  .floating-icon {
    width: 65px;
    height: 65px;
    bottom: -20px;
    right: -10px;
  }
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.badge-dark {
  background: #f3f4f6;
  color: var(--color-dark);
}
.badge-blue {
  background: #f3f4f6;
  color: var(--color-blue);
}
.badge-yellow {
  background: #f3f4f6;
  color: #d97706;
}

.feature-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.text-block p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: var(--color-text-body);
}

.actions-row {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */
footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-header {
  text-align: center;
  margin-bottom: 60px;
}

.footer-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.footer-header p {
  color: #9ca3af;
}

.footer-cards-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .footer-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-card {
  background: #1f2937;
  border: 1px solid #374151;
  border-radius: 12px;
  padding: 25px;
  transition: border-color 0.3s;
}

.footer-card:hover {
  border-color: #6b7280;
}

.footer-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.icon-box {
  background: #374151;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.2rem;
}

.social-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(55, 65, 81, 0.5);
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #d1d5db;
  font-size: 0.9rem;
}

.social-link:hover {
  background: var(--color-blue); /* Padrão hover, pode customizar por rede */
  color: white;
}

.social-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 50px;
  text-align: center;
}

.map-contact-wrapper {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-contact-text h3 {
  font-size: 1.8rem;
  color: var(--color-white);
  margin-bottom: 20px;
}

.map-container {
  width: 100%;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  color: #9ca3af;
}

@media (min-width: 992px) {
  .map-contact-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 50px;
  }
  .footer-contact-text {
    flex: 1;
  }
  .contact-info {
    align-items: flex-start;
  }
  .map-container {
    flex: 1;
    height: 350px;
  }
}

.info-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.info-item i {
  color: var(--color-gold);
  margin-top: 5px;
}

.info-item a {
  color: #9ca3af;
}

.info-item a:hover {
  text-decoration: underline;
}

.copyright {
  margin-top: 50px;
  font-size: 0.85rem;
  color: #6b7280;
  border-top: 1px solid #374151;
  padding-top: 30px;
}

.legal-links a {
  color: #6b7280;
  margin: 0 10px;
}

.legal-links a:hover {
  color: white;
}

/* ================= LEGAL PAGES ================= */
.legal-page {
  background: var(--color-gray-bg);
}

.legal-page .section-padding {
  padding-top: 120px;
}

.legal-content-wrapper {
  max-width: 900px;
  margin: 40px auto 60px; /* Ajustado para compensar o padding da section */
  background: var(--color-white);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
}

.legal-content-wrapper h1 {
  font-size: 2.5rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.legal-content-wrapper > p:first-of-type {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 40px;
}

.legal-content-wrapper h2 {
  font-size: 1.5rem;
  color: var(--color-dark);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gray-light);
}

.legal-content-wrapper p,
.legal-content-wrapper li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-body);
  margin-bottom: 15px;
  text-align: left;
}

.legal-content-wrapper ul {
  padding-left: 20px;
  margin-bottom: 20px;
  list-style-type: disc;
}

.legal-content-wrapper li {
  margin-bottom: 8px;
  padding-left: 5px;
}

.legal-content-wrapper strong {
  color: var(--color-dark);
  font-weight: 600;
}

.alert-box {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  color: #92400e;
  padding: 20px;
  border-radius: 6px;
  margin: 30px 0;
  font-size: 1rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

/* Mobile Adjustments for Legal Pages */
@media (max-width: 768px) {
  .legal-page .section-padding {
    padding-top: 100px;
  }

  .legal-content-wrapper {
    margin: 20px auto 40px;
    padding: 30px 20px;
    width: 100%;
  }

  .legal-content-wrapper h1 {
    font-size: 1.8rem;
  }

  .legal-content-wrapper h2 {
    font-size: 1.3rem;
    margin-top: 30px;
  }

  .legal-content-wrapper p,
  .legal-content-wrapper li {
    font-size: 1rem;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .hero-content {
    margin-top: -150px;
  }

  .desktop-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }

  html {
    scroll-padding-top: 90px;
  }

  .section-padding {
    padding: 50px 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-description {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .card-values {
    text-align: center;
    padding: 30px 20px;
  }

  .icon-circle {
    margin: 0 auto 25px;
  }

  .values-list li {
    justify-content: center;
  }

  .feature-row {
    gap: 40px;
  }

  .feature-content {
    text-align: center;
  }

  .text-block p {
    text-align: center;
    font-size: 1rem;
  }

  .actions-row {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }

  .btn {
    width: 100%;
  }

  .image-wrapper {
    margin-bottom: 0;
  }

  .image-wrapper > img {
    height: 260px;
  }

  .floating-icon {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: -30px;
  }

  .hero-bg {
    background-image: url("background-hero-mobile.png");
    background-attachment: scroll;
  }
}

/* ================= ANIMATIONS ================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}
.delay-200 {
  transition-delay: 0.2s;
}

/* ================= COOKIE BANNER ================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--color-text-body);
  margin: 0;
}

.cookie-content a {
  color: var(--color-dark);
  text-decoration: underline;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .cookie-content p {
    max-width: 75%;
  }
}
