/* ============================================
   BOTERA - Vanilla CSS
   Colonial Chic meets Wild Jungle
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
  /* Colors */
  --forest: hsl(150, 23%, 14%);
  --forest-light: hsl(150, 20%, 20%);
  --forest-dark: hsl(150, 25%, 8%);
  --gold: hsl(43, 65%, 52%);
  --gold-light: hsl(43, 70%, 65%);
  --gold-dark: hsl(43, 60%, 40%);
  --cream: hsl(60, 11%, 96%);
  --cream-dark: hsl(60, 8%, 90%);
  --coffee-red: hsl(355, 58%, 31%);

  /* Gradients */
  --gradient-hero: linear-gradient(180deg, hsla(150, 23%, 14%, 0.3) 0%, hsla(150, 23%, 14%, 0.95) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(43, 65%, 52%) 0%, hsl(43, 60%, 40%) 100%);

  /* Shadows */
  --shadow-elegant: 0 25px 50px -12px hsla(0, 0%, 0%, 0.5);
  --shadow-card: 0 10px 40px -10px hsla(0, 0%, 0%, 0.4);

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;

  /* Spacing */
  --container-padding: 1.5rem;
  --section-padding: 6rem 0;
}

@media (min-width: 1024px) {
  :root {
    --container-padding: 3rem;
    --section-padding: 8rem 0;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--forest);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.15;
}

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

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

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

ul {
  list-style: none;
}

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

/* Utility Classes */
.hidden {
  display: none !important;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.delay-200 { animation-delay: 0.2s; }
.delay-400 { animation-delay: 0.4s; }
.delay-600 { animation-delay: 0.6s; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: hsla(150, 23%, 14%, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid hsla(150, 15%, 25%, 0.2);
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  background-color: hsla(43, 65%, 52%, 0.1);
}

.logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-icon img {
  padding: 2px;
  width: 100%;
  height: 100%;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

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

.nav-desktop a {
  color: hsla(60, 11%, 96%, 0.8);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--gold);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.nav-desktop a.active,
.nav-mobile a.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold); 
    padding-bottom: 4px; 
    font-weight: 500; 
}

.nav-mobile a.active {
    border-bottom: none;
    border-left: 4px solid #D4AF37;
    padding-left: 10px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language Selector */
.lang-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid hsla(150, 15%, 25%, 0.3);
  border-radius: 9999px;
  padding: 0.375rem 0.75rem;
}

.globe-icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.lang-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: hsla(60, 11%, 96%, 0.6);
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--cream);
}

.lang-btn.active {
  color: var(--gold);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: flex;
  color: var(--cream);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.nav-mobile {
  padding: 1.5rem var(--container-padding);
  border-top: 1px solid hsla(150, 15%, 25%, 0.2);
  animation: fadeIn 0.3s ease;
}

@media (min-width: 1024px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  color: hsla(60, 11%, 96%, 0.8);
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: 5rem;
}

.hero-tagline {
  color: var(--gold);
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1rem;
  }
}

.hero-headline {
  font-size: 2.5rem;
  color: var(--cream);
  margin-bottom: 2rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4.5rem;
  }
}

@media (min-width: 1280px) {
  .hero-headline {
    font-size: 6rem;
  }
}

.hero-midle{
  font-size: 2rem;
  color: var(--cream);
  text-wrap: balance;
}

@media (min-width: 768px) {
  .hero-midle {
    font-size: 2.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: hsla(60, 11%, 96%, 0.8);
  max-width: 42rem;
  margin: 0 auto 3rem;
  font-weight: 300;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.btn svg {
  width: 20px;
  height: 20px;
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--forest);
  box-shadow: 0 4px 20px hsla(43, 65%, 52%, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px hsla(43, 65%, 52%, 0.4);
}

.btn-hero {
  background-color: hsla(60, 11%, 96%, 0.1);
  color: var(--cream);
  border: 1px solid hsla(60, 11%, 96%, 0.2);
}

.btn-hero:hover {
  background-color: hsla(60, 11%, 96%, 0.2);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  animation: bounce 2s infinite;
}

.scroll-text {
  color: hsla(60, 11%, 96%, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.hero-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, hsla(43, 65%, 52%, 0.3), transparent);
}

/* ============================================
   SECTION COMPONENTS
   ============================================ */
.section-cream {
  background-color: var(--cream);
  color: var(--forest);
  padding: var(--section-padding);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

/*.label-line {
  width: 48px;
  height: 1px;
  background-color: var(--gold);
}*/

.label-line {
  height: 1px;
  width: 40px;
  background-color: var(--gold);
  opacity: 0.7;
}

.section-label span {
  color: var(--gold);
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}
/*.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem auto;
}*/

.section-label-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  color: var(--gold);
}

.section-headline-light {
  font-size: 2.5rem;
  color: var(--cream);
}

@media (min-width: 768px) {
  .section-headline-light {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .section-headline-light {
    font-size: 3.75rem;
  }
}

.section-subtitle-light {
  color: hsla(60, 11%, 96%, 0.7);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 1rem auto 0;
}


/* ============================================
   NARRATIVE SECTION
   ============================================ */
.narrative-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .narrative-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.narrative-text {
  order: 2;
}

@media (min-width: 1024px) {
  .narrative-text {
    order: 1;
  }
}

.narrative-headline {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .narrative-headline {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .narrative-headline {
    font-size: 3.75rem;
  }
}

.narrative-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: hsla(150, 23%, 14%, 0.7);
  font-style: italic;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .narrative-subtitle {
    font-size: 1.5rem;
  }
}

.narrative-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: hsla(150, 23%, 14%, 0.8);
  line-height: 1.7;
}

.heritage-card {
  margin-top: 3rem;
  padding: 2rem;
  background-color: hsla(150, 23%, 14%, 0.05);
  border-left: 4px solid var(--gold);
}

.heritage-card h3 {
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.heritage-card p {
  color: hsla(150, 23%, 14%, 0.7);
  line-height: 1.7;
}

.narrative-image {
  order: 1;
  position: relative;
}

@media (min-width: 1024px) {
  .narrative-image {
    order: 2;
  }
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-elegant);
}

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

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(150, 23%, 14%, 0.3), transparent);
}

.image-frame {
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 1px solid hsla(43, 65%, 52%, 0.3);
  border-radius: 2px;
  z-index: -1;
}

/* ============================================
   ESSENCE SECTION
   ============================================ */
.essence-section {
  background-color: var(--forest);
  padding: var(--section-padding);
  color: var(--cream);
  position: relative;
}

.vision-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding: 2rem;
  background: hsla(150, 20%, 20%, 0.3); /* Ligeiramente mais claro que o fundo */
  border: 1px solid hsla(43, 65%, 52%, 0.2);
  border-radius: 4px;
  position: relative;
}

.vision-icon {
  color: var(--gold);
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem auto;
}

.vision-icon svg {
  width: 100%;
  height: 100%;
}

.vision-title {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.vision-quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
}

@media (min-width: 768px) {
  .vision-quote {
    font-size: 2rem;
  }
}

/* --- ACCORDION STYLES --- */
.values-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: var(--cream);
  margin-bottom: 1rem;
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: var(--cream-dark);
}

.acc-icon {
  color: var(--forest);
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
}

.acc-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--forest);
  flex-grow: 1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.acc-toggle {
  font-size: 1.5rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.3s ease;
}

/*cor icone do acordiation*/
.icon-gold{
  stroke: var(--gold);
}

/* Estado Ativo do Acordeão */
.accordion-item.active {
  box-shadow: var(--shadow-card);
}

.accordion-item.active .acc-toggle {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background-color: var(--cream);
  border-top: 1px solid hsla(150, 23%, 14%, 0.1);
}

.acc-inner {
  margin-top: 10px;
  padding: 0 1.5rem 1.5rem 4.5rem; /* Indentado para alinhar com o texto do titulo */
  color: var(--forest-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .acc-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
  }
  .acc-icon {
    margin-right: 1rem;
  }
}

/* ============================================
   TIMELINE SECTION
   ============================================ */
.timeline-section {
  background-color: var(--forest);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

.timeline-texture {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCI+CjxyZWN0IHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgZmlsbD0ibm9uZSIvPgo8Y2lyY2xlIGN4PSIzMCIgY3k9IjMwIiByPSIxIiBmaWxsPSIjZmZmIi8+Cjwvc3ZnPg==");
}

.timeline {
  position: relative;
}

.timeline-line {
  display: none;
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, hsla(43, 65%, 52%, 0.5), var(--gold), hsla(43, 65%, 52%, 0.5));
}

@media (min-width: 1024px) {
  .timeline-line {
    display: block;
  }
}

.timeline-events {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .timeline-events {
    gap: 0;
  }
}

.timeline-event {
  position: relative;
}

@media (min-width: 1024px) {
  .timeline-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.timeline-content {
  max-width: 28rem;
}

@media (min-width: 1024px) {
  .timeline-content {
    padding: 4rem 0;
  }

  .timeline-event:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 4rem;
    margin-left: auto;
  }

  .timeline-event:nth-child(even) .timeline-content {
    grid-column: 2;
    padding-left: 4rem;
  }
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.timeline-year-line {
  width: 32px;
  height: 1px;
  background-color: var(--gold);
}

@media (min-width: 1024px) {
  .timeline-year-line {
    display: none;
  }
}

.timeline-year span {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
}

@media (min-width: 768px) {
  .timeline-year span {
    font-size: 3rem;
  }
}

.timeline-title {
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .timeline-title {
    font-size: 1.875rem;
  }
}

.timeline-description {
  color: hsla(60, 11%, 96%, 0.7);
  line-height: 1.7;
}

.timeline-node {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--forest);
  border: 2px solid var(--gold);
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .timeline-node {
    display: flex;
  }
}

.timeline-node-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--gold);
}
/* ============================================
   ECOSSISTEMA - CARTÕES + LINHAS CONECTORAS
   ============================================ */

/* --- Estilos Gerais (Mantidos) --- */
.section-header-left {
  text-align: left;
  margin-bottom: 3rem;
  max-width: 800px;
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.saf-headline {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .saf-headline {
    font-size: 3rem;
  }
}

.saf-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: hsla(150, 23%, 14%, 0.7);
  font-style: italic;
  margin-bottom: 2rem;
}

/* Container Flex */
.infographic-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

/* Imagem Central */
.image-column {
  order: 1; /* Mobile: Imagem primeiro */
  width: 100%;
  max-width: 500px;
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2; /* Fica acima das linhas se necessário */
}

.image-wrapper-shadow {
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.05));
}

.main-illustration {
  width: 100%;
  height: auto;
  display: block;
}

.badges-container {
  display: flex;
  justify-content: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
}

.badges-img {
  height: 60px; /* Ajustei um pouco para o selo ficar visível */
  width: auto;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

/* Colunas de Cards */
.info-column {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 5; /* Garante que o hover funciona */
}

/* --- ESTILO DOS CARTÕES --- */
.info-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  /* Importante: permite que a linha saia do cartão sem ser cortada se usarmos overflow visível,
     mas como queremos hover limpo, vamos posicionar a linha com z-index negativo */
}

.card-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-icon {
  width: 48px;
  height: 48px;
  background-color: var(--forest);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

.info-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--forest-light);
  line-height: 1.6;
}

/* LINHAS CONECTORAS (Padrão: Escondidas) */
.connector-line {
  display: none;
}


/* ============================================
   DESKTOP (LINHAS DOURADAS + LAYOUT LADO A LADO)
   ============================================ */
@media (min-width: 1024px) {
  .section-headline-dark {
    font-size: 3rem;
  }

  .infographic-container {
    flex-direction: row;
    align-items: center; /* Alinha tudo ao centro vertical */
    justify-content: space-between;
    gap: 1rem; /* Gap menor porque usaremos margens nos cards */
  }

  .image-column {
    order: 2;
    flex: 0 0 34%; /* Imagem no centro (ajustei largura para caber linhas) */
  }

  .info-column {
    flex: 0 0 30%; /* Colunas laterais */
    gap: 4rem; /* Espaço vertical entre cards */
  }

  .col-left { order: 1; }
  .col-right { order: 3; }
  
  /* --- MOSTRAR LINHAS CONECTORAS --- */
  .connector-line {
    display: block;
    position: absolute;
    top: 50%; /* Centro vertical do cartão */
    width: 60px; /* Comprimento da linha */
    height: 1px;
    background-color: var(--gold);
    z-index: -1; /* Fica atrás do cartão */
  }
  
  /* Bolinha na ponta da linha (Opcional, para ficar igual ao design original) */
  .connector-line::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    top: -2.5px; /* Alinhar com a linha */
  }

  /* Linhas da Esquerda (Apontam para a Direita -> Imagem) */
  .line-right-pointing {
    right: -60px; /* Sai 60px para a direita do cartão */
  }
  
  .line-right-pointing::after {
    right: 0; /* Bolinha na ponta direita */
  }

  /* Linhas da Direita (Apontam para a Esquerda -> Imagem) */
  .line-left-pointing {
    left: -60px; /* Sai 60px para a esquerda do cartão */
  }
  
  .line-left-pointing::after {
    left: 0; /* Bolinha na ponta esquerda */
  }
  
  /* Ajuste Fino para "Abraçar" a Imagem */
  /* Movemos a coluna direita ligeiramente para baixo para criar dinamismo */
  .col-right {
    padding-top: 3rem; 
  }
  
  /* Garante que os cards estão visíveis acima das linhas */
  .info-card {
    z-index: 10;
  }
}

/* ============================================
   COFFEE PROFILE SECTION
   ============================================ */
.coffee-grid {
  display: grid;
  gap: 4rem;
}

@media (min-width: 1024px) {
  .coffee-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.coffee-headline {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .coffee-headline {
    font-size: 3rem;
  }
}

.coffee-subtitle {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 2.5rem;
}

.coffee-image-wrapper {
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow-card);
}

.coffee-image-wrapper img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.certification {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.certification-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid hsla(150, 23%, 14%, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.certification-icon svg {
  width: 24px;
  height: 24px;
  color: var(--forest);
}

.certification p {
  font-size: 0.875rem;
  color: hsla(150, 23%, 14%, 0.7);
  font-style: italic;
}

/* Coffee Details Card */
.coffee-details {
  background-color: var(--forest);
  padding: 2rem;
  border-radius: 2px;
  box-shadow: var(--shadow-elegant);
}

@media (min-width: 1024px) {
  .coffee-details {
    padding: 3rem;
  }
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  border-bottom: 1px solid hsla(150, 15%, 25%, 0.3);
  padding-bottom: 1rem;
}

.detail-label {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.detail-value {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.125rem;
}

.terroir-section {
  margin-bottom: 2.5rem;
}

/*.terroir-title,
.flavor-title {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}*/

.terroir-description {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: white;
  font-style: italic;
  margin-bottom: 1rem;
}

.flavor-section {
  margin-top: -0.5rem;
}

.terroir-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.terroir-tag {
  padding: 0.5rem 1rem;
  border: 1px solid hsla(43, 65%, 52%, 0.3);
  border-radius: 9999px;
  color: var(--cream);
  font-size: 0.875rem;
}

.flavor-bars {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.flavor-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.flavor-header {
  display: flex;
  justify-content: space-between;
}

.flavor-name {
  color: var(--cream);
  font-size: 0.875rem;
}

.flavor-value {
  color: hsla(43, 65%, 52%, 0.7);
  font-size: 0.90rem;
}

.flavor-bar {
  height: 4px;
  background-color: hsla(150, 15%, 25%, 0.3);
  border-radius: 9999px;
  overflow: hidden;
}

.flavor-bar-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 9999px;
  transition: width 1s ease;
}

/* ============================================
   SUSTAINABILITY & IMPACT SECTION
   ============================================ */
.sustainability {
  background-color: var(--forest);
  padding: 6rem 0; /* Ajuste no padding para dar ar */
  color: var(--cream);
}

/* --- STATS GRID (Mantido) --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Mobile: 2 colunas */
  gap: 1.5rem;
  margin-bottom: 5rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr); /* Desktop: 4 colunas */
  }
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid hsla(150, 15%, 25%, 0.3);
  border-radius: 2px;
  background-color: hsla(150, 20%, 20%, 0.3);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .stat-value {
    font-size: 3rem;
  }
}

.stat-label {
  font-size: 0.8rem;
  color: hsla(60, 11%, 96%, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- NEW IMPACT PILLARS GRID (Substitui o layout antigo) --- */
.impact-pillars-grid {
  display: grid;
  grid-template-columns: 1fr; /* Mobile: 1 coluna */
  gap: 2rem;
}

@media (min-width: 1024px) {
  .impact-pillars-grid {
    grid-template-columns: repeat(3, 1fr); /* Desktop: 3 colunas */
    align-items: stretch; /* Mesma altura */
  }
}

/* Estilo do Cartão de Impacto (Baseado no teu .pillar-card) */
.impact-card {
  padding: 2rem;
  background-color: hsla(150, 20%, 20%, 0.4); /* Ligeiramente transparente */
  border-radius: 2px;
  border: 1px solid hsla(150, 15%, 25%, 0.3);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.impact-card:hover {
  border-color: var(--gold);
  background-color: hsla(150, 20%, 20%, 0.6);
  transform: translateY(-5px);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid hsla(150, 15%, 25%, 0.3);
  padding-bottom: 1rem;
}

.pillar-icon {
  color: var(--gold);
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.35rem; /* Ajustado para caber bem */
  color: var(--cream);
  margin: 0;
}

/* Lista de Impacto (Checklist) */
.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: hsla(60, 11%, 96%, 0.8);
  line-height: 1.6;
}

/* O "Check" Dourado via CSS puro */
.impact-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 14px;
  height: 14px;
  /* SVG Check encoded */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.impact-list li strong {
  color: var(--gold);
  font-weight: 600;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: var(--forest-dark);
  border-top: 1px solid hsla(150, 15%, 25%, 0.2);
  padding: 4rem 0;
}

@media (min-width: 1024px) {
  .footer {
    padding: 5rem 0;
  }
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-description {
  font-size: 0.875rem;
  color: hsla(60, 11%, 96%, 0.6);
  line-height: 1.7;
}

.footer-column-title {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.footer-links li,
.footer-nav li,
.footer-legal li {
  margin-bottom: 0.75rem;
}

.footer-links a,
.footer-nav a,
.footer-legal a {
  color: hsla(60, 11%, 96%, 0.7);
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--gold);
}

.footer-links li:not(:has(a)) {
  color: hsla(60, 11%, 96%, 0.7);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid hsla(150, 15%, 25%, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  font-size: 0.875rem;
  color: hsla(60, 11%, 96%, 0.5);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-links a {
  color: hsla(60, 11%, 96%, 0.5);
  transition: var(--transition-fast);
}

.social-links a:hover {
  color: var(--gold);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: var(--section-padding);
}

/* Container Grid */
.territory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .territory-grid {
    grid-template-columns: 2fr 1fr; /* Jimbo ocupa 2/3, Texto Lateral 1/3 */
    align-items: start;
  }
}

.map-headline {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 2rem;
}

/* --- JIMBO CARD (Premium) --- */
.featured-jimbo {
  background-color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.featured-jimbo:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
  .featured-jimbo {
    flex-direction: row; /* Desktop/Tablet: Imagem lado a lado com texto */
    height: auto;
    min-height: 300px;
  }
  
  .featured-jimbo .farm-image-wrapper {
    width: 45%;
    height: auto;
  }
  
  .featured-jimbo .farm-content {
    width: 55%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.farm-image-wrapper {
  position: relative;
  height: 250px; /* Mobile height */
}

.farm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-featured {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--gold);
  color: var(--forest-dark);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 10px;
  text-transform: uppercase;
  border-radius: 2px;
}

.farm-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.farm-content h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.farm-desc {
  color: var(--forest-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Pills de Estatística */
.jimbo-stats-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.stat-pill {
  background: var(--cream);
  border: 1px solid rgba(10, 31, 20, 0.05);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  text-align: center;
}

.pill-val {
  display: block;
  font-weight: 700;
  color: var(--forest); /*--gold-dark*/
  font-size: 1.1rem;
}

.pill-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--forest-light);
  letter-spacing: 0.05em;
}

/* Botão com Seta */
.btn-gold-arrow {
  color: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.btn-gold-arrow:hover {
  gap: 1rem; /* Seta move-se */
}

/* --- BLOCO DE CONEXÃO (Texto Lateral / Light Veraion) --- */
.connection-block {
  background: transparent;
  padding: 1.5rem;
  border-left: 1px solid var(--gold); /* Linha fina à esquerda */
}

.connection-icon {
color: var(--gold);
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  /* Círculo verde escuro para ícone dourado brilhar */
  background-color: var(--forest);
  padding: 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.connection-block h4 {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.connection-desc {
  font-size: 0.9rem;
  color: var(--forest-light);
  line-height: 1.7;
}

.connection-desc strong {
  color: var(--forest);
  font-weight: 700;
}

/* Visual da Rota (Pontinhos) */
.route-line-visual {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding: 0 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  background-color: var(--gold); /*-forest*/
  border-radius: 50%;
}

.line {
  height: 1px;
  background-color: var(--gold-dark);
  flex-grow: 1;
  margin: 0 5px;
}

.route-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color:var(--forest-light);
  text-transform: uppercase;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
   
.gallery-section {
  padding: var(--section-padding);
}

.gallery-headline {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .gallery-headline {
    font-size: 3rem;
  }
}

.gallery-subtitle {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: hsla(150, 23%, 14%, 0.7);
  font-style: italic;
  margin-bottom: 2rem;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsla(150, 23%, 14%, 0.7);
  background: transparent;
  border: 1px solid hsla(150, 23%, 14%, 0.2);
  border-radius: 9999px;
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  color: var(--forest);
  border-color: var(--gold);
}

.filter-btn.active {
  color: var(--cream);
  background: var(--forest);
  border-color: var(--forest);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
}

.gallery-item {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(150, 23%, 14%, 0.9), transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}

.gallery-overlay p {
  font-size: 0.875rem;
  color: hsla(60, 11%, 96%, 0.7);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: hsla(150, 23%, 14%, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.lightbox:not(.hidden) {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.5rem;
  color: var(--cream);
  transition: var(--transition-smooth);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--gold);
  transform: scale(1.2);
}

.lightbox img {
  max-width: 90%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: var(--shadow-elegant);
}

.lightbox-info {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--cream);
}

.lightbox-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lightbox-info p {
  font-size: 0.875rem;
  color: hsla(60, 11%, 96%, 0.7);
}

/* ============================================
   NEWSLETTER SECTION (FAIXA HORIZONTAL)
   ============================================ */
.newsletter-section {
  background-color: var(--forest);
  color: var(--cream);
  padding: 4rem 0;
}

.newsletter-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.newsletter-text {
  flex: 1;
  max-width: 600px;
}

.newsletter-text h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.newsletter-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.5;
}

.newsletter-action {
  flex: 1;
  max-width: 500px;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cream);
  font-family: var(--font-body);
}

.newsletter-form input::placeholder {
  color: rgba(249, 246, 240, 0.6);
}

.newsletter-privacy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================
   PARTNERS SECTION (FAIXA HORIZONTAL)
   ============================================ */
.partners-section {
  background-color: var(--cream);
  padding: 4rem 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.partners-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.partners-label {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 600;
}

.partners-line {
  width: 60px;
  height: 1px;
  background-color: var(--gold);
}

.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5rem;
}

.logo-item img {
  height: 55px; /* Tamanho elegante */
  width: auto;
  display: block;
  filter: grayscale(100%) opacity(0.5) contrast(0.8);
  transition: all 0.4s ease;
  cursor: pointer;
}

.logo-item img:hover {
  filter: grayscale(0%) opacity(1) contrast(1);
  transform: scale(1.05);
}

/* ============================================
   RESPONSIVIDADE (MOBILE)
   ============================================ */
@media (max-width: 900px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .newsletter-form {
    flex-direction: column;
  }

  .logos-grid {
    gap: 3rem;
    flex-direction: column;
  }
}

/* --- BANNER DE COOKIES PREMIUM (Mais Baixinho e Largo) --- */
.cookie-banner {
    position: fixed;
    bottom: 25px; /* Fica um bocadinho mais rente ao fundo */
    left: 50%;
    transform: translateX(-50%);
    width: 95%; 
    max-width: 1050px; 
    background-color: var(--color-dark, #1A2F23);
    color: white;
    padding: 12px 30px; /* DIETA: Reduzido de 20px para 12px na vertical */
    border-radius: 8px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px; 
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cookie-banner.hidden { 
    display: none !important; 
}

.cookie-content {
    flex: 1; 
}

.cookie-content p { 
    margin: 0; 
    font-size: 0.9rem; /* Letra ligeiramente mais compacta */
    line-height: 1.4;  /* Menos espaço morto entre as linhas */
}

.cookie-content a { 
    color: #D4AF37; 
    text-decoration: underline; 
    font-weight: 600;
}

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

/* Ajuste específico para os botões do banner ficarem mais baixos */
.btn-outline-cookie, #accept-cookies {
    padding: 8px 18px !important; /* Mais baixinhos */
    font-size: 0.8rem !important; /* Texto proporcional */
}

.btn-outline-cookie {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.5); 
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-cookie:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 900px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px 20px;
        bottom: 15px;
    }
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-buttons {
        flex-direction: column-reverse; 
    }
    .btn-outline-cookie, #accept-cookies {
        width: 100%;
    }
}