/* ==================== AZUREWEB - STYLE.CSS (HIGIENIZADO PELO ORÁCULO) ==================== */
/* DATA: 23/11/2025 - STATUS: VERSÃO FINAL ESTÁVEL */

/* ==================== 1. 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;
  margin: 0;
  padding: 0;
}

.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);
}

/* ==================== 2. HEADER & NAV (DESKTOP) ==================== */
.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; }
.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 Desktop */
.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;
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  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; }

/* Botão Mobile Escondido no Desktop */
.btn-mobile-menu, .nav-item-mobile-button { display: none; }

/* ==================== 3. BOTÕES (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;
}

.btn-full-orange {
    background-color: var(--accent-orange);
    color: white;
    width: 100%;
    padding: 1rem;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    transition: var(--transition);
}

.btn-full-orange:hover {
    background-color: var(--accent-orange-hover);
    box-shadow: 0 0 15px rgba(248, 156, 49, 0.4);
}

/* ==================== 4. HERO SECTION ==================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('/imgs/azureweb.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll; /* Mobile friendly */
}

@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-main {
  display: block;
  font-family: "Impact", "Haettenschweiler", "Arial Narrow Bold", sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: normal; 
  letter-spacing: 0.02em; 
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.9);
  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;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-light);
  animation: fadeInUp 1s ease 0.4s both;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* ==================== 5. COMPONENTES: STATS, SERVICES, ETC ==================== */

/* Stats */
.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 {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  width: 100%;
  height: 100%;
  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 */
.services { background-color: var(--primary-dark); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.service-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
  width: 100%;
  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 */
.features {
  background: linear-gradient(180deg, var(--bg-darker) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  border-top: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.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; }

/* Locations */
.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 {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  height: 100%;
  width: 100%;
  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 */
.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; }

/* ==================== 6. PÁGINAS ESPECÍFICAS (SO, VPS, ETC) ==================== */

/* Categoria Grid (Página Seleção) */
.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;
  background: var(--primary-dark);
  border: 1px solid rgba(85, 165, 160, 0.2);
  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 {
  background-color: var(--primary-teal);
  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;
  text-align: center;
}
.categoria-body p {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  flex-grow: 1;
  margin-bottom: 2rem;
}
.categoria-body .btn-primary { width: 100%; }

/* Grid de Sistemas Operacionais (SO) */
.so-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.so-card {
  background: rgba(6, 23, 40, 0.8);
  border: 1px solid rgba(85, 165, 160, 0.3);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.so-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-teal);
  background: rgba(26, 123, 122, 0.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.so-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* IMAGEM DO ICONE DO SO (CORRIGIDO) */
.so-icon img, .so-icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  fill: currentColor;
}
.so-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
.so-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1.1rem;
  flex-grow: 1;
  margin-bottom: 2rem;
  max-width: 400px;
}
.so-card .btn-primary, .so-card .btn-full-orange { width: 100%; margin-top: auto; }

/* Grid de Preços (Pricing) */
.pricing-grid {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
/* Força Bruta para PC (5 Colunas) */
@media (min-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(5, 1fr) !important; }
}

.pricing-card {
  background: rgba(6, 23, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card.recommended, .pricing-card.popular {
  border: 1px solid var(--primary-teal);
  box-shadow: 0 0 20px rgba(26, 123, 122, 0.2);
  background: rgba(6, 23, 40, 0.8);
}
.ribbon, .pricing-badge {
  position: absolute;
  top: 20px;
  right: -35px;
  background: var(--primary-teal);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

/* Custom Quote Card (Verde) */
.pricing-card.custom-quote {
  background-color: #044454 !important;
  border: 2px solid #55a5a0 !important;
  box-shadow: 0 0 20px rgba(26, 123, 122, 0.4);
}
.pricing-card.custom-quote:hover {
  background-color: #156665 !important;
  transform: translateY(-8px);
}
.pricing-card.custom-quote h3,
.pricing-card.custom-quote p,
.pricing-card.custom-quote span { color: white !important; }

/* Estilo Interno dos Cards de Preço */
.pricing-header { padding: 2rem 2rem 1.5rem; text-align: center; }
.pricing-header h3, .plan-name {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--primary-teal-light);
  font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 1rem;
  line-height: 1;
}
.vps-big {
    display: block;
    font-family: "Arial Black", "Impact", sans-serif;
    font-size: 3.5rem;
    color: var(--primary-teal-light);
    text-shadow: 4px 4px 0px #000000;
    margin-bottom: 5px;
    letter-spacing: -2px;
}
.vps-sub {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-teal-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pricing-price, .plan-price {
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: auto;
  font-size: 1.25rem;
  color: var(--text-gray);
}
.pricing-price span, .plan-price .amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-orange);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.pricing-features, .plan-specs {
  list-style: none;
  padding: 1.5rem 0;
  flex-grow: 1;
}
.pricing-features li, .plan-specs 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);
  font-size: 0.9rem;
}
.pricing-features li strong, .plan-specs li strong { color: var(--text-light); font-weight: 600; }
.pricing-footer { padding: 0 1rem 2rem; }
.pricing-footer .btn-primary { width: 100%; }

/* Banner Servidor Personalizado */
.custom-page-banner {
  position: relative;
  width: 100vw;
  height: auto;
  min-height: 200px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: #0a1929;
  box-shadow: 0 8px 24px 0 rgba(0,0,0,0.18);
  z-index: 2;
}
.custom-page-banner img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 1;
}
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: none !important; /* Mantido como solicitado */
  background: linear-gradient(135deg, rgba(6,23,40,0.20) 0%, rgba(26,123,122,0.40) 100%);
  pointer-events: none;
}
.custom-content { padding: 2rem; text-align: center; }
.custom-content h2 { font-family: var(--font-sans); font-size: 2.2rem; font-weight: 700; color: white; margin-bottom: 1.5rem; }
.custom-content p { font-size: 1.1rem; color: #d1d5db; max-width: 800px; margin: 0 auto 2rem auto; line-height: 1.6; }

/* Aviso Banner */
.warning-banner {
    background: rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    text-align: center;
    padding: 4rem 0 5rem 0;
}
.warning-content { width: 100%; max-width: 900px; margin: 0 auto; text-align: center; padding: 0 20px; }
.warning-content h2 { font-size: 2.5rem; color: white; text-transform: uppercase; margin-bottom: 1.5rem; }
.warning-content p { font-size: 1.2rem; color: #d1d5db; line-height: 1.6; margin: 0 auto; }

/* Página Nossa Empresa */
.about-main { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 5rem; }
.about-img-wrapper { position: relative; border-radius: 8px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.1); }
.about-img-wrapper img { width: 100%; height: auto; display: block; transition: var(--transition); }
.about-img-wrapper:hover img { transform: scale(1.03); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.value-card { background: rgba(255, 255, 255, 0.05); padding: 2.5rem 2rem; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.1); text-align: center; transition: var(--transition); }
.value-icon { font-size: 2.5rem; color: var(--accent-orange); margin-bottom: 1.5rem; }

/* ==================== 7. 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; }

/* ==================== 8. EXTRAS: COOKIES, SCROLL, ETC ==================== */
.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; }
.cookie-buttons { display: flex; gap: 1rem; flex-shrink: 0; }
.btn-cookie { padding: 0.75rem 2rem; border: none; border-radius: 50px; font-weight: 700; text-transform: uppercase; cursor: pointer; }
.btn-accept { background-color: var(--accent-orange); color: white; }
.btn-reject { background-color: transparent; color: white; border: 2px solid white; }

/* Seta do Menu Acordeão */
.menu-arrow {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 1.5rem; color: var(--accent-orange);
  z-index: 10002; cursor: pointer; opacity: 0; transition: all 0.3s ease; pointer-events: none;
  animation: bounce 2s infinite;
}
.menu-arrow.visible { opacity: 1; pointer-events: auto; }
.menu-arrow.up { transform: translateX(-50%) rotate(180deg); color: #fff; }
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateX(-50%) translateY(0);}
  40% {transform: translateX(-50%) translateY(-10px);}
  60% {transform: translateX(-50%) translateY(-5px);}
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Indicador de Scroll da Página (Home) */
.scroll-indicator {
    position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
    color: #fff; font-size: 2rem; opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease-in-out; pointer-events: none;
    z-index: 500 !important; /* Z-index baixo para não cobrir o menu */
    text-shadow: 0px 2px 5px rgba(0,0,0,0.8);
}
.scroll-indicator.visible { opacity: 1; visibility: visible; animation: pulse-scroll 1.5s infinite; }
@keyframes pulse-scroll {
    0% { transform: translateX(-50%) translateY(0px); opacity: 1; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 0.5; }
    100% { transform: translateX(-50%) translateY(0px); opacity: 1; }
}

/* ==================== 9. MEDIA QUERIES (RESPONSIVIDADE & CORREÇÕES) ==================== */
/* NOTA: TODAS AS CORREÇÕES CRÍTICAS MOBILE ESTÃO AQUI */

@media (max-width: 768px) {
  :root { --section-padding: 60px; }
  
  /* Esconde navegação desktop padrão */
  .nav-menu, .nav-actions { display: none; }
  .hero-buttons { flex-direction: column; }
  .about-content, .about-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .pricing-grid { grid-template-columns: 1fr; }
  
  .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; }

  /* Correção do Banner Personalizado no Mobile */
  .custom-page-banner { height: 300px !important; min-height: 300px !important; }
  .custom-page-banner img { height: 100% !important; object-fit: cover !important; object-position: center center !important; }
  .banner-overlay { height: 100% !important; }

  /* BOTÃO HAMBURGUER (Corrigido Z-Index) */
  .btn-mobile-menu {
    display: block;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 20000 !important;
    position: relative;
  }
  .hamburger-line {
    display: block;
    width: 30px;
    height: 3px;
    background-color: white;
    margin: 6px 0;
    transition: 0.3s;
  }

  /* MENU MOBILE ABERTO (Configuração Definitiva) */
  .nav-menu.menu-aberto {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 98px; /* Altura do header */
    left: 0;
    width: 100%;
    height: auto;
    max-height: calc(100vh - 110px);
    z-index: 990;
    padding-top: 10px;
    padding-bottom: 5px !important;
    gap: 0 !important;
    background-color: var(--primary-teal);
    overflow-y: auto;
    border-top: 1px solid rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }

  .nav-menu.menu-aberto .nav-item { width: 100%; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .nav-menu.menu-aberto .nav-link { display: flex; align-items: center; justify-content: flex-start; width: 100%; padding: 0.75rem 1.5rem; gap: 0.25rem; }

  /* Submenus Mobile */
  .nav-menu.menu-aberto .dropdown-menu {
    position: static;
    display: none;
    transform: none;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
  }
  .nav-menu.menu-aberto .dropdown-menu.submenu-aberto { display: block; }
  .nav-menu.menu-aberto .nav-link.submenu-ativo .dropdown-arrow { transform: rotate(180deg); }

  /* Botão Painel no Mobile */
  .nav-menu.menu-aberto .nav-item-mobile-button {
    display: list-item;
    padding: 15px 20px !important;
    width: 100%;
    margin: 0 !important;
    background-color: rgba(0,0,0,0.2);
  }
  .nav-menu.menu-aberto .nav-item-mobile-button .btn-primary { width: 100%; display: block; margin: 0 !important; }
}

@media (max-width: 480px) {
  .stats-grid, .services-grid, .features-grid, .locations-grid { grid-template-columns: 1fr; }
}

@media (min-width: 992px) {
  .scroll-indicator { display: none !important; }
}
/* ==================== CORREÇÃO: BOTÃO VOLTAR (GLOBAL) ==================== */
/* Adicionado para corrigir alinhamento na página Nossa Empresa e outras */

.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px; /* Espaço entre a setinha e o texto */
  
  color: var(--text-gray); /* Cor Cinza Original */
  font-size: 0.9rem;
  font-weight: 600;
  
  /* AQUI ESTÁ O SEGREDO DO CONSERTO: */
  /* margim-top define a distancia do menu superior que ai esta 40px */
  margin-top: 40px; 
  margin-bottom: 20px;
  
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none; /* Garante que não tenha sublinhado */
}

.btn-voltar:hover {
  /* O !important obriga o navegador a usar o LARANJA, ignorando qualquer outra regra de cor */
  color: var(--accent-orange) !important; 
  
  transform: translateX(-5px); /* Mantém o efeito de movimento */
}

/* AJUSTE FINO PARA MOBILE */
@media (max-width: 768px) {
  .btn-voltar {
    margin-top: 110px; /* Ajuste leve para celular */
    margin-left: 20px; /* Descola da borda da tela no celular */
  }
}
/* ==================== EXCEÇÃO: PÁGINAS SEM BANNER ==================== */
/* Use esta classe EXTRA apenas nas páginas onde o botão fica escondido atrás do menu */

.btn-voltar-topo {
  margin-top: 25px !important; /* 90px do Menu + 40px de respiro */
}

/* Ajuste dessa exceção para celular */
@media (max-width: 768px) {
  .btn-voltar-topo {
    margin-top: 110px !important;
  }
}