/* ==========================================================================
   MELIPONÁRIO ABELHA RAINHA - SISTEMA DE DESIGN (CSS VANILLA)
   Proprietário: Gabriel Ulisses Barbosa
   Localização: Petecaba, Candeias, BA (-12.677947, -38.448682)
   ========================================================================== */

/* Importação de Fontes Premium */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
  /* ---- Paleta Oficial · Mel, Própolis e Mata Atlântica ----
     Documentação completa dos tokens em README.md > Sistema de Design */
  --primary-color: #E4A22C;       /* Mel Maduro — cor de assinatura da marca */
  --primary-hover: #BD8118;       /* Mel Tostado — estados de hover/foco */
  --primary-soft: #FBEAC7;        /* Mel Diluído — fundos suaves e realces */
  --secondary-color: #3B2B1F;     /* Própolis — marrom profundo, quase preto */
  --secondary-hover: #291D14;     /* Própolis Escuro */
  --accent-color: #5B7A47;        /* Verde Mata Atlântica — natureza e conservação */
  --accent-hover: #48602F;        /* Verde Mata Escuro */

  /* Cores Neutras e Estrutura */
  --bg-light: #FBF7EF;            /* Marfim Quente / Cera de Abelha */
  --bg-card: #FFFFFF;             /* Fundo do Card */
  --text-dark: #241A12;           /* Carvão de Abelha (quase preto) */
  --text-muted: #6C5D4E;          /* Marrom Mudo / Cinza Quente */
  --text-light: #FFFFFF;          /* Branco */
  --border-color: #E8DFCC;        /* Borda Suave de Cera */

  /* Efeitos */
  --shadow-sm: 0 4px 14px rgba(59, 43, 31, 0.05);
  --shadow-md: 0 10px 28px rgba(59, 43, 31, 0.09);
  --shadow-lg: 0 20px 48px rgba(59, 43, 31, 0.14);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Fontes */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-brand: 'Playfair Display', serif;

  /* Motivo de Assinatura: Colmeia (hexágono) — ver README */
  --hex-clip: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

/* ==========================================================================
   ESTILOS DE ACESSIBILIDADE & ALTO CONTRASTE (WCAG)
   ========================================================================== */

/* Barra de Acessibilidade */
.accessibility-bar {
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 8px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  font-family: var(--font-title);
  z-index: 1001;
  position: relative;
}

.accessibility-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.accessibility-bar .accessibility-info {
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.85;
}

.accessibility-bar .accessibility-controls {
  display: flex;
  gap: 12px;
}

.accessibility-bar button {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  padding: 4px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 32px;
}

.accessibility-bar button:hover,
.accessibility-bar button:focus {
  background-color: var(--primary-color);
  color: #1A1A1A;
  border-color: var(--primary-color);
  outline: 2px solid var(--primary-color);
}

/* Modificações globais do Alto Contraste */
body.high-contrast {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  background-image: none !important;
}

body.high-contrast .accessibility-bar {
  border-bottom: 2px solid #FFD700;
}

body.high-contrast .nav-bar,
body.high-contrast footer,
body.high-contrast header,
body.high-contrast section,
body.high-contrast .card,
body.high-contrast .modal-content,
body.high-contrast .map-container,
body.high-contrast .gallery-item {
  background-color: #000000 !important;
  background-image: none !important;
  color: #FFFFFF !important;
  border: 2px solid #FFD700 !important;
  box-shadow: none !important;
}

body.high-contrast h1,
body.high-contrast h2,
body.high-contrast h3,
body.high-contrast h4,
body.high-contrast p,
body.high-contrast li,
body.high-contrast span,
body.high-contrast label,
body.high-contrast time,
body.high-contrast strong {
  color: #FFFFFF !important;
  text-shadow: none !important;
}

body.high-contrast a {
  color: #FFFF00 !important;
  text-decoration: underline !important;
}

body.high-contrast a:hover,
body.high-contrast a:focus {
  color: #FFD700 !important;
  outline: 2px solid #FFD700;
}

body.high-contrast button,
body.high-contrast .btn,
body.high-contrast input,
body.high-contrast textarea,
body.high-contrast select {
  background-color: #111111 !important;
  color: #FFD700 !important;
  border: 2px solid #FFD700 !important;
  border-radius: 4px !important;
  box-shadow: none !important;
}

body.high-contrast button:hover,
body.high-contrast .btn:hover,
body.high-contrast button:focus,
body.high-contrast .btn:focus {
  background-color: #FFD700 !important;
  color: #000000 !important;
  outline: 2px solid #FFFFFF !important;
}

body.high-contrast .accessibility-bar svg path,
body.high-contrast .logo-svg path,
body.high-contrast .logo-svg ellipse,
body.high-contrast .logo-svg circle {
  fill: #FFD700 !important;
  stroke: #FFD700 !important;
}

body.high-contrast .icon-hex,
body.high-contrast .location-icon-wrapper,
body.high-contrast .contact-meta-item .icon {
  background-color: #111111 !important;
  color: #FFD700 !important;
  border: 2px solid #FFD700 !important;
}

body.high-contrast .trust-item svg,
body.high-contrast .hero-tagline svg {
  stroke: #FFD700 !important;
}

body.high-contrast .overlay-content,
body.high-contrast .hero-section::before {
  background: rgba(0, 0, 0, 0.9) !important;
}

/* ==========================================================================
   RESET & ESTILOS GERAIS
   ========================================================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base para rem */
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-title);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   MOTIVO DE ASSINATURA — TRAMA DE COLMEIA (HEXÁGONOS)
   Elemento visual único do site: remete à estrutura real dos favos.
   Aplicado com muita moderação em fundos e molduras de ícone.
   ========================================================================== */

.hex-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='98' viewBox='0 0 56 98'%3E%3Cpath d='M28 0 56 16.3v32.6L28 65.3 0 48.9V16.3z' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.05;
}

.section-alt .hex-pattern,
body.high-contrast .hex-pattern {
  display: none;
}

.icon-hex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  clip-path: var(--hex-clip);
  background-color: var(--primary-soft);
  color: var(--secondary-color);
}

.icon-hex svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* Botões do Tema Geral */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
  min-height: 48px; /* Touch target */
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 4px 12px rgba(228, 162, 44, 0.25);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-hover);
  box-shadow: 0 6px 16px rgba(255, 160, 0, 0.35);
  transform: translateY(-2px);
  outline: 2px solid var(--primary-color);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
  box-shadow: 0 4px 12px rgba(59, 43, 31, 0.25);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--secondary-hover);
  box-shadow: 0 6px 16px rgba(78, 52, 46, 0.35);
  transform: translateY(-2px);
  outline: 2px solid var(--secondary-color);
}

/* ==========================================================================
   CABEÇALHO & MENU (GLASSMORPHISM)
   ========================================================================== */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 253, 249, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.logo-text span {
  color: var(--accent-color);
  font-weight: 600;
}

/* ==========================================================================
   TIPOGRAFIA E ASSINATURA DA MARCA (MELIPONÁRIO & ULISSES BARBOSA)
   ========================================================================== */

.brand-typography {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-name {
  font-family: var(--font-brand);
  font-weight: 800;
  color: var(--text-dark);
  font-style: italic;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
}

.brand-author {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-color);
  letter-spacing: 0.25em;
  margin-top: 6px;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

/* Linhas decorativas laterais para a assinatura */
.brand-author::before,
.brand-author::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1.5px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
  opacity: 0.7;
}

.brand-author::before {
  left: -36px;
}

.brand-author::after {
  right: -36px;
}

/* Modificadores para a Navbar (Logo no topo) */
.nav-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.nav-brand .brand-name {
  font-size: 1.2rem;
  color: var(--text-dark);
}

.nav-brand .brand-author {
  font-size: 0.6rem;
  margin-top: 2px;
  letter-spacing: 0.15em;
  color: var(--secondary-color);
}

.nav-brand .brand-author::before,
.nav-brand .brand-author::after {
  display: none; /* Oculta linhas decorativas no menu para ficar limpo */
}

/* Modificadores para o Hero */
.hero-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-bottom: 24px;
}

.hero-brand .brand-name {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  color: var(--text-light);
}

.hero-brand .brand-name span {
  color: var(--primary-color);
  font-style: normal;
}

.hero-brand .brand-author {
  font-size: clamp(0.75rem, 1.8vw, 1.05rem);
  color: var(--primary-color);
  margin-top: 10px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  padding: 0 8px;
}

.hero-brand .brand-author::before,
.hero-brand .brand-author::after {
  background-color: var(--primary-color);
  width: 32px;
}

.hero-brand .brand-author::before {
  left: -44px;
}

.hero-brand .brand-author::after {
  right: -44px;
}

/* Ajustes Alto Contraste para a Marca */
body.high-contrast .brand-name,
body.high-contrast .brand-author {
  color: #FFFFFF !important;
  text-shadow: none !important;
}

body.high-contrast .brand-author::before,
body.high-contrast .brand-author::after {
  background-color: #FFD700 !important;
}


.nav-menu {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-item a {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-item a:hover::after,
.nav-item a:focus::after {
  width: 100%;
}

.nav-item a:hover,
.nav-item a:focus {
  color: var(--accent-color);
  outline: none;
}

/* Botão Menu Hambúrguer (Mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-height: 44px;
  min-width: 44px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* ==========================================================================
   HERO / BANNER DE ENTRADA
   ========================================================================== */

.hero-section {
  position: relative;
  height: 80vh;
  min-height: 500px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(36, 26, 18, 0.92) 0%, rgba(36, 26, 18, 0.55) 60%, rgba(251, 247, 239, 0) 100%);
  z-index: 2;
}

.hero-section .hex-pattern {
  z-index: 2;
  opacity: 0.06;
}

/* Imagem decorativa de fundo do Hero */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  filter: saturate(1.1) brightness(0.85);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 800px;
  margin-left: 5%;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(228, 162, 44, 0.14);
  border: 1px solid rgba(228, 162, 44, 0.35);
  color: var(--primary-color);
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.82rem;
  margin-bottom: 28px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-tagline svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* Barra de Confiança — reforça credibilidade logo abaixo da chamada principal */
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 500;
  color: #EFEBE9;
}

.trust-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-color);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

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

.hero-text {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 32px;
  max-width: 600px;
  font-weight: 400;
  color: #EFEBE9;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

/* ==========================================================================
   SEÇÕES DE CONTEÚDO
   ========================================================================== */

section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background-color: #FFFBF2;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-subtitle::before {
  content: '';
  width: 10px;
  height: 10px;
  background-color: var(--accent-color);
  clip-path: var(--hex-clip);
  flex-shrink: 0;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--primary-color);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   SOBRE NÓS / HISTÓRIA
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text-content p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.about-text-content strong {
  color: var(--text-dark);
}

.highlight-box {
  border-left: 4px solid var(--primary-color);
  padding: 16px 24px;
  background-color: rgba(228, 162, 44, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-dark) !important;
}

.about-media-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-video {
  width: 100%;
  border-radius: var(--radius-md);
  display: block;
  background-color: #000;
}

.badge-float {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background-color: rgba(38, 28, 20, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--primary-color);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  box-shadow: var(--shadow-md);
  z-index: 10;
}

.badge-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-color);
  font-family: var(--font-title);
  line-height: 1;
}

.badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  line-height: 1.2;
}

/* ==========================================================================
   ESPÉCIES / ABELHAS
   ========================================================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(228, 162, 44, 0.3);
}

.card-header-img {
  height: 200px;
  overflow: hidden;
  position: relative;
  background-color: #eee;
}

.card-header-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-header-img img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: rgba(36, 26, 18, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-light);
  padding: 5px 14px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-footer-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-title);
}

.card-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.card-subtitle {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: block;
}

.card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.card-footer {
  border-top: 1px solid var(--border-color);
  padding: 20px 32px;
  background-color: rgba(255, 253, 249, 0.5);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-link {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

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

/* ==========================================================================
   GALERIA DE FOTOS DO WHATSAPP
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--secondary-color);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(38, 28, 20, 0.9) 0%, rgba(38, 28, 20, 0.2) 60%, rgba(38, 28, 20, 0) 100%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 2;
}

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

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

.gallery-title {
  color: var(--text-light);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-desc {
  color: #EFEBE9;
  font-size: 0.85rem;
}

/* ==========================================================================
   LOCALIZAÇÃO (MAPA LEAFLET E COORDENADAS)
   ========================================================================== */

.location-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.map-container {
  height: 450px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.location-info {
  padding: 16px 0;
}

.location-details {
  list-style: none;
  margin: 24px 0;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 1rem;
}

.location-details li strong {
  display: block;
  color: var(--text-dark);
  font-family: var(--font-title);
  margin-bottom: 4px;
}

.location-details li p {
  color: var(--text-muted);
}

.location-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  clip-path: var(--hex-clip);
  background-color: var(--primary-soft);
  color: var(--secondary-color);
}

.location-icon-wrapper svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

/* ==========================================================================
   FORMULÁRIO DE CONTATO
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-card {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-family: var(--font-title);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #FFFDF9;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent-color);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(91, 122, 71, 0.15);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-cta {
  background-color: rgba(228, 162, 44, 0.08);
  border: 1px dashed var(--primary-color);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 32px;
}

.contact-cta h4 {
  font-size: 1.2rem;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.contact-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-meta-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-meta-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  clip-path: var(--hex-clip);
  background-color: var(--primary-soft);
  color: var(--secondary-color);
}

.contact-meta-item .icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.contact-meta-item .text h5 {
  font-size: 0.9rem;
  color: var(--text-dark);
}

.contact-meta-item .text p {
  font-size: 1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   RODAPÉ
   ========================================================================== */

footer {
  background-color: var(--secondary-hover);
  color: var(--text-light);
  padding: 60px 0 30px 0;
  border-top: 4px solid var(--primary-color);
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-col p {
  color: #D6D2C4;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: #D6D2C4;
}

.footer-col ul li a:hover,
.footer-col ul li a:focus {
  color: var(--primary-color);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: #A39E93;
  font-size: 0.85rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--text-light);
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-credits {
  flex-grow: 1;
}

.footer-credits p {
  margin-bottom: 4px;
}

.footer-credits strong {
  color: var(--primary-color);
}

/* Assinatura e Mascote Bolinho de Chuva */
.mascot-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.04);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mascot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}

.mascot-text {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  line-height: 1.3;
}

.mascot-text strong {
  color: var(--text-light);
}

/* ==========================================================================
   BOTÃO FLUTUANTE DE CONTATO RÁPIDO (WHATSAPP)
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--accent-color);
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

body.high-contrast .whatsapp-float {
  background-color: #111111 !important;
  color: #FFD700 !important;
  border: 2px solid #FFD700 !important;
}

@media (max-width: 480px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ==========================================================================
   MODAL DE VISUALIZAÇÃO DE IMAGEM (LIGHTBOX)
   ========================================================================== */

.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border: 1px solid var(--border-color);
}

.lightbox-caption {
  color: var(--text-light);
  margin-top: 16px;
  font-family: var(--font-title);
  font-size: 1.1rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: var(--text-light);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
}

.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--primary-color);
  outline: 2px solid var(--primary-color);
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE EXTRA)
   ========================================================================== */

@media (max-width: 992px) {
  .about-grid,
  .location-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-media-wrapper {
    order: -1;
  }
}

@media (max-width: 768px) {
  /* Menu responsivo */
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-light);
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .nav-item {
    width: 80%;
    text-align: center;
  }
  
  .nav-item a {
    display: block;
    padding: 16px 0;
    font-size: 1.2rem;
  }
  
  .hero-section {
    height: 70vh;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .mascot-signature {
    width: 100%;
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   ELEMENTOS DE VÍDEO E ADICIONAIS DE GALERIA
   ========================================================================== */

.gallery-item-video {
  position: relative;
}

.video-play-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(228, 162, 44, 0.9);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  z-index: 3;
  transition: var(--transition);
}

.gallery-item:hover .video-play-indicator {
  background-color: var(--primary-hover);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-play-indicator svg {
  width: 28px;
  height: 28px;
}

/* ==========================================================================
   UPGRADES DO LIGHTBOX (SUPORTE A CARROSSEL E VÍDEO)
   ========================================================================== */

.lightbox-media-container {
  position: relative;
  max-width: 100%;
  max-height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.lightbox-video {
  max-width: 100%;
  max-height: 70vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
  outline: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(38, 28, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-light);
  font-size: 2.2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
  min-height: 48px;
  min-width: 48px;
}

.lightbox-nav:hover,
.lightbox-nav:focus {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-color: var(--primary-color);
  outline: none;
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

@media (max-width: 992px) {
  .lightbox-prev {
    left: -20px;
  }
  .lightbox-next {
    right: -20px;
  }
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
  }
  .lightbox-next {
    right: 10px;
  }
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   MODAL DE DETALHES DAS ESPÉCIES DE ABELHAS (ASF)
   ========================================================================== */

.species-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.species-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(38, 28, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.species-modal-content {
  position: relative;
  background-color: var(--bg-card);
  width: 95%;
  max-width: 900px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  z-index: 10;
  animation: modalFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.species-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2.2rem;
  color: var(--text-dark);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
  transition: var(--transition);
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.species-modal-close:hover,
.species-modal-close:focus {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  outline: none;
}

.species-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.species-modal-image-wrapper {
  position: relative;
  height: 100%;
  min-height: 350px;
}

.species-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.species-modal-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background-color: rgba(91, 122, 71, 0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--text-light);
  padding: 6px 16px;
  border-radius: 50px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.species-modal-info {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.species-modal-subtitle {
  color: var(--accent-color);
  font-family: var(--font-title);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.species-modal-title {
  font-size: 2.2rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-family: var(--font-title);
  line-height: 1.2;
}

.species-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  padding: 12px 16px;
  background-color: rgba(228, 162, 44, 0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(228, 162, 44, 0.12);
}

.spec-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
  font-weight: 600;
}

.spec-val {
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
}

.species-modal-text h4 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 20px 0 8px 0;
  color: var(--secondary-color);
  border-bottom: 1.5px solid var(--border-color);
  padding-bottom: 4px;
}

.species-modal-text p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.species-modal-actions {
  margin-top: 32px;
}

.species-whatsapp-btn {
  width: 100%;
}

@media (max-width: 900px) {
  .species-modal-grid {
    grid-template-columns: 1fr;
  }
  .species-modal-image-wrapper {
    min-height: 250px;
    height: 250px;
  }
  .species-modal-info {
    padding: 32px;
  }
  .species-modal-close {
    top: 15px;
    right: 15px;
  }
}

/* ==========================================================================
   AJUSTES PARA ALTO CONTRASTE (WCAG) - NOVOS ELEMENTOS
   ========================================================================== */

body.high-contrast .video-play-indicator {
  background-color: #111111 !important;
  color: #FFD700 !important;
  border: 2px solid #FFD700 !important;
}

body.high-contrast .lightbox-nav {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 2px solid #FFD700 !important;
}

body.high-contrast .lightbox-nav:hover,
body.high-contrast .lightbox-nav:focus {
  background-color: #FFD700 !important;
  color: #000000 !important;
}

body.high-contrast .species-modal-content {
  background-color: #000000 !important;
  color: #FFFFFF !important;
  border: 2px solid #FFD700 !important;
}

body.high-contrast .species-modal-close {
  background-color: #111111 !important;
  color: #FFD700 !important;
  border: 2px solid #FFD700 !important;
}

body.high-contrast .spec-item {
  background-color: #000000 !important;
  border: 1px solid #FFD700 !important;
}

body.high-contrast .spec-label {
  color: #FFD700 !important;
}

body.high-contrast .spec-val {
  color: #FFFFFF !important;
}

body.high-contrast .species-modal-text h4 {
  border-bottom: 2px solid #FFD700 !important;
}

/* ==========================================================================
   SEÇÃO CITAÇÃO (QUOTE BANNER)
   ========================================================================== */

.quote-banner {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #1c140e 100%);
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
}

.quote-banner .hex-pattern {
  opacity: 0.08;
}

.quote-container {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.quote-blockquote {
  border: none;
  padding: 0;
  margin: 0;
}

.quote-blockquote .quote-text {
  font-family: var(--font-brand);
  font-size: clamp(1.4rem, 3.2vw, 2.0rem);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--primary-soft);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.quote-author {
  display: block;
  font-family: var(--font-title);
  font-style: normal;
}

.quote-author strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary-color);
  letter-spacing: 0.05em;
}

.quote-author span {
  font-size: 0.85rem;
  color: #BCAAA4;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

body.high-contrast .quote-banner {
  background-color: #000000 !important;
  border: 2px solid #FFD700 !important;
}

body.high-contrast .quote-blockquote .quote-text {
  color: #FFFFFF !important;
}

body.high-contrast .quote-author strong {
  color: #FFD700 !important;
}

body.high-contrast .quote-author span {
  color: #FFFFFF !important;
}