/* ============================================================
   CASTRO EXPORT — CSS GLOBAL
   Metodologia: BEM (Block, Element, Modifier)
   Fontes: Archivo Expanded (Light, Regular, Bold) — Local
   ============================================================ */

/* ==========  @FONT-FACE  ========== */
@font-face {
  font-family: 'Archivo Expanded';
  src: url('../assets/font/Archivo_Expanded-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo Expanded';
  src: url('../assets/font/Archivo_Expanded-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Archivo Expanded';
  src: url('../assets/font/Archivo_Expanded-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ==========  CUSTOM PROPERTIES  ========== */
:root {
  --color-primary: #060F2A;
  --color-accent: #C7580A;
  --color-white: #FFFFFF;
  --color-gray: #777777;
  --color-gray-light: #919191;
  --color-input-bg: #D9D9D9;
  --color-card-dark: #19213A;
  --color-card-shadow: #424E77;
  --color-overlay-50: rgba(0, 0, 0, 0.5);
  --color-overlay-60: rgba(0, 0, 0, 0.6);
  --color-bar-text: rgba(255, 255, 255, 0.5);
  --color-bar-icon: rgba(255, 194, 156, 0.5);

  --font-family: 'Archivo Expanded', sans-serif;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-bold: 700;

  --max-width: 1440px;
  --container-padding: clamp(20px, 4vw, 60px);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Suporte ao Lenis Smooth Scroll */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* Barra de rolagem vertical personalizada (Progresso Laranja Fino com Padding) */
.scroll-progress-container {
  position: fixed;
  top: 16px;
  right: 12px;
  width: 3px;
  height: calc(100vh - 32px);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  z-index: 10000;
  pointer-events: none;
  overflow: hidden;
}

.scroll-progress-bar {
  width: 100%;
  height: 0%;
  background: var(--color-accent, #C7580A);
  box-shadow: 0 0 8px rgba(199, 88, 10, 0.7);
  border-radius: 10px;
  transition: height 0.05s linear;
}

/* Botão Voltar ao Topo (Sutil e Centralizado) */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px) scale(0.95);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(6, 15, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  z-index: 9998;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.back-to-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

.back-to-top:hover {
  background: rgba(199, 88, 10, 0.85);
  border-color: rgba(199, 88, 10, 1);
  color: #ffffff;
  transform: translateX(-50%) translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(199, 88, 10, 0.4);
}

.back-to-top__icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.back-to-top:hover .back-to-top__icon {
  transform: translateY(-2px);
}

/* Blur suave no rodapé da página (some ao chegar no fim) */
.bottom-blur-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(to top, rgba(6, 15, 42, 0.7) 0%, rgba(6, 15, 42, 0) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 9990;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-blur-overlay--hidden {
  opacity: 0;
  visibility: hidden;
}

.nav__menu-cta-mobile {
  display: none;
}

section[id] {
  scroll-margin-top: 88px;
}

body {
  font-family: var(--font-family);
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  background-color: var(--color-white);
  line-height: 1.1;
  letter-spacing: normal;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  margin: 0 auto;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

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

input,
textarea,
select {
  font-family: inherit;
  border: none;
  outline: none;
}

/* ==========  UTILITÁRIOS  ========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* ============================================================
   BLOCO: NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 1000;
  transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-bottom 0.4s ease;
}

.nav--scrolled {
  background-color: rgba(6, 15, 42, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  flex-shrink: 0;
  height: 34px;
}

.nav__logo-img {
  height: 100%;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 36px);
}

.nav__link {
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: var(--fw-light);
  color: var(--color-white);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__separator {
  width: 1px;
  height: 23px;
  background-color: var(--color-white);
  opacity: 0.5;
}

/* Controlador de Idiomas (Language Switcher) */
.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 3px 6px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav__lang-link {
  font-size: 12px;
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.7);
  padding: 3px 8px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav__lang-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
}

.nav__lang-link--active {
  color: #ffffff;
  font-weight: var(--fw-bold);
  background: var(--color-accent);
  box-shadow: 0 2px 8px rgba(199, 88, 10, 0.4);
}

.nav__lang-link--active:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.nav__lang-divider {
  width: 1px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  display: inline-block;
}

.nav__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: var(--color-accent);
  border-radius: 50px;
  font-size: 14px;
  font-weight: var(--fw-light);
  color: var(--color-white);
  white-space: nowrap;
  transition: background-color 0.3s ease;
  flex-shrink: 0;
}

.nav__cta:hover {
  background-color: #a84808;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  z-index: 110;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger--active .nav__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--active .nav__hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__overlay {
  display: none;
}

/* ============================================================
   BLOCO: HERO
   ============================================================ */
/* ============================================================
   BLOCO: HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: clamp(820px, 88vh, 980px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../assets/images/bghero.webp') center/cover no-repeat;
}

.hero__bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 15, 42, 0.95) 0%, rgba(6, 15, 42, 0.7) 50%, rgba(6, 15, 42, 0.4) 100%);
  z-index: 1;
}

.hero__container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: clamp(150px, 14vw, 190px) var(--container-padding) clamp(130px, 12vw, 160px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero__content {
  max-width: 680px;
  flex: 1;
}

.hero__subtitle {
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: var(--fw-light);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero__title {
  font-size: clamp(28px, 2.5vw, 48px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 14px;
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__description {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-light);
  color: var(--color-white);
  line-height: 1.45;
  margin-bottom: 24px;
}

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

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  height: 56px;
  min-width: 290px;
  border-radius: 100px;
  font-size: clamp(13px, 0.85vw, 15px);
  font-weight: var(--fw-light);
  color: var(--color-white);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero__btn--primary {
  background-color: var(--color-accent);
}

.hero__btn--primary:hover {
  background-color: #a84808;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(199, 88, 10, 0.35);
}

.hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.hero__btn-icon {
  width: 14px;
  height: 14px;
  color: var(--color-white);
  transform: rotate(0deg);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__btn--primary:hover .hero__btn-icon {
  transform: rotate(45deg) translateX(3px);
}

.hero__btn-icon--play {
  width: 20px;
  height: 20px;
  transform: none;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  flex-shrink: 0;
}

.hero__stats-divider {
  width: 1px;
  height: 170px;
  background-color: rgba(255, 255, 255, 0.3);
  align-self: center;
}

.hero__stats-cards {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  align-items: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 95px;
  color: var(--color-white);
}

.hero__stat-number {
  font-size: clamp(30px, 2.2vw, 44px);
  font-weight: var(--fw-light);
  line-height: 1;
}

.hero__stat-label {
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: var(--fw-light);
  line-height: 1.2;
}

/* ============================================================
   BLOCO: BARRA (Ticker continuo com blur sobre a Hero)
   ============================================================ */
.barra {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 64px;
  background-color: rgba(6, 15, 42, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  z-index: 10;
  margin-top: 0;
}

.barra__track {
  display: flex;
  width: max-content;
  align-items: center;
  height: 100%;
  animation: marquee 25s linear infinite;
}

.barra__track:hover {
  animation-play-state: paused;
}

.barra__group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.barra__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 32px;
  flex-shrink: 0;
}

.barra__icon {
  width: 22px;
  height: 22px;
  color: var(--color-bar-icon);
}

.barra__text {
  font-size: 15px;
  font-weight: var(--fw-light);
  color: var(--color-bar-text);
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== BARRA DE TRANSIÇÃO SUTIL (EXPANSÃO GLOBAL) ========== */
.barra-transicao {
  width: 100%;
  padding: 2px 0;
  background: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  user-select: none;
}

.barra-transicao__track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: marquee 35s linear infinite reverse;
}

.barra-transicao__track:hover {
  animation-play-state: paused;
}

.barra-transicao__group {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.barra-transicao__item {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 36px);
  padding: 0 clamp(16px, 2.2vw, 36px);
  flex-shrink: 0;
}

.barra-transicao__text {
  font-size: clamp(34px, 4.2vw, 70px);
  font-weight: var(--fw-light);
  color: rgba(6, 15, 42, 0.15);
  white-space: nowrap;
  letter-spacing: -0.02em;
}

.barra-transicao__divider {
  font-size: clamp(34px, 4.2vw, 70px);
  color: rgba(199, 88, 10, 0.3);
  font-weight: 300;
}

/* ============================================================
   BLOCO: QUEM SOMOS
   ============================================================ */
.quem-somos {
  position: relative;
  width: 100%;
  border-radius: 0 0 24px 24px;
  overflow: hidden;
  background: radial-gradient(ellipse at 72% 53%, rgba(46, 55, 83, 1) 0%, rgba(26, 35, 63, 1) 50%, rgba(6, 15, 42, 1) 100%);
}

.quem-somos__bg-globe {
  position: absolute;
  top: 5%;
  right: -5%;
  width: 40%;
  height: auto;
  opacity: 0.8;
  z-index: 0;
  pointer-events: none;
}

.quem-somos__container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: clamp(80px, 8vw, 120px) var(--container-padding) clamp(80px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.quem-somos__left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.quem-somos__content {
  max-width: 580px;
}

.quem-somos__subtitle {
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: var(--fw-light);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 17px;
}

.quem-somos__title {
  font-size: clamp(28px, 2.5vw, 44px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.quem-somos__title-accent {
  color: var(--color-accent);
}

.quem-somos__text {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-light);
  color: var(--color-white);
  line-height: 1.5;
  margin-bottom: 14px;
}

.quem-somos__text-bold {
  font-weight: var(--fw-bold);
}

.quem-somos__text-accent {
  color: var(--color-accent);
}

.quem-somos__cards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quem-somos__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 16px 20px;
  background-color: var(--color-card-dark);
  border-radius: 12px;
  flex: 1;
  min-width: 160px;
}

.quem-somos__card-icon {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.quem-somos__card-text {
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: var(--fw-light);
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.3;
}

.quem-somos__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.quem-somos__event-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.quem-somos__event-shadow {
  display: none;
}

.quem-somos__event-img-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
}

.quem-somos__event-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

/* ============================================================
   BLOCO: POTÊNCIA
   ============================================================ */
.potencia {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: clamp(80px, 8vw, 120px) 0;
}

.potencia__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.28;
  pointer-events: none;
}

.potencia__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.potencia__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--color-primary) 0%, rgba(6, 15, 42, 0.6) 50%, var(--color-primary) 100%);
}

.potencia__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 20px;
  row-gap: 20px;
  align-items: stretch;
}

.potencia__header {
  grid-column: 2 / 4;
  grid-row: 1;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0;
  padding-bottom: 0;
}

.potencia__subtitle {
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: 500;
  color: #e66d15;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.potencia__title {
  font-size: clamp(24px, 2vw, 38px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.potencia__description {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin-bottom: 20px;
}

.potencia__header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #c0560a, #e66d15);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(230, 109, 21, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.potencia__header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(230, 109, 21, 0.6);
}

.potencia__header-cta svg {
  transition: transform 0.3s ease;
}

.potencia__header-cta:hover svg {
  transform: translateX(4px);
}

.potencia__card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.4s ease, transform 0.4s ease;
}

.potencia__card:hover {
  border-color: rgba(230, 109, 21, 0.6);
}

.potencia__card-cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.potencia__card-cta:hover {
  background: #e66d15;
  border-color: #e66d15;
  transform: translateX(4px);
}

/* --- Card de café (DESTAQUE) --- */
.potencia__card--cafe-destaque {
  grid-column: 1;
  grid-row: 1 / 3;
  height: 100%;
  min-height: 560px;
  align-self: stretch;
}

/* --- Cards secundários (Alinhados Lado a Lado — Tamanho Exato Idêntico) --- */
.potencia__card--alimentos,
.potencia__card--sucos {
  height: 100%;
  min-height: 280px;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-self: stretch;
  width: 100%;
}

.potencia__card--alimentos {
  grid-column: 2;
  grid-row: 2;
}

.potencia__card--sucos {
  grid-column: 3;
  grid-row: 2;
}

.potencia__product {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  margin: 0;
}

.potencia__product--cafe,
.potencia__product--alimentos,
.potencia__product--sucos {
  height: 100%;
}

.potencia__product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.potencia__card:hover .potencia__product-img {
  transform: scale(1.04);
}

.potencia__product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
}

/* Overlay mais intenso para o destaque do café */
.potencia__product-overlay--cafe {
  background: linear-gradient(160deg,
      rgba(6, 15, 42, 0.15) 0%,
      rgba(6, 15, 42, 0.25) 40%,
      rgba(6, 15, 42, 0.72) 100%);
}

/* Badge Destaque */
.potencia__cafe-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  background: var(--color-accent);
  color: #fff;
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 16px;
  border-radius: 50px;
}

/* Conteúdo sobreposto no card de café */
.potencia__cafe-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.potencia__cafe-label {
  font-size: 12px;
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.potencia__cafe-headline {
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: var(--fw-bold);
  color: #fff;
  line-height: 1.2;
  margin: 0;
}

.potencia__cafe-desc {
  font-size: clamp(12px, 0.8vw, 14px);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin-top: 4px;
  max-width: 380px;
}

/* Tags simples nos cards secundários */
.potencia__product-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 60px;
  font-size: 11px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* Conteúdo dos cards secundários (alimentos / sucos) */
.potencia__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Reposiciona a tag quando está dentro do card-content */
.potencia__card-content .potencia__product-tag {
  position: static;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 4px;
}

.potencia__card-desc {
  font-size: clamp(11px, 0.75vw, 13px);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   BLOCO: MARCAS — BENTO GRID INTERATIVO E MODAL BACKDROP
   ============================================================ */
.marcas {
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: clamp(60px, 6vw, 100px) 0;
  overflow: hidden;
}

/* Cabeçalho alinhado ao container global */
.marcas__header-wrap {
  max-width: var(--max-width);
  margin: 0 auto clamp(36px, 4vw, 56px);
  padding: 0 var(--container-padding);
}

.marcas__header-content {
  max-width: 680px;
  text-align: left;
}

.marcas__subtitle {
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: var(--fw-bold);
  color: var(--color-accent) !important;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.08em;
  opacity: 1 !important;
  visibility: visible !important;
}

.marcas__title {
  font-size: clamp(28px, 2.5vw, 46px);
  font-weight: var(--fw-bold);
  color: var(--color-primary) !important;
  line-height: 1.12;
  margin-bottom: 20px;
  opacity: 1 !important;
  visibility: visible !important;
}

.marcas__title-accent {
  color: var(--color-accent) !important;
}

.marcas__description {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-regular);
  color: rgba(6, 15, 42, 0.75) !important;
  line-height: 1.55;
  max-width: 620px;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Container Backdrop do Grid Interativo */
.marcas__backdrop-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: clamp(20px, 3vw, 36px) var(--container-padding);
  background: linear-gradient(135deg, rgba(6, 15, 42, 0.02) 0%, rgba(199, 88, 10, 0.025) 100%);
  border: 1px solid rgba(6, 15, 42, 0.06);
  border-radius: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

/* Layout Grid Bento Interativo (3 Colunas) */
.marcas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
}

/* Card individual do Bento Grid */
.marcas__grid-card {
  position: relative;
  height: clamp(280px, 22vw, 360px);
  border-radius: 22px;
  overflow: hidden;
  cursor: default;
  background: var(--color-primary);
  box-shadow: 0 12px 32px rgba(6, 15, 42, 0.08);
  border: 1px solid rgba(6, 15, 42, 0.08);
  outline: none;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.45s ease;
}

/* Módulo de Cabeçalho no Bento Grid (2 Colunas no Topo) */
.marcas__grid-card--header {
  grid-column: span 2;
  background: var(--color-white);
  border: 1px solid rgba(6, 15, 42, 0.08);
  box-shadow: 0 10px 30px rgba(6, 15, 42, 0.03);
  padding: clamp(24px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: clamp(280px, 22vw, 360px);
  cursor: default;
}

.marcas__grid-card--header:hover,
.marcas__grid-card--header:focus-visible {
  transform: none;
  box-shadow: 0 10px 30px rgba(6, 15, 42, 0.03);
  border-color: rgba(6, 15, 42, 0.08);
}

/* Card Destaque na Base (2 Colunas no Desktop) */
@media (min-width: 901px) {
  .marcas__grid-card--featured {
    grid-column: span 2;
  }
}

.marcas__grid-card:hover,
.marcas__grid-card:focus-visible {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(6, 15, 42, 0.18), 0 0 0 1px rgba(199, 88, 10, 0.4);
  border-color: rgba(199, 88, 10, 0.4);
}

.marcas__grid-figure {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}

.marcas__grid-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.marcas__grid-card:hover .marcas__grid-img,
.marcas__grid-card:focus-visible .marcas__grid-img {
  transform: scale(1.08);
}

/* Sombreamento em gradiente sobre a imagem */
.marcas__grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(6, 15, 42, 0.92) 0%,
      rgba(6, 15, 42, 0.45) 55%,
      rgba(6, 15, 42, 0.1) 100%);
  transition: opacity 0.45s ease;
}

.marcas__grid-card:hover .marcas__grid-overlay {
  background: linear-gradient(to top,
      rgba(6, 15, 42, 0.96) 0%,
      rgba(6, 15, 42, 0.55) 60%,
      rgba(6, 15, 42, 0.15) 100%);
}

/* Badge de número no canto superior direito */
.marcas__grid-num {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-size: 12px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  padding: 5px 13px;
  background: rgba(6, 15, 42, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Conteúdo de texto na base do card */
.marcas__grid-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.marcas__grid-tag {
  font-size: 11px;
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.marcas__grid-title {
  font-size: clamp(20px, 1.4vw, 25px);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  line-height: 1.15;
}

.marcas__grid-desc {
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}



/* ── Responsividade Bento Grid Modulado ── */
@media (max-width: 900px) {
  .marcas__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .marcas__grid-card--header {
    grid-column: span 2;
    height: auto;
    padding: 32px 24px;
  }

  .marcas__grid-card--featured {
    grid-column: span 2;
  }
}

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

  .marcas__grid-card--header {
    grid-column: span 1;
    padding: 24px 20px;
  }

  .marcas__grid-card--featured {
    grid-column: span 1;
  }

  .marcas__grid-card {
    height: 280px;
  }


}

/* ============================================================
   BLOCO: BRASIL NA EUROPA (GESTÃO E REPRESENTAÇÃO - LIGHT THEME)
   ============================================================ */
.brasil-europa {
  position: relative;
  width: 100%;
  z-index: 5;
  background-color: var(--color-white);
  padding: clamp(60px, 6vw, 100px) 0;
}

.brasil-europa__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
}

.brasil-europa__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brasil-europa__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.95) 75%, rgba(255, 255, 255, 1) 100%);
}

.brasil-europa__container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(30px, 5vw, 60px);
  align-items: center;
}

.brasil-europa__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 620px;
}

.brasil-europa__content {
  max-width: 620px;
}

.brasil-europa__subtitle {
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: var(--fw-light);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 17px;
}

.brasil-europa__title {
  font-size: clamp(28px, 2.5vw, 44px);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.brasil-europa__title-accent {
  color: var(--color-accent);
}

.brasil-europa__text {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-light);
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 14px;
}

.brasil-europa__text-accent {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

.brasil-europa__cards {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 620px;
}

.brasil-europa__card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  padding: 14px 18px;
  background-color: var(--color-white);
  border: 1px solid rgba(6, 15, 42, 0.12);
  border-radius: 12px;
  flex: 1;
  min-width: 130px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.brasil-europa__card-icon {
  width: 22px;
  height: 22px;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.brasil-europa__card-title {
  font-size: clamp(11px, 0.75vw, 13px);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.2;
}

.brasil-europa__card-desc {
  font-size: clamp(10px, 0.7vw, 12px);
  font-weight: var(--fw-light);
  color: var(--color-gray);
  line-height: 1.2;
  margin-top: 2px;
}

.brasil-europa__right {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brasil-europa__event {
  width: 100%;
  max-width: clamp(280px, 24vw, 420px);
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(6, 15, 42, 0.15);
}

.brasil-europa__event-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* ============================================================
   BLOCO: MAPA / ATUAÇÃO (MAPBOX 3D GLOBE & FILTRO INTERATIVO - WHITE THEME)
   ============================================================ */
.mapa {
  position: relative;
  width: 100%;
  padding: clamp(80px, 8vw, 120px) 0;
  background: var(--color-white);
  color: var(--color-primary);
}

.mapa__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
  align-items: stretch;
}

.mapa__content {
  display: flex;
  flex-direction: column;
}

.mapa__subtitle {
  font-size: clamp(13px, 0.83vw, 16px);
  font-weight: var(--fw-light);
  color: var(--color-accent);
  text-transform: uppercase;
  margin-bottom: 17px;
}

.mapa__title {
  font-size: clamp(24px, 2vw, 38px);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.mapa__title-accent {
  color: var(--color-accent);
}

.mapa__description {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-light);
  color: var(--color-gray);
  line-height: 1.5;
  margin-bottom: 20px;
}

.mapa__cta-network {
  font-size: clamp(11px, 0.7vw, 13px);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.4;
  margin-bottom: 24px;
  padding-left: 14px;
  border-left: 3px solid var(--color-accent);
}

/* MENU INTERATIVO DE FILTRO DE PAÍSES (CLARO) */
.mapa__filter {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.mapa__filter-search-row {
  display: flex;
  gap: 12px;
}

.mapa__search-input {
  flex: 1;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--color-primary);
  font-size: 13px;
  font-family: var(--font-family);
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.mapa__search-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(199, 88, 10, 0.15);
}

.mapa__search-input::placeholder {
  color: #94a3b8;
}

.mapa__reset-btn {
  background: transparent;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: var(--fw-bold);
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.mapa__reset-btn:hover {
  background: var(--color-accent);
  color: #ffffff;
}

.mapa__filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mapa__tab {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #475569;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: var(--fw-regular);
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.25s ease;
}

.mapa__tab:hover {
  background: #f1f5f9;
  color: var(--color-primary);
}

.mapa__tab.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  font-weight: var(--fw-bold);
}

.mapa__pills-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 220px;
  overflow-y: auto;
  padding-right: 6px;
}

.mapa__pills-container::-webkit-scrollbar {
  width: 4px;
}

.mapa__pills-container::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.mapa__country-pill {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #334155;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.mapa__country-pill:hover {
  background: rgba(199, 88, 10, 0.08);
  border-color: var(--color-accent);
  color: var(--color-accent);
  transform: translateY(-1px);
}

.mapa__country-pill.active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #ffffff;
  font-weight: var(--fw-bold);
  box-shadow: 0 2px 8px rgba(199, 88, 10, 0.3);
}

/* CONTAINER MAPBOX 3D GLOBE (CLARO) */
.mapa__globe {
  width: 100%;
  min-height: 400px;
  height: 100%;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  background: #1a1a2e;
}

.mapa__globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* MARCADORES E POPUPS CUSTOMIZADOS NO MAPBOX */
.mapbox-custom-marker {
  width: 16px;
  height: 16px;
  background-color: var(--color-accent);
  border: 2px solid #ffffff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(199, 88, 10, 0.9);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.mapbox-custom-marker:hover,
.mapbox-custom-marker.active {
  transform: scale(1.5);
  background-color: #ff8433;
  box-shadow: 0 0 20px rgba(255, 132, 51, 1);
  z-index: 10;
}

.mapboxgl-popup-content {
  background: #060f2a !important;
  color: #ffffff !important;
  border: 1px solid var(--color-accent) !important;
  border-radius: 10px !important;
  padding: 10px 16px !important;
  font-family: 'Archivo Expanded', sans-serif !important;
  font-size: 12px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip {
  border-top-color: var(--color-accent) !important;
}

.mapboxgl-popup-anchor-top .mapboxgl-popup-tip {
  border-bottom-color: var(--color-accent) !important;
}

.mapboxgl-popup-anchor-left .mapboxgl-popup-tip {
  border-right-color: var(--color-accent) !important;
}

.mapboxgl-popup-anchor-right .mapboxgl-popup-tip {
  border-left-color: var(--color-accent) !important;
}

.mapboxgl-popup-close-button {
  color: #ffffff !important;
  padding: 4px 8px !important;
}

/* ============================================================
   BLOCO: CONTATO
   ============================================================ */
.contato {
  position: relative;
  width: 100%;
  padding: clamp(80px, 8vw, 120px) 0;
}

.contato__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.contato__info {
  max-width: 600px;
}

.contato__title {
  font-size: clamp(24px, 2vw, 38px);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.contato__title-accent {
  color: var(--color-accent);
}

.contato__description {
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: 1.4;
  margin-bottom: 40px;
}

.contato__details {
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-style: normal;
}

.contato__detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contato__detail-icon {
  width: 26px;
  height: 26px;
  color: var(--color-gray);
  flex-shrink: 0;
}

.contato__detail-text {
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: 1.2;
}

.contato__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.contato__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contato__field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contato__label {
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
}

.contato__input {
  width: 100%;
  height: 44px;
  background-color: var(--color-input-bg);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  border-radius: 4px;
}

.contato__input::placeholder {
  color: var(--color-gray-light);
}

.contato__input--textarea {
  height: 120px;
  resize: none;
  padding: 14px 16px;
}

.contato__select-wrapper {
  position: relative;
  width: 100%;
}

.contato__select {
  width: 100%;
  height: 44px;
  background-color: var(--color-input-bg);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--color-gray-light);
  border-radius: 4px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.contato__select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  pointer-events: none;
}

.contato__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  background-color: var(--color-accent);
  border-radius: 100px;
  font-size: 15px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  margin-top: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contato__submit:hover {
  background-color: #a84808;
}

.contato__submit-icon {
  width: 16px;
  height: 16px;
  color: var(--color-white);
}

.contato__submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contato__feedback {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contato__feedback--active {
  display: block;
  animation: fadeInFeedback 0.4s ease forwards;
}

@keyframes fadeInFeedback {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contato__feedback--success {
  background-color: #ecfdf5;
  color: #047857;
  border: 1px solid #10b981;
}

.contato__feedback--error {
  background-color: #fef2f2;
  color: #b91c1c;
  border: 1px solid #ef4444;
}

/* --- Card Representante Comercial --- */
.contato__rep-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.contato__rep-card:hover {
  border-color: rgba(200, 100, 20, 0.25);
  box-shadow: 0 8px 32px rgba(200, 100, 20, 0.08);
}

.contato__rep-photo {
  position: relative;
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  background: none;
  padding: 0;
  cursor: pointer;
  outline: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
}

.contato__rep-photo:hover,
.contato__rep-photo:focus-visible {
  transform: scale(1.08);
  border-color: var(--color-accent);
  box-shadow: 0 0 25px rgba(199, 88, 10, 0.45);
}

.contato__rep-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.35s ease;
}

.contato__rep-photo:hover img {
  transform: scale(1.05);
}

.contato__rep-photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 42, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contato__rep-photo:hover .contato__rep-photo-overlay,
.contato__rep-photo:focus-visible .contato__rep-photo-overlay {
  opacity: 1;
}

/* ============================================================
   BLOCO: LIGHTBOX MODAL (VISUALIZAÇÃO AMPLIADA DE FOTO)
   ============================================================ */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 15, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lightbox-modal__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  width: 100%;
  background: linear-gradient(145deg, rgba(25, 33, 58, 0.95), rgba(6, 15, 42, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(199, 88, 10, 0.2);
  transform: scale(0.9);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-modal--open .lightbox-modal__content {
  transform: scale(1);
}

.lightbox-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 24px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lightbox-modal__close:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.1);
}

.lightbox-modal__figure {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.lightbox-modal__img {
  width: 100%;
  max-height: 65vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.lightbox-modal__caption {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lightbox-modal__name {
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: var(--color-white);
  letter-spacing: 1px;
}

.lightbox-modal__role {
  font-size: 13px;
  color: var(--color-accent);
  font-weight: var(--fw-regular);
}

.contato__rep-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contato__rep-name {
  font-size: 16px;
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  letter-spacing: 1.5px;
  line-height: 1.2;
}

.contato__rep-role {
  display: inline-block;
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.contato__rep-desc {
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: var(--color-gray);
  line-height: 1.55;
  margin-bottom: 12px;
}

.contato__rep-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contato__rep-phone:hover {
  color: var(--color-accent);
}

.contato__rep-phone-icon {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* ============================================================
   BLOCO: FOOTER
   ============================================================ */
.footer {
  width: 100%;
  background-color: var(--color-primary);
  padding: 34px 0;
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo {
  flex-shrink: 0;
  height: 44px;
}

.footer__logo-img {
  height: 100%;
  width: auto;
}

.footer__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  margin-top: 10px;
  flex-wrap: wrap;
}

.footer__link {
  font-size: 14px;
  font-weight: var(--fw-regular);
  color: var(--color-white);
  white-space: nowrap;
  transition: color 0.3s ease;
}

.footer__link:hover {
  color: var(--color-accent);
}

.footer__copyright {
  margin: 0;
  font-size: 13px;
  font-weight: var(--fw-regular);
  color: var(--color-gray-light);
  line-height: 1.5;
}

/* ============================================================
   MEDIA QUERIES — RESPONSIVIDADE
   ============================================================ */

/* ---------- Notebooks intermediários e telas médias (1024px – 1280px) ---------- */
@media (max-width: 1280px) {
  .potencia__container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .potencia__header {
    grid-column: 1 / -1;
  }

  .potencia__card--cafe-destaque {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 440px;
  }

  .potencia__card--alimentos,
  .potencia__card--sucos {
    grid-row: auto;
    height: 300px;
    min-height: 300px;
    max-height: 300px;
  }

  .potencia__card--alimentos {
    grid-column: 1;
  }

  .potencia__card--sucos {
    grid-column: 2;
  }
}

/* ---------- Tablets & Laptops Pequenos (768px – 1023px) ---------- */
@media (max-width: 1023px) {
  .nav__hamburger {
    display: flex;
    position: relative;
    z-index: 1005;
  }

  .nav__logo {
    position: relative;
    z-index: 1005;
  }

  .nav__menu {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(6, 15, 42, 0.94);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.96);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
  }

  .nav__menu--open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav__link {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }

  .nav__menu--open .nav__link {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__menu--open .nav__link:nth-child(1) {
    transition-delay: 0.08s;
  }

  .nav__menu--open .nav__link:nth-child(2) {
    transition-delay: 0.12s;
  }

  .nav__menu--open .nav__link:nth-child(3) {
    transition-delay: 0.16s;
  }

  .nav__menu--open .nav__link:nth-child(4) {
    transition-delay: 0.20s;
  }

  .nav__menu--open .nav__link:nth-child(5) {
    transition-delay: 0.24s;
  }

  .nav__menu--open .nav__link:nth-child(7) {
    transition-delay: 0.28s;
  }

  .nav__menu-cta-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #c0560a, #e66d15);
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(230, 109, 21, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.32s, transform 0.3s ease 0.32s, background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .nav__menu--open .nav__menu-cta-mobile {
    opacity: 1;
    transform: translateY(0);
  }

  .nav__overlay {
    display: none !important;
  }

  .nav__cta {
    display: none;
  }

  .nav__separator {
    width: 60px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
  }

  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 140px;
  }

  .hero__stats {
    width: 100%;
    margin-top: 20px;
  }

  .hero__stats-divider {
    height: 120px;
  }

  .quem-somos__container {
    grid-template-columns: 1fr;
  }

  .quem-somos__bg-globe {
    width: 70%;
  }

  .brasil-europa__container {
    grid-template-columns: 1fr;
  }

  .brasil-europa__right {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 1;
    display: flex;
    justify-content: center;
  }

  .brasil-europa__event {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

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

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

/* ---------- Mobile (até 767px) ---------- */
@media (max-width: 767px) {
  section[id] {
    scroll-margin-top: 70px;
  }

  .nav {
    height: 70px;
  }

  .nav__logo {
    height: 28px;
  }

  .hero__title {
    font-size: 26px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__btn {
    width: 100%;
  }

  .hero__stats {
    display: none;
  }

  .barra {
    height: 54px;
  }

  .quem-somos {
    border-radius: 0 0 16px 16px;
  }

  .quem-somos__cards {
    flex-direction: column;
  }

  .potencia {
    border-radius: 16px;
  }

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

  .potencia__card--alimentos,
  .potencia__card--sucos {
    grid-column: 1;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }

  .potencia__card--cafe-destaque {
    grid-column: 1;
    height: 420px;
    min-height: 420px;
  }

  .potencia__product--cafe,
  .potencia__product--alimentos,
  .potencia__product--sucos {
    height: 100%;
  }

  .marcas__backdrop {
    flex-direction: column;
    height: auto;
  }

  .marcas__panel {
    flex: none;
    height: 200px;
    transition: none;
  }

  .marcas__panel:hover,
  .marcas__panel:focus-visible {
    flex: none;
    height: 320px;
  }

  .marcas__backdrop:has(.marcas__panel:hover) .marcas__panel:not(:hover),
  .marcas__backdrop:has(.marcas__panel:focus-visible) .marcas__panel:not(:focus-visible) {
    flex: none;
    height: 200px;
  }

  .marcas__panel+.marcas__panel {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .marcas__panel-label,
  .marcas__panel-tag {
    opacity: 1;
    transform: translateY(0);
  }

  .brasil-europa__bg {
    border-radius: 16px;
  }

  .brasil-europa__cards {
    flex-direction: column;
  }

  .contato__field--row {
    grid-template-columns: 1fr;
  }

  /* Card Paulo Castro (Mobile Centered & Improved) */
  .contato__rep-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    gap: 16px;
    margin-top: 32px;
  }

  .contato__rep-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }

  .contato__rep-info {
    align-items: center;
    text-align: center;
  }

  .contato__rep-name {
    text-align: center;
  }

  .contato__rep-role {
    text-align: center;
  }

  .contato__rep-desc {
    text-align: center;
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-gray);
    max-width: 320px;
    margin: 0 auto;
  }

  /* Rodapé (Mobile Centered) */
  .footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
  }

  .footer__logo {
    display: flex;
    justify-content: center;
  }

  .footer__menu {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
    width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
  }

  .footer__copyright {
    text-align: center;
  }

  .footer__legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px 16px;
  }

  .footer__legal-sep {
    display: none;
  }
}

/* ============================================================
   PÁGINAS LEGAIS (.legal-page)
   ============================================================ */
.legal-page {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 120px 0 80px 0;
  min-height: 80vh;
}

.legal-page__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.legal-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-gray-light);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 24px;
  transition: color 0.3s ease;
}

.legal-page__back:hover {
  color: var(--color-accent);
}

.legal-page__back svg {
  width: 18px;
  height: 18px;
}

.legal-page__tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(199, 88, 10, 0.15);
  border: 1px solid rgba(199, 88, 10, 0.4);
  border-radius: 50px;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.legal-page__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
  color: var(--color-white);
}

.legal-page__date {
  font-size: 13px;
  color: var(--color-gray-light);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page__body {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

.legal-page__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 36px;
  margin-bottom: 16px;
}

.legal-page__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-page__body p {
  margin-bottom: 16px;
}

.legal-page__body ul {
  margin-bottom: 20px;
  padding-left: 24px;
}

.legal-page__body li {
  margin-bottom: 8px;
}

.legal-page__body a {
  color: var(--color-accent);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.legal-page__body a:hover {
  opacity: 0.8;
}

.legal-page__footer-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--color-card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-page__footer-cta p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  margin: 0;
}

/* ============================================================
   RODAPÉ LINKS LEGAIS (.footer__legal)
   ============================================================ */
.footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__legal-link,
.footer__legal-btn {
  font-size: 13px;
  color: var(--color-gray-light);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
  font-family: inherit;
  line-height: 1.5;
}

.footer__legal-link:hover,
.footer__legal-btn:hover {
  color: var(--color-accent);
}

.footer__legal-sep {
  color: var(--color-gray-light);
  font-size: 13px;
  opacity: 0.4;
}

/* ============================================================
   BANNER / POPUP DE COOKIES (.cookie-banner)
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999999;
  max-width: 440px;
  width: calc(100% - 48px);
  padding: 24px;
  background: rgba(25, 33, 58, 0.96);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.cookie-banner--hidden {
  opacity: 0 !important;
  transform: translateY(40px) !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.cookie-banner--visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.cookie-banner__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-banner__close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.cookie-banner__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.cookie-banner__icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.cookie-banner__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.cookie-banner__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.cookie-banner__desc a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  font-family: inherit;
}

.cookie-banner__btn--accept {
  background: linear-gradient(135deg, #c0560a, #e66d15);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(230, 109, 21, 0.3);
}

.cookie-banner__btn--accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 109, 21, 0.45);
}

.cookie-banner__btn--reject {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .cookie-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }
}