/* CÓDIGO COMPLETO E CORRETO PARA: style.css */
/* ==================== RESET & BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-dark: #061728;
  --primary-teal: #1a7b7a;
  --primary-teal-light: #55a5a0;
  --accent-orange: #f89c31;
  --accent-orange-hover: #e08520;
  --text-light: #ecebe9;
  --text-gray: #9ca3af;
  --bg-dark: #0a1929;
  --bg-darker: #020814;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --container-max: 1280px;
  --section-padding: 80px;
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

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

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

section {
  padding: var(--section-padding) 0;
}

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

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

/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2d2d2d;
  color: white;
  padding: 1.25rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.cookie-link {
  color: var(--accent-orange);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition);
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-accept {
  background-color: var(--accent-orange);
  color: white;
}

.btn-accept:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(248, 156, 49, 0.4);
}

.btn-reject {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* ==================== HEADER ==================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(6, 23, 40, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
  background-color: rgba(6, 23, 40, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.logo-text {
  color: #FABE7A; /* Tom laranja claro */
}

.logo-accent {
  color: var(--primary-teal-light);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  cursor: pointer;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal-light);
  transition: width 0.3s ease;
}

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

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(6, 23, 40, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(85, 165, 160, 0.2);
  border-radius: 8px;
  min-width: 260px; /* Menu mais largo */
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  margin-top: 0.5rem;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: flex;
  align-items: center; 
  /* justify-content: space-between; */ /* <-- REMOVA ou comente esta linha */
  gap: 10px; /* <-- ADICIONE esta linha (ajuste 10px se quiser mais ou menos) */
  padding: 0.75rem 1.5rem;
  color: var(--text-gray);
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background-color: var(--primary-teal-light);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}

.dropdown-menu a:hover {
  color: var(--text-light);
  background-color: rgba(26, 123, 122, 0.15);
  padding-left: 1.75rem;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.nav-actions {
  display: flex;
  gap: 1rem;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-orange);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(248, 156, 49, 0.4);
}

.btn-outline {
  border: 2px solid var(--primary-teal-light);
  color: var(--primary-teal-light);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-teal);
  color: white;
  border-color: var(--primary-teal);
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-dark);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('https://tecbird.com.br/novo/imgs/azureweb.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Alterado de 'fixed' para 'scroll' para melhor performance mobile */
}

/* Reaplica 'fixed' apenas em telas grandes */
@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 23, 40, 0.7) 0%, rgba(26, 123, 122, 0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title-main {
  display: block;
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-teal-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-gray);
  animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* ==================== STATS SECTION ==================== */
.stats {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: rgba(26, 123, 122, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(85, 165, 160, 0.2);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal-light);
  background: rgba(26, 123, 122, 0.2);
}

.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--primary-teal-light);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-gray);
}

/* ==================== SERVICES SECTION ==================== */
.services {
  background-color: var(--primary-dark);
}

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

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(26, 123, 122, 0.1);
  border-color: var(--primary-teal-light);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.3);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--primary-teal-light);
}

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

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ==================== FEATURES SECTION ==================== */
.features {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-teal-light) 100%);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.5);
}

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

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.feature-item p {
  color: var(--text-gray);
  line-height: 1.8;
}

/* ==================== ABOUT SECTION ==================== */
.about {
  background-color: var(--primary-dark);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.about-image:hover img {
  transform: scale(1.05);
}

/* ==================== LOCATIONS SECTION ==================== */
.locations {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.location-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal-light);
  background: rgba(26, 123, 122, 0.1);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.2);
}

.location-card h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--primary-teal-light);
}

.location-card p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.location-specs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.location-specs span {
  padding: 0.5rem 1rem;
  background: rgba(248, 156, 49, 0.2);
  border: 1px solid var(--accent-orange);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-orange);
}

/* ==================== CTA SECTION ==================== */
.cta {
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-dark) 100%);
  text-align: center;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  color: white;
}

.cta-content p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==================== FOOTER ==================== */
.footer {
  background-color: var(--bg-darker);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  color: var(--primary-teal-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

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

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--text-gray);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--primary-teal-light);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-gray);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

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

.footer-links a:hover {
  color: var(--primary-teal-light);
}

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

/* ================================================================ */
/* ============= ESTILOS DA PÁGINA DE SELEÇÃO (CATEGORIAS) ========= */
/* ================================================================ */

.categoria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.categoria-card {
  border-radius: 8px;
  overflow: hidden; /* Garante que o header se ajuste ao border-radius */
  background: var(--primary-dark); /* Fundo escuro do card, similar ao seu site */
  border: 1px solid rgba(85, 165, 160, 0.2); /* Borda teal do seu tema */
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.categoria-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-teal-light);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.3);
}

.categoria-header {
  /* O cabeçalho azul do modelo */
  background-color: var(--primary-teal); /* Usa a cor do "A" do seu logo */
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.categoria-header h3 {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
}

.categoria-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1; /* Garante que o card tenha a mesma altura */
  text-align: center;
}

.categoria-body p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  flex-grow: 1; /* Empurra o botão para o final */
  margin-bottom: 2rem;
}

.categoria-body .btn-primary {
  /* O botão laranja (var(--accent-orange) já está definido no seu CSS) */
  width: 100%;
}

/* ================================================================ */
/* ============= ESTILOS DA PÁGINA DE SELEÇÃO DE SO ============= */
/* ================================================================ */

.so-grid {
  display: grid;
  /* Força 1 coluna em telas menores */
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  /* Limita a largura máxima para o grid de 2 colunas não ficar muito largo */
  max-width: 1000px; 
  margin-left: auto;
  margin-right: auto;
}

/* Em telas maiores (tablets e desktops), cria 2 colunas */
@media (min-width: 768px) {
  .so-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.so-card {
  /* Reutiliza o estilo de card do seu tema */
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem; /* Mais padding vertical */
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.so-card:hover {
  transform: translateY(-10px);
  background: rgba(26, 123, 122, 0.1); /* Hover do seu tema */
  border-color: var(--primary-teal-light); /* Cor da borda do seu tema */
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.3);
}

.so-icon {
  width: 100px; /* Ícone grande, como no modelo */
  height: 100px;
  margin-bottom: 2rem;
  color: var(--primary-teal-light); /* Cor do seu tema */
}

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

.so-card h3 {
  font-size: 2rem; /* Título maior */
  margin-bottom: 1rem;
  color: var(--text-light);
  font-weight: 700;
}

.so-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.1rem;
  flex-grow: 1; /* Empurra o botão para o final */
  margin-bottom: 2rem;
  max-width: 400px; /* Limita a largura do texto */
}

.so-card .btn-primary {
  width: 80%;
  padding: 1rem 2rem; /* Botão maior */
  font-size: 1.1rem;
}


/* ================================================================ */
/* ============= (NOVO) ESTILOS DA PÁGINA DE PLANOS (PRICING) ======= */
/* ================================================================ */

.pricing-grid {
  display: grid;
  /* Cria um grid responsivo que se ajusta automaticamente */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  /* Baseado no .service-card para consistência */
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  display: flex; /* ATUALIZADO: Usar flexbox para controle de layout */
  flex-direction: column; /* ATUALIZADO: Coloca itens em coluna */
  position: relative; /* Para o "Mais Popular" */
  overflow: hidden; /* Para o "Mais Popular" */
}

.pricing-card.recommended {
  border-color: var(--primary-teal-light);
  box-shadow: 0 10px 30px rgba(26, 123, 122, 0.3);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--primary-teal-light);
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 1;
}

.pricing-card:hover {
  transform: translateY(-10px);
  background: rgba(26, 123, 122, 0.1);
  border-color: var(--primary-teal-light);
}

.pricing-header {
  padding: 2rem 2rem 1.5rem;
  text-align: center;
  /* Removido border-bottom: 1px solid rgba(255, 255, 255, 0.1); pois o preço não está mais aqui */
}

.pricing-header h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-teal-light);
  font-weight: 700;
}

/* Estilos para o bloco de preço final */
.pricing-price { /* <-- CORREÇÃO: Alterado de .pricing-final-price */
  text-align: center;
  padding: 1.5rem 2rem; /* Preço final tem mais espaçamento */
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Separador acima do preço */
  margin-top: auto; /* Empurra para o final do card */
  /* Estilos para o texto "/mês" */
  font-size: 1.25rem; 
  color: var(--text-gray); 
}

.pricing-price span { /* <-- CORREÇÃO: Alterado de .pricing-final-price span */
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

/* Regra duplicada removida */


.pricing-features {
  list-style: none;
  padding: 1.5rem 2rem;
  /* flex-grow: 1; */ /* <-- CORREÇÃO: REMOVIDA ESTA LINHA */
}

.pricing-features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  color: var(--text-gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li strong {
  color: var(--text-light);
  font-weight: 600;
}

.pricing-footer {
  padding: 0 2rem 2rem;
}

.pricing-footer .btn-primary {
  width: 100%;
}


/* ================================================================ */
/* ==================== RESPONSIVE ================================ */
/* ================================================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 60px;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  /* .hero {
    background-attachment: scroll; // MUDANÇA JÁ APLICADA ACIMA
  } */

  .hero-buttons {
    flex-direction: column;
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn-cookie {
    flex: 1;
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }

  /* (NOVO) Ajuste de grid de preços para mobile */
  .pricing-grid {
     grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .features-grid,
  .locations-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================ */
/* ==================== CÓDIGO DO MENU MOBILE ===================== */
/* ================================================================ */

/* 1. Estilo do Botão Hamburger (escondido no desktop) */
.btn-mobile-menu {
  display: none; /* Começa escondido */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; /* Garante que ele fique na frente */
}

.hamburger-line {
  display: block;
  width: 30px;
  height: 3px;
  background-color: white;
  margin: 6px 0;
  transition: 0.3s;
}

/* 2. Esconde o item-botão duplicado no DESKTOP */
.nav-item-mobile-button {
  display: none;
}


/* 3. Regras que SÓ se aplicam no mobile (igual ao seu breakpoint) */
@media (max-width: 768px) {

  /* Mostra o botão hamburger (sobrescreve o display:none) */
  .btn-mobile-menu {
    display: block; 
  }

  /* Define como o .nav-menu deve parecer QUANDO ABERTO */
  /* Sobrescreve o display:none que está na linha 690 */
  .nav-menu.menu-aberto {
    display: flex; 
    flex-direction: column; 
    position: absolute;
    top: 100%; /* <-- CORRIGIDO */
    left: 0;
    width: 100%;
    background-color: var(--primary-teal); /* <-- CORRIGIDO para a variável do logo */
    z-index: 1000;
    padding-bottom: 1rem;
    
    /* --- ALTERAÇÕES DE CONTORNO --- */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* --- FIM DAS ALTERAÇÕES --- */
  }

 /* Ajustes de layout para os itens do menu aberto */
  .nav-menu.menu-aberto .nav-item {
    width: 100%;
    text-align: left; /* <-- ALTERADO */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.menu-aberto .nav-link {
    /* Garante que é um container flex */
    display: flex; 
    
    /* Garante o alinhamento vertical do texto e da seta */
    align-items: center;
    
    /* FORÇA o alinhamento à esquerda */
    justify-content: flex-start; 
    
    /* Layout */
    width: 100%;
    padding: 0.75rem 1.5rem;
    
    /* Espaço entre o texto e a seta */
    gap: 0.25rem; 
  }
    

  /* --- Lógica do Submenu (Accordion) --- */
  
  /* Ajusta os dropdowns no modo mobile */
  .nav-menu.menu-aberto .dropdown-menu {
    position: static;
    display: none; /* ESCONDE O SUBMENU POR PADRÃO */
    transform: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
  }

  /* MOSTRA O SUBMENU QUANDO CLICADO (via JS) */
  .nav-menu.menu-aberto .dropdown-menu.submenu-aberto {
    display: block;
  }

  /* Gira a setinha quando o submenu está ativo */
  .nav-menu.menu-aberto .nav-link.submenu-ativo .dropdown-arrow {
    transform: rotate(180deg);
  }
  
 /* --- Botão do Painel no Mobile --- */
  
  /* Faz o item-botão (que está escondido no desktop) aparecer */
  /* Usamos um seletor mais específico para garantir que ele vença */
  .nav-menu.menu-aberto .nav-item-mobile-button {
    display: list-item; 
    padding: 1.5rem 0 1rem 0;
    width: 100%;
    text-align: center; /* <-- Esta regra agora vai funcionar */
    border-bottom: none;
  }

  /* Estiliza o botão laranja dentro do menu */
  .nav-item-mobile-button .btn-primary {
    width: 90%;
    margin: 0 auto;
  }
}

/* ================================================================ */
/* ==================== BANDEIRA DO MENU (ADICIONADO) ===================== */
/* ================================================================ */
.menu-flag {
  margin-right: 10px; /* Espaço entre a bandeira e o texto */
  font-size: 0.9em; /* Tamanho um pouco menor */
  vertical-align: middle; /* Alinha verticalmente com o texto */
}