/* Variáveis Globais */
:root {
  --background-color: #0c0c0c; 
  --primary-color: #ff6600;    
  --primary-color-rgb: 255, 102, 0; 
  --secondary-color: #1a1a1a;  
  --secondary-color-rgb: 26, 26, 26; 
  --tertiary-color: #222222;   
  --text-color: #ffffff;       
  --light-text: #ccc;          
  --hover-brightness: 1.2;
  --section-padding: 4rem 2rem; 
  --border-radius-std: 8px;    
  --background-color-rgb: 12,12,12; /* Adicionado para fundos de seção */
}

/* Reset e Configurações Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--background-color); /* Fallback */
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  position: relative; 
}

body::before {
  content: "";
  position: fixed; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('renderizacao-3d-de-fundo-de-textura-hexagonal.jpg'); /* NOME CORRETO DA IMAGEM */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center; 
  background-attachment: fixed; 
  z-index: -1; 
  opacity: 0.25; /* Ajuste este valor (0.0 a 1.0) para a transparência desejada */
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  text-align: center;
}
p {
  margin-bottom: 1rem;
  color: var(--light-text);
}
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: var(--text-color);
}

/* Top Bar Fixa */
.top-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px 25px;
  background: rgba(13, 13, 13, 0.98);
  z-index: 1100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.nav-container {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.social-icons {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 1.2rem;
}
.social-icons a {
  font-size: 1.6rem;
  color: var(--text-color);
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.2);
}
.social-icons .fa-whatsapp:hover { color: #25D366; }
.social-icons .fa-instagram:hover { color: #f0288c; }
.social-icons .fa-google:hover { color: #DB4437; }

/* Links de Navegação da Top Bar */
.top-bar .tab-btn {
  border: none;
  background: none;
  padding: 0.5rem 0.8rem;
  font-size: 0.95rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  color: var(--light-text);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.top-bar .tab-btn::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}
.top-bar .tab-btn:hover,
.top-bar .tab-btn.active-link {
  color: var(--primary-color);
  transform: scale(1.05);
}
.top-bar .tab-btn:hover::after,
.top-bar .tab-btn.active-link::after {
  width: 70%;
}

/* Cabeçalho Principal */
.header {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 4rem;
  width: 100%;
  background: linear-gradient(175deg,
              rgba(var(--primary-color-rgb), 0.03) 0%, /* Laranja ainda mais sutil sobre o novo fundo */
              transparent 70%);
  color: var(--text-color);
  position: relative; 
  z-index: 1; /* Para ficar acima do body::before */
}
.logo {
  width: 100%;
  max-width: 1000px; 
  margin-bottom: 2rem; 
  transition: transform 0.3s ease;
}
.logo:hover {
  transform: scale(1.03); 
}
.tagline {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: none;
  animation: fadeIn 1.5s ease;
  max-width: 800px;
  margin: 0 auto 1rem auto;
}
.sub-tagline {
  font-size: 1.1rem;
  color: var(--light-text);
  text-shadow: none;
  margin: 0 auto 2rem auto;
  max-width: 600px;
}

/* Botões (CTAs) */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0, 0.3);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-color);
}
.btn-primary:hover {
  background-color: #e65c00;
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0,0,0, 0.4);
}
.btn-secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--text-color);
  transform: scale(1.03);
}
.btn-whatsapp {
  background-color: #25D366;
  color: white;
}
.btn-whatsapp:hover {
  background-color: #1DAA50;
  transform: scale(1.03);
}
.btn-whatsapp i { margin-right: 8px; }

.btn-pulse {
  animation: pulse 1.8s infinite ease-in-out;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.4);}
  50% { transform: scale(1.05); box-shadow: 0 6px 20px rgba(var(--primary-color-rgb), 0.6);}
  100% { transform: scale(1); box-shadow: 0 4px 10px rgba(var(--primary-color-rgb), 0.4);}
}

/* Conteúdo Principal e Seções */
.main-content {
  max-width: 1100px;
  width: 100%;
  padding: 0 1rem;
  position: relative; 
  z-index: 1; /* Para ficar acima do body::before */
}
.page-section {
  padding: var(--section-padding);
  width: 100%;
  margin-bottom: 2rem; 
  border-radius: var(--border-radius-std); 
  animation: fadeIn 1s ease-out;
  background-color: rgba(var(--secondary-color-rgb), 0.85); /* Fundo semi-transparente para todas as seções */
  position: relative; 
  z-index: 1; /* Garante que a seção fique acima do body::before */
}
/* Removido .page-section:nth-child(even) para consistência com o fundo global */


/* Seção Hero (Home) */
.hero {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  color: var(--text-color);
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: var(--border-radius-std);
  margin-bottom: 2rem;
  /* background-color removido daqui, pois a imagem é inline e o overlay é no ::before */
  z-index: 1; 
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1; 
  border-radius: var(--border-radius-std);
}
/* .hero > * já tem z-index: 2, o que é bom */

/* Seção "Por que Escolher" */
.porque-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.porque-item {
    background-color: rgba(var(--tertiary-color-rgb, 34, 34, 34), 0.9); /* Usando tertiary color com mais opacidade */
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-std);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    border: 1px solid #282828;
}
:root { /* Adicione esta variável se ainda não existir */
  --tertiary-color-rgb: 34, 34, 34; 
}
.porque-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    background-color: rgba(var(--tertiary-color-rgb), 0.98);
}
.porque-item i {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}
.porque-item h3 {
    color: var(--text-color);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

/* Seção de Serviços */
.servicos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.servico-card {
  background-color: rgba(var(--tertiary-color-rgb), 0.9); 
  padding: 2rem 1.5rem;
  border-radius: var(--border-radius-std);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #333;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.servico-card:hover {
  background-color: rgba(var(--tertiary-color-rgb), 0.98); 
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(var(--primary-color-rgb), 0.2);
}
/* ... (restante do CSS para .servico-card e seus filhos permanece o mesmo) ... */
.service-icon {
  font-size: 2.8rem; 
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}
.servico-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg); 
}
.servico-card h3 {
  font-size: 1.3rem; 
  color: var(--text-color);
  margin-bottom: 0.8rem;
}
.descricao-servico { 
  font-size: 0.95rem;
  color: var(--light-text);
  opacity: 0.9; 
  max-height: none; 
  padding-top: 0;
}
.cta-centered {
    text-align: center;
    margin-top: 3rem;
}

/* Seção Diferenciais (com imagem de fundo) */
.section-com-imagem-fundo {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: var(--text-color);
    border-radius: var(--border-radius-std);
    margin: 2rem 0; /* Mantido o espaçamento para seções com BG próprio */
    /* z-index já está em .page-section */
}
.overlay-para-texto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(13, 13, 13, 0.88);
    z-index: 1; /* Acima da imagem de fundo da seção, abaixo do conteúdo */
    border-radius: var(--border-radius-std);
}
.content-sobre-overlay {
    position: relative;
    z-index: 2; /* Conteúdo acima do overlay da seção */
    text-align: center;
}
/* ... (restante do CSS para .diferenciais-container e .diferencial-item permanece o mesmo) ... */
.diferenciais-container {
     display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.diferencial-item {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: 25px; 
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(var(--primary-color-rgb), 0.3);
}
.diferencial-item:hover {
    background-color: rgba(var(--primary-color-rgb), 0.8);
    transform: scale(1.05);
}
.diferencial-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.diferencial-item:hover i {
    color: var(--text-color);
}
.diferencial-item p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--text-color);
}

/* Seção Sobre Nós */
.sobre-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: left;
}
/* ... (restante do CSS para .sobre-img e .sobre-texto permanece o mesmo) ... */
.sobre-img {
  width: 100%;
  max-width: 320px; 
  border-radius: 50%; 
  border: 4px solid var(--primary-color); 
  box-shadow: 0 0 25px rgba(var(--primary-color-rgb), 0.5);
  object-fit: cover; 
  aspect-ratio: 1/1; 
}
.sobre-texto p {
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: justify; 
}


/* Seção Depoimentos */
.depoimentos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.depoimento-card {
    background-color: rgba(var(--tertiary-color-rgb), 0.9);
    padding: 2rem;
    border-radius: var(--border-radius-std);
    border-left: 6px solid var(--primary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}
/* ... (restante do CSS para .depoimento-card filhos permanece o mesmo) ... */
.depoimento-card p { 
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    font-size: 1rem;
    flex-grow: 1; 
}
.depoimento-card h4 { 
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
.estrelas {
    color: #f0c040; 
    font-size: 1.2rem;
    margin-top: auto; 
}

/* Seção FAQ (Acordeão) */
.faq-container {
    max-width: 750px;
    margin: 2rem auto 0 auto;
}
.faq-item {
    background-color: rgba(var(--tertiary-color-rgb), 0.9);
    margin-bottom: 12px;
    border-radius: var(--border-radius-std);
    border: 1px solid #333;
    overflow: hidden;
}
.faq-item.active {
    border-color: var(--primary-color);
    background-color: rgba(var(--tertiary-color-rgb), 0.98);
}
/* ... (restante do CSS para .faq-pergunta e .faq-resposta permanece o mesmo) ... */
.faq-pergunta {
    background: transparent;
    color: var(--text-color);
    width: 100%;
    border: none;
    padding: 1.2rem 1.5rem;
    font-size: 1.15rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}
.faq-pergunta:hover, .faq-item.active .faq-pergunta {
    color: var(--primary-color);
}
.faq-pergunta i { 
    transition: transform 0.3s ease;
    font-size: 1rem;
}
.faq-item.active .faq-pergunta i {
    transform: rotate(180deg);
}
.faq-resposta {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}
.faq-item.active .faq-resposta {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem; 
    max-height: 300px; 
}
.faq-resposta p {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.7;
}

/* Seção de Contato Final */
.section-contato-final {
  background-image: url('contato.jpg'); 
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  color: var(--text-color);
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin: 2rem 0;
  border-radius: var(--border-radius-std);
  /* z-index já está em .page-section */
}
.section-contato-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.8);
  z-index: 1; /* Acima da imagem de fundo da seção, abaixo do conteúdo */
  border-radius: var(--border-radius-std);
}
.section-contato-final > * {
  position: relative;
  z-index: 2; /* Conteúdo acima do overlay da seção */
}
/* ... (restante do CSS para .section-contato-final filhos permanece o mesmo) ... */
.section-contato-final h2 {
    color: var(--primary-color); 
    font-size: 2.8rem; 
    text-shadow: none; 
}
.section-contato-final > p { 
    font-size: 1.2rem; 
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
    color: var(--light-text); 
    line-height: 1.7;
}
.contato-img-decor {
   display: none; 
}
.btn-cta-final {
    padding: 1.1rem 3rem; 
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1.5px; 
}
.btn-cta-final i {
    margin-right: 12px;
}
.contato-info {
    margin-top: 3rem; 
    font-size: 1.05rem;
    color: var(--light-text); 
}
.contato-info i {
    color: var(--primary-color); 
    margin: 0 5px 0 15px;
}

/* Botão Flutuante do WhatsApp */
.btn-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-weight: bold;
  padding: 0.8rem 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0, 0.5);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  z-index: 999;
  opacity: 0.95;
  animation: floatButton 2.5s ease-in-out infinite;
  font-family: 'Montserrat', sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-float:hover {
  background-color: #e65c00;
  box-shadow: 0 6px 20px rgba(0,0,0, 0.6);
  transform: scale(1.1);
  opacity: 1;
}
.btn-float i { font-size: 1.5rem; }
.btn-float span {
    font-size: 0.9rem;
    font-weight: 500;
}
@keyframes floatButton {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Rodapé */
.footer {
  width: 100%;
  padding: 2.5rem 1rem;
  text-align: center;
  background-color: #080808;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-top: auto;
  position: relative; 
  z-index: 1; /* Para ficar acima do body::before */
}
.footer p {
  margin-bottom: 0.5rem;
  color: #aaa;
}
.footer-social {
    margin-top: 1rem;
}
.footer-social a {
    font-size: 1.5rem;
    color: var(--light-text);
    margin: 0 0.75rem;
    transition: color 0.3s ease, transform 0.3s ease;
}
.footer-social a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Animação de Fade In Geral */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}


/* RESPONSIVIDADE */
@media (max-width: 1024px) {
  html { font-size: 15px; }
  .hero h2 { font-size: 2.6rem; }
  .tagline { font-size: 2.2rem; }
  .top-bar { padding: 10px 20px; }
  .nav-container { gap: 0.8rem; }
  .top-bar .tab-btn { font-size: 0.9rem; }
  h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
  .header {
    padding-top: 120px;
  }
  .logo { max-width: 350px; } 
  .tagline { font-size: 2rem; }
  .hero h2 { font-size: 2.2rem; }
  .hero p.home-description { font-size: 1.2rem; max-width: 90%; }

  .top-bar {
    grid-template-columns: 1fr;
    padding: 10px 15px;
    justify-items: center;
  }
  .nav-container {
    grid-column: 1 / -1;
    order: 2;
    padding-top: 8px;
    gap: 0.6rem;
    justify-content: center;
    width: 100%;
  }
  .social-icons {
    grid-column: 1 / -1;
    justify-self: center;
    order: 1;
    padding-bottom: 8px;
  }

  .top-bar .tab-btn { font-size: 0.85rem; padding: 0.3rem 0.5rem; }
  .servicos-container { grid-template-columns: 1fr; }
  .porque-container { grid-template-columns: 1fr; }
  .depoimentos-container { grid-template-columns: 1fr; }
  .diferenciais-container { gap: 1rem; }
  .diferencial-item { padding: 0.8rem 1.2rem; font-size: 0.9rem;}

  .page-section { padding: 3rem 1rem; }
  .btn-float { padding: 0.7rem 1rem; bottom: 20px; right: 20px; }
  .btn-float i { font-size: 1.3rem; }
  .btn-float span { font-size: 0.8rem; }
  h2 { font-size: 2rem; }

  .sobre-content { flex-direction: column; }
  .section-contato-final h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .tagline { font-size: 1.7rem; }
  .header { padding-top: 130px; }
  .logo { max-width: 280px; } 
  .hero h2 { font-size: 1.9rem; }
  .hero p.home-description { font-size: 1.05rem; }
  .btn, .btn-float { font-size: 0.9rem; padding: 0.8rem 1.5rem; }
  h2 { font-size: 1.8rem; }

  .nav-container {
     gap: 0.4rem;
     flex-wrap: wrap;
     justify-content: center;
  }
  .top-bar .tab-btn { font-size: 0.8rem; padding: 0.2rem 0.4rem; letter-spacing: -0.5px;}
  .social-icons { gap: 1rem; }
  .social-icons a { font-size: 1.5rem; }

  .btn-float { display: none; }
}
