/* -------------------------------------------------------------
   ESPETINHOS LORETO - DESIGN SYSTEM & PRESETS
   ------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Cores Principais */
  --primary: #c62828;      /* Vermelho Brasa Escuro */
  --primary-light: #e53935;/* Vermelho Brasa Claro */
  --secondary: #ff8f00;    /* Laranja Fogo/Mel */
  --secondary-light: #ffb300;
  
  /* Tons Neutros */
  --dark-bg: #0f0f10;      /* Preto Carvão premium */
  --dark-surface: #18181b; /* Cinza Escuro (cards/seções) */
  --dark-border: #27272a;  /* Borda sutil */
  --light-bg: #fafafa;
  --light-surface: #ffffff;
  --light-border: #e4e4e7;
  
  /* Tipografia */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Textos */
  --text-light-primary: #f4f4f5;
  --text-light-secondary: #a1a1aa;
  --text-dark-primary: #18181b;
  --text-dark-secondary: #52525b;
  
  /* Cores de Destaque */
  --whatsapp: #25d366;
  --whatsapp-hover: #128c7e;
  
  /* Efeitos */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-glow: 0 0 20px rgba(198, 40, 40, 0.15);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.2;
}

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

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

/* Utilitários Visuais */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------------------------------------------
   BOTÕES PREMIUM
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--border-radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-green {
  background-color: var(--whatsapp);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-green:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(198, 40, 40, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 40, 40, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-light-primary);
  border: 2px solid var(--dark-border);
}

.btn-secondary:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background-color: rgba(255, 143, 0, 0.05);
}

/* -------------------------------------------------------------
   CABEÇALHO (HEADER) E NAVEGAÇÃO
   ------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
}

/* Topbar */
.topbar {
  background-color: rgba(15, 15, 16, 0.95);
  border-bottom: 1px solid var(--dark-border);
  padding: 8px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-light-secondary);
}

.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-info a:hover {
  color: var(--secondary);
}

.topbar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-logo {
  display: none; /* Apenas visível no mobile quando expandido, se necessário */
}

.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-smooth);
}

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

/* Navbar */
.navbar {
  background-color: rgba(15, 15, 16, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 10px 4%;
  background-color: rgba(15, 15, 16, 0.9);
  box-shadow: var(--shadow-lg);
}

.brand img {
  height: 45px;
  width: auto;
  transition: var(--transition-smooth);
}

.navbar.scrolled .brand img {
  height: 38px;
}

/* Menu de Navegação */
.menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.menu a {
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 8px 0;
  position: relative;
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-smooth);
}

.menu a:hover {
  color: var(--secondary);
}

.menu a:hover::after,
.menu a.active::after {
  width: 100%;
}

.menu a.active {
  color: var(--secondary);
}

/* Menu Hamburguer */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1010;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light-primary);
  transition: var(--transition-smooth);
}

/* -------------------------------------------------------------
   SEÇÃO HERO
   ------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  padding-top: 140px; /* Compensa a altura do header */
  background: radial-gradient(circle at 80% 20%, rgba(198, 40, 40, 0.15) 0%, rgba(15, 15, 16, 0) 60%),
              linear-gradient(135deg, #0f0f10 0%, #1c1917 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 50px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.script-title {
  font-family: 'Outfit', sans-serif;
  color: var(--secondary);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.script-title::after {
  content: '';
  width: 50px;
  height: 2px;
  background-color: var(--secondary);
}

.hero-title {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.hero-logo {
  max-width: min(450px, 100%);
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-light-secondary);
  margin-bottom: 35px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mascot-container {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.mascot {
  max-width: 390px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
}

.mascot-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 143, 0, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* -------------------------------------------------------------
   SEÇÃO CONFIGURAÇÕES COMUNS
   ------------------------------------------------------------- */
.section {
  padding: 100px 4%;
  position: relative;
}

.section-inner {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.section-dark {
  background-color: var(--dark-bg);
}

.section-light {
  background-color: var(--light-bg);
  color: var(--text-dark-primary);
}

.section-heading {
  margin-bottom: 60px;
}

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

.kicker {
  font-family: var(--font-headings);
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.section-light .kicker {
  color: var(--primary);
}

.section-heading h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-heading .lead {
  font-size: 1.1rem;
  max-width: 600px;
}

.section-dark .section-heading .lead {
  color: var(--text-light-secondary);
}

.section-light .section-heading .lead {
  color: var(--text-dark-secondary);
}

/* -------------------------------------------------------------
   CONGELADOS (PRODUTOS)
   ------------------------------------------------------------- */
.product-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.product-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  opacity: 0;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 143, 0, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), var(--shadow-glow);
}

.product-card:hover::before {
  opacity: 1;
}

.product-img-wrapper {
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  margin-bottom: 25px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-card img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.product-card:hover img {
  transform: scale(1.08) rotate(2deg);
}

.product-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light-primary);
}

.product-card p {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-flavors {
  background-color: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--secondary);
  padding: 10px 15px;
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
  font-size: 0.85rem !important;
  color: var(--text-light-primary) !important;
  margin-bottom: 0 !important;
}

.product-flavors strong {
  color: var(--secondary);
}

.flavor-bar {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-sm);
  padding: 15px 30px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.action-row {
  display: flex;
  justify-content: center;
}

/* -------------------------------------------------------------
   NOVO COMPONENTE: CALCULADORA DE CHURRASCO
   ------------------------------------------------------------- */
.calculator-section {
  background: linear-gradient(180deg, #18181b 0%, #0f0f10 100%);
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
  margin-top: 20px;
}

.calc-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 30px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.input-group label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-light-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-group label span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-light-secondary);
}

.counter-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--dark-border);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  width: 100%;
  max-width: 200px;
}

.counter-btn {
  background: none;
  border: none;
  width: 50px;
  height: 45px;
  color: var(--text-light-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.counter-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
}

.counter-control input {
  width: calc(100% - 100px);
  border: none;
  background: none;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 700;
}

/* Remover flechas numéricas padrão do navegador */
.counter-control input::-webkit-outer-spin-button,
.counter-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.counter-control input[type=number] {
  -moz-appearance: textfield;
}

.calc-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.15);
  border: 1px solid var(--dark-border);
  padding: 12px 15px;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.checkbox-card:hover {
  border-color: var(--secondary);
}

.checkbox-card input {
  accent-color: var(--secondary);
  width: 18px;
  height: 18px;
}

.checkbox-card span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Painel de Resultados */
.calc-result {
  background-color: var(--dark-surface);
  border: 1px solid rgba(255, 143, 0, 0.2);
  border-radius: var(--border-radius-md);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: sticky;
  top: 120px;
}

.result-header {
  border-bottom: 1px solid var(--dark-border);
  padding-bottom: 20px;
  margin-bottom: 25px;
}

.result-header h3 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 5px;
}

.result-header p {
  color: var(--text-light-secondary);
  font-size: 0.9rem;
}

.result-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  background-color: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--dark-border);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  text-align: center;
}

.metric-card.full-width {
  grid-column: span 2;
  border-color: rgba(198, 40, 40, 0.3);
  background: linear-gradient(180deg, rgba(198, 40, 40, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
}

.metric-val {
  font-family: var(--font-headings);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-light-primary);
  margin-bottom: 5px;
}

.metric-card.full-width .metric-val {
  color: var(--secondary);
}

.metric-lbl {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light-secondary);
}

.result-details {
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-sm);
  padding: 20px;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 30px;
}

.result-details p {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.result-details p:last-child {
  margin-bottom: 0;
  border-top: 1px dashed var(--dark-border);
  padding-top: 8px;
  margin-top: 8px;
  font-weight: 600;
  color: var(--text-light-primary);
}

.result-details p span {
  color: var(--text-light-primary);
}

/* -------------------------------------------------------------
   FESTAS E EVENTOS
   ------------------------------------------------------------- */
.events-section {
  background-color: var(--light-bg);
  color: var(--text-dark-primary);
}

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

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  background-color: rgba(198, 40, 40, 0.08);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: bold;
}

.feature-text h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark-primary);
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-dark-secondary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

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

.gallery-item.large {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-overlay span {
  color: #ffffff;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   LOJA DE FÁBRICA
   ------------------------------------------------------------- */
.factory-section {
  background: linear-gradient(135deg, #18181b 0%, #0f0f10 100%);
  border-top: 1px solid var(--dark-border);
  position: relative;
}

.factory-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(198, 40, 40, 0.08) 0%, rgba(0,0,0,0) 75%);
  bottom: -50px;
  right: -50px;
  z-index: 1;
}

.factory-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.factory-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.benefit-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  transition: var(--transition-smooth);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-card:hover {
  border-color: rgba(255, 143, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateX(5px);
}

.benefit-num {
  font-family: var(--font-headings);
  font-size: 2rem;
  font-weight: 900;
  color: var(--secondary);
  line-height: 1;
}

.benefit-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light-primary);
}

.benefit-info p {
  color: var(--text-light-secondary);
  font-size: 0.95rem;
}

/* -------------------------------------------------------------
   PARCERIA LORETO
   ------------------------------------------------------------- */
.partner-section {
  padding: 80px 4%;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.85)), url('assets/bg-parceiro.png') center/cover no-repeat;
  text-align: center;
}

.partner-box {
  max-width: 700px;
  margin: 0 auto;
  background-color: rgba(15, 15, 16, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--dark-border);
  padding: 50px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.partner-box h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.partner-box p {
  color: var(--text-light-secondary);
  margin-bottom: 30px;
}

/* -------------------------------------------------------------
   SOBRE NÓS
   ------------------------------------------------------------- */
.about-section {
  background-color: var(--light-bg);
  color: var(--text-dark-primary);
}

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

.about-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.about-branding h2 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.about-logo {
  max-width: 220px;
  height: auto;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  color: var(--text-dark-secondary);
}

.about-text-content p:first-child {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark-primary);
}

/* -------------------------------------------------------------
   NOVO COMPONENTE: DEPOIMENTOS DE CLIENTES
   ------------------------------------------------------------- */
.testimonials-section {
  background-color: var(--dark-bg);
  border-top: 1px solid var(--dark-border);
}

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

.testimonial-card {
  background-color: var(--dark-surface);
  border: 1px solid var(--dark-border);
  padding: 35px;
  border-radius: var(--border-radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::after {
  content: '“';
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 6rem;
  font-family: var(--font-headings);
  color: rgba(255, 143, 0, 0.1);
  line-height: 1;
}

.stars {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--text-light-secondary);
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--dark-border);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--secondary);
}

.user-info h4 {
  font-size: 0.95rem;
  color: var(--text-light-primary);
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-light-secondary);
}

/* -------------------------------------------------------------
   RODAPÉ (FOOTER)
   ------------------------------------------------------------- */
.footer {
  background-color: #080809;
  border-top: 1px solid var(--dark-border);
  padding: 80px 4% 40px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand img {
  height: 55px;
  width: auto;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-light-secondary);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--text-light-secondary);
}

.footer-links a:hover {
  color: var(--secondary);
  transform: translateX(3px);
  display: inline-block;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-light-secondary);
  margin-bottom: 15px;
}

.footer-contact p span {
  color: var(--secondary);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--dark-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-light-secondary);
}

/* -------------------------------------------------------------
   WHATSAPP FLOAT
   ------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--whatsapp);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 999;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.1) rotate(10deg);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--whatsapp);
  border-radius: 50%;
  z-index: -1;
  animation: pulse 2s infinite;
  opacity: 0.6;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #ffffff;
}

/* -------------------------------------------------------------
   RESPONSIVIDADE (MEDIA QUERIES)
   ------------------------------------------------------------- */

/* Telas Grandes (Desktop) */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    justify-content: center;
    width: 100%;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .events-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .factory-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-branding {
    align-items: center;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Tablets e Mobile */
@media (max-width: 768px) {
  .topbar {
    display: none; /* Esconde barra superior sutil em mobile para dar mais foco */
  }
  
  .navbar {
    padding: 15px 6%;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #0f0f10;
    border-left: 1px solid var(--dark-border);
    flex-direction: column;
    padding: 100px 40px;
    gap: 25px;
    z-index: 1005;
    transition: var(--transition-smooth);
  }
  
  .menu.open {
    right: 0;
  }
  
  .menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-heading h2 {
    font-size: 2.3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Dispositivos Pequenos */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .calc-box {
    padding: 25px 20px;
  }
  
  .calc-checkboxes {
    grid-template-columns: 1fr;
  }
  
  .calc-result {
    padding: 25px 20px;
  }
  
  .result-metrics {
    grid-template-columns: 1fr;
  }
  
  .metric-card.full-width {
    grid-column: span 1;
  }
  
  .counter-control {
    max-width: 100%;
  }
  
  .partner-box {
    padding: 30px 20px;
  }
  
  .partner-box h2 {
    font-size: 1.8rem;
  }
}
