/* -------------------------------------------------------------
   FARMA LÍDER - SISTEMA DE DESIGN PREMIUM E ALTA CONVERSÃO
   ------------------------------------------------------------- */

/* --- CONFIGURAÇÃO DE FONTES & VARIÁVEIS --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Única Cor de Destaque Oficial da Marca (Sem Amarelo ou Laranja) */
  --brand-red: #e53935;          /* Vermelho Farmácia Sólido */
  --brand-red-light: #fff1f2;    /* Fundo Vermelho Suave */
  --brand-red-hover: #c62828;    
  
  --whatsapp-green: #22c55e;     /* Verde WhatsApp Oficial (Conversão) */
  --whatsapp-hover: #16a34a;     
  --whatsapp-bg: #f0fdf4;
  
  /* Tons de Texto */
  --text-dark: #0f172a;          /* Slate 900 */
  --text-body: #334155;          /* Slate 700 */
  --text-muted: #64748b;         /* Slate 500 */
  
  --bg-white: #ffffff;
  --bg-light: #f8fafc;           
  --border-light: #e2e8f0;       
  
  /* Rodapé Ultra-Discreto de Baixo Perfil */
  --footer-bg: #070a13;          /* Cinza Azulado Escuríssimo */
  --footer-text: #57657a;        /* Slate 500 - Baixo Contraste (Discreto) */
  --footer-border: #141b2b;      
  
  /* Suavização de Movimentos */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- RESET & PADRÕES --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 76px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: var(--brand-red);
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--brand-red-hover);
  text-decoration: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

/* --- ESTRUTURA AUXILIAR --- */
.custom-container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  position: relative;
  z-index: 2;
}

.section-padding {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.bg-light-section {
  background-color: var(--bg-light) !important;
}

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

.mb-40 { margin-bottom: 40px; }
.mb-20 { margin-bottom: 20px; }

/* --- ELEMENTOS DE COR DE DESTAQUE CLARINHAS AO FUNDO (BLOBS / ORBS DE LUZ) --- */
.bg-glow-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 57, 53, 0.045) 0%, rgba(229, 57, 53, 0.01) 55%, rgba(229, 57, 53, 0) 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.orb-top-left {
  top: -150px;
  left: -150px;
}

.orb-bottom-right {
  bottom: -150px;
  right: -150px;
}

.orb-top-right {
  top: -150px;
  right: -150px;
}

.orb-bottom-left {
  bottom: -150px;
  left: -150px;
}

/* --- PRE-HEADER INFORMATIVO --- */
.pre-header {
  height: 36px;
  background-color: var(--brand-red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  z-index: 1001;
  position: relative;
}

.pre-header span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- NAVBAR TRANSPARENTE E GLASS MORPHISM FORTE --- */
.navbar-clean {
  position: fixed;
  top: 36px; 
  left: 0;
  right: 0;
  height: 76px;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar-clean.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(190%);
  -webkit-backdrop-filter: blur(24px) saturate(190%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  height: 68px;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  letter-spacing: -0.02em;
}

.brand-logo .cross-icon {
  color: var(--brand-red);
  font-size: 24px;
  font-weight: 900;
  margin-right: 4px;
}

.brand-logo .logo-span {
  color: var(--brand-red);
  font-style: italic;
  font-weight: 900;
  margin-left: 2px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

/* Efeito de Linha Expansiva Premium */
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--brand-red);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.nav-links a:hover {
  color: var(--brand-red);
}

.nav-links a:hover::after,
.nav-links .active a::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-links .active a {
  color: var(--brand-red);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 4px 0;
}

/* --- BOTÕES MODERNOS E GLOSSY --- */
.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  gap: 8px;
}

.btn-modern::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 30%;
  height: 200%;
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(30deg);
  transition: all 0.5s ease;
}

.btn-modern:hover::after {
  left: 130%;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.2);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.btn-outline {
  border: 1px solid var(--border-light);
  background-color: transparent;
  color: var(--text-body) !important;
}

.btn-outline:hover {
  border-color: var(--text-muted);
  background-color: var(--bg-light);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 12px;
}

/* --- HERO SECTION --- */
#section-home {
  padding-top: 0;
  padding-bottom: 0;
  min-height: calc(100vh - 36px);
  display: flex;
  align-items: center;
}

.hero-split {
  padding-top: 120px;
  padding-bottom: 60px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left {
  text-align: left;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 20px;
  background-color: var(--brand-red-light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(225, 29, 72, 0.15);
}

.hero-title {
  font-size: 62px;
  font-weight: 850;
  color: var(--text-dark);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-desc {
  font-size: 17.5px;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 620px;
  line-height: 1.65;
}

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

/* Hero Direita: Molduras Arredondadas Ampliadas & Responsivas */
.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 480px; 
  height: 480px;    
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.15);
  border: 4px solid #ffffff;
  transition: var(--transition-smooth);
}

/* SATURAÇÃO DAS IMAGENS */
.hero-image-frame img,
.category-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: saturate(1.35) contrast(1.02); 
}

.hero-image-frame:hover img {
  transform: scale(1.06);
}

/* Badges Coloridos de Vida sobrepostos na Hero (Unificados em Vermelho e Verde) */
.hero-badge-float {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  z-index: 10;
  transition: var(--transition-smooth);
}

.hero-badge-float:hover {
  transform: translateY(-4px);
}

.hero-badge-float span {
  font-size: 20px;
  color: var(--brand-red);
}

.h-badge-1 {
  top: 40px;
  left: -20px;
  border-left: 4px solid var(--brand-red);
}

.h-badge-2 {
  bottom: 40px;
  right: -10px;
  border-left: 4px solid var(--brand-red); 
}

.hero-badge-float .b-text {
  display: flex;
  flex-direction: column;
}

.hero-badge-float .b-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dark);
}

.hero-badge-float .b-desc {
  font-size: 10px;
  color: var(--text-muted);
}

/* --- DIFERENCIAIS --- */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.section-header h2 span {
  color: var(--brand-red);
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Efeito Tridimensional Lindo com Hover */
.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 40px 30px;
  transition: var(--transition-smooth);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(229, 57, 53, 0.12); 
  border-color: rgba(229, 57, 53, 0.25);
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  background-color: var(--brand-red);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 10px rgba(229, 57, 53, 0.25);
}

.feature-card h3 {
  font-size: 19px;
  margin-bottom: 12px;
  font-weight: 700;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-body);
}

/* --- SEÇÃO COMO FUNCIONA (PASSOS DE CONVERSÃO) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
}

.step-card:hover {
  border-color: rgba(229, 57, 53, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.03);
}

.step-number {
  width: 36px;
  height: 36px;
  background-color: var(--brand-red-light);
  color: var(--brand-red);
  font-weight: 800;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  border: 1px solid rgba(229, 57, 53, 0.15);
}

.step-card h3 {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  font-size: 13.5px;
  color: var(--text-body);
}

/* --- CATEGORIAS COM FOTOS DE ALTO PADRÃO --- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-card {
  background-color: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -15px rgba(229, 57, 53, 0.12);
  border-color: rgba(229, 57, 53, 0.25);
}

.category-image-wrap {
  position: relative;
  overflow: hidden;
  height: 280px; 
  background-color: #f1f5f9;
  transition: var(--transition-smooth);
}

.category-card:hover .category-image-wrap img {
  transform: scale(1.06);
}

.category-content {
  padding: 28px;
}

.category-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
}

.category-content p {
  font-size: 14px;
  color: var(--text-body);
  margin-bottom: 20px;
  height: 66px;
  overflow: hidden;
}

.category-list {
  list-style: none;
  margin-bottom: 24px;
}

.category-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
  margin-bottom: 12px;
}

.category-list li span {
  color: var(--brand-red);
  font-size: 14px;
}

/* --- FAQ ACCORDION INTERATIVO PREMIUM --- */
.faq-accordion {
  max-width: 820px;
  margin: 0 auto;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-card:hover {
  border-color: rgba(229, 57, 53, 0.25);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.02);
}

.faq-trigger {
  width: 100%;
  padding: 22px 28px;
  background: none;
  border: none;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  outline: none;
}

.faq-trigger h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
  transition: var(--transition-smooth);
}

.faq-card.active .faq-trigger h3 {
  color: var(--brand-red);
}

.faq-icon-status {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-card.active .faq-icon-status {
  transform: rotate(180deg);
  color: var(--brand-red);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 28px;
}

.faq-card.active .faq-content {
  max-height: 300px;
  padding: 0 28px 24px 28px;
  transition: max-height 0.4s ease-in-out;
}

.faq-content p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- FORMAS GEOMÉTRICAS ASSIMÉTRICAS DE FUNDO (SAÚDE & FARMÁCIA ABSTRATA) --- */
.bg-shape-geometric {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
}

/* Seção Vermelha: Remove blend-mode para destacar formas brancas translúcidas */
.bg-brand-red-section .bg-shape-geometric {
  mix-blend-mode: normal !important;
}

/* Forma 1: Cápsula Farmacêutica Gigante e Abstrata */
.shape-polygon-1 {
  width: 260px;
  height: 550px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.14) 0%, rgba(229, 57, 53, 0.03) 100%) !important;
  border: none !important; /* Sem contornos */
  border-radius: 999px; /* Formato de Pílula */
  top: -10%;
  right: -10%;
  transform: rotate(45deg);
}

/* Forma 2: Cruz Médica Artística Gigante (Na seção vermelha se torna branca) */
.shape-polygon-2 {
  width: 500px;
  height: 500px;
  position: absolute;
  bottom: -150px;
  left: -150px;
  transform: rotate(15deg);
  background: transparent !important;
}

.shape-polygon-2::before,
.shape-polygon-2::after {
  content: '';
  position: absolute;
  border-radius: 80px; /* Cantos super arredondados */
}

/* Barra vertical da cruz gigante: esmaecer de cima para baixo */
.shape-polygon-2::before {
  top: 0;
  left: 175px;
  width: 150px;
  height: 500px;
  background: linear-gradient(180deg, rgba(229, 57, 53, 0.12) 0%, rgba(229, 57, 53, 0.03) 100%);
}

/* Barra horizontal da cruz gigante: esmaecer da esquerda para a direita */
.shape-polygon-2::after {
  top: 175px;
  left: 0;
  width: 500px;
  height: 150px;
  background: linear-gradient(90deg, rgba(229, 57, 53, 0.12) 0%, rgba(229, 57, 53, 0.03) 100%);
}

/* Esmaecimento branco na seção vermelha */
.bg-brand-red-section .shape-polygon-2::before {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
}

.bg-brand-red-section .shape-polygon-2::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.03) 100%) !important;
}

/* Forma 3: Cápsula Farmacêutica Gigante e Abstrata 2 */
.shape-polygon-3 {
  width: 220px;
  height: 600px;
  background: linear-gradient(135deg, rgba(229, 57, 53, 0.15) 0%, rgba(229, 57, 53, 0.03) 100%) !important;
  border: none !important; /* Sem contornos */
  border-radius: 999px; /* Formato de Pílula */
  top: 20%;
  left: -15%;
  transform: rotate(-35deg);
}

/* Forma 4: Cruz Médica Artística Gigante 2 */
.shape-polygon-4 {
  width: 450px;
  height: 450px;
  position: absolute;
  bottom: -120px;
  right: -120px;
  transform: rotate(-25deg);
  background: transparent !important;
}

.shape-polygon-4::before,
.shape-polygon-4::after {
  content: '';
  position: absolute;
  border-radius: 70px; /* Cantos super arredondados */
}

/* Barra vertical: esmaecer de cima para baixo */
.shape-polygon-4::before {
  top: 0;
  left: 160px;
  width: 130px;
  height: 450px;
  background: linear-gradient(180deg, rgba(229, 57, 53, 0.11) 0%, rgba(229, 57, 53, 0.03) 100%);
}

/* Barra horizontal: esmaecer da esquerda para a direita */
.shape-polygon-4::after {
  top: 160px;
  left: 0;
  width: 450px;
  height: 130px;
  background: linear-gradient(90deg, rgba(229, 57, 53, 0.11) 0%, rgba(229, 57, 53, 0.03) 100%);
}

/* --- SEÇÃO CONTATO PREMIUM - DASHBOARD SIDE-BY-SIDE --- */
.contact-dashboard {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
  position: relative;
  z-index: 3;
}

.contact-details-side {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-pre-title {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand-red);
  text-transform: uppercase;
  margin-bottom: 16px;
  background-color: var(--brand-red-light);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(225, 29, 72, 0.15);
  align-self: flex-start;
}

.contact-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.contact-title span {
  color: var(--brand-red);
}

.contact-description {
  font-size: 15.5px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.7;
}

.contact-info-box-premium {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-row-premium {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon-wrap {
  width: 44px;
  height: 44px;
  background-color: var(--brand-red-light);
  color: var(--brand-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.info-text-wrap {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.info-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.info-value {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.info-value-link {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--brand-red) !important;
  transition: var(--transition-smooth);
}

.info-value-link:hover {
  color: var(--brand-red-hover) !important;
  text-decoration: underline;
}

.btn-large-contact {
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.25);
  border-radius: 10px;
}

.contact-subtext {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
  opacity: 0.85;
}

.contact-map-side {
  position: relative;
}

.map-container-premium {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.08);
  position: relative;
  transition: var(--transition-smooth);
}

.map-container-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
  border-color: rgba(229, 57, 53, 0.15);
}

.map-container-premium iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- BOTÃO FLUTUANTE DE WHATSAPP --- */
.whatsapp-float {
  position: fixed;
  width: 54px;
  height: 54px;
  bottom: 24px;
  right: 24px;
  background-color: var(--whatsapp-green);
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
  z-index: 9999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.5);
}

/* -------------------------------------------------------------
   RODAPÉ DE BAIXO PERFIL E ULTRA-DISCRETO (10.5px, Baixo Contraste)
   ------------------------------------------------------------- */
.footer-clean {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 36px 0;
  font-size: 10.5px;
  border-top: 1px solid var(--footer-border);
  line-height: 1.65;
}

.footer-main-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.footer-branding-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #cbd5e1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--brand-red);
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-nav-links a {
  color: var(--footer-text);
  transition: var(--transition-smooth);
}

.footer-nav-links a:hover {
  color: #cbd5e1;
}

.footer-nav-links .divider {
  color: var(--footer-border);
}

.footer-copy {
  color: #475569;
}

.footer-regulatory-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.anvisa-warning {
  color: #64748b;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.legal-data {
  color: #475569;
}

.legal-data a {
  color: #64748b;
  text-decoration: underline;
  transition: var(--transition-smooth);
}

.legal-data a:hover {
  color: #cbd5e1;
}

/* Responsividade do Rodapé */
@media screen and (max-width: 767px) {
  .footer-main-row {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-branding-side {
    text-align: center;
  }
  .footer-nav-links {
    justify-content: center;
  }
  .footer-regulatory-side {
    text-align: center;
  }
}

/* --- SEÇÃO COLORIDA DA MARCA (VERMELHO VIBRANTE E SÓLIDO) --- */
.bg-brand-red-section {
  background-color: var(--brand-red) !important;
  color: #ffffff !important;
  position: relative;
}

.bg-brand-red-section h2 {
  color: #ffffff !important;
}

.bg-brand-red-section h2 span {
  color: #ffffff !important; /* Unificado em Branco Puro */
  background: none !important;
  -webkit-text-fill-color: initial !important;
}

.bg-brand-red-section p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* --- RESPONSIVIDADE --- */
@media screen and (max-width: 991px) {
  .pre-header {
    font-size: 11px;
    height: auto;
    padding: 6px 10px;
    text-align: center;
  }
  .navbar-clean {
    top: 0; 
  }
  #section-home {
    min-height: auto;
    display: block;
  }
  .hero-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 130px;
    padding-bottom: 60px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-title {
    font-size: 40px !important;
    letter-spacing: -0.02em;
  }
  .hero-desc {
    margin-right: auto;
    margin-left: auto;
    font-size: 15px;
  }
  .hero-ctas {
    justify-content: center;
  }
  .hero-right {
    margin-top: 20px;
  }
  .hero-image-frame {
    max-width: 100%;
    height: 340px; 
  }
  .category-image-wrap {
    height: 240px; 
  }
  .features-grid,
  .categories-grid,
  .steps-grid,
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-grid,
  .contact-split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: block;
  }
  .nav-actions .btn-sm {
    display: none; 
  }
  
  /* Contato Responsivo */
  .contact-dashboard {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .contact-title {
    font-size: 30px !important;
    text-align: center;
  }
  .contact-description {
    text-align: center;
  }
  .contact-action-box {
    align-items: center !important;
    width: 100%;
  }
  .btn-large-contact {
    width: 100%;
    text-align: center;
  }
  .map-container-premium {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }
}
