:root {
  --cor-fundo: #0a1a16;
  --cor-principal: #00d084;
  --cor-secundaria: #008cff;
  --texto-claro: #f5f5f5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--cor-fundo);
  color: var(--texto-claro);
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  width: 100%;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  height: 60px;
}

.logo-text {
  font-size: 1.6rem;
  color: var(--cor-principal);
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: var(--texto-claro);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--cor-principal);
}

/* HERO */
.hero {
  background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.overlay {
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  border-radius: 15px;
}

.hero h1 {
  font-size: 3rem;
  color: var(--cor-principal);
}

.hero p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  background: var(--cor-principal);
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: var(--cor-secundaria);
  color: #fff;
}

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.section h2 {
  color: var(--cor-principal);
  margin-bottom: 1rem;
  text-align: center;
  font-size: 2rem;
}

.section ul {
  list-style: none;
  padding-left: 0;
}

.section li {
  margin: 1rem 0;
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
}

/* CONTATO */
.contato {
  text-align: center;
}

.contato-icon {
  width: 150px;
  margin: 1rem 0;
}

/* RODAPÉ */
footer {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
}

.frase-destaque {
  color: var(--cor-principal);
  margin-bottom: 1rem;
  font-weight: 500;
}

/* BOTÃO WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 200;
  animation: piscar 2s infinite;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 255, 0, 0.6);
}

@keyframes piscar {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

/* RESPONSIVIDADE */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* LOGO TEXTO NO CABEÇALHO */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .principal {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--cor-principal);
}

.logo-text .sub {
  font-size: 0.9rem;
  color: var(--texto-claro);
  letter-spacing: 1px;
}

/* LOGO NA HOME */
.hero-logo {
  width: 160px;
  margin-bottom: 1rem;
}

/* CENTRALIZAR SEÇÃO SOBRE */
#sobre {
  text-align: center;
}

/* LOGO TEXTO NO CABEÇALHO — LADO A LADO */
.logo-container {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.logo-principal {
  font-size: 2rem;
  font-weight: bold;
  color: var(--cor-principal);
  letter-spacing: 1px;
}

.logo-secundario {
  font-size: 1.1rem;
  color: #66ffcc; /* tom parecido, ligeiramente mais claro */
  font-weight: 500;
}

/* LOGO NA HOME */
.hero-logo {
  width: 200px; /* aumentei o tamanho */
  margin-bottom: 1rem;
}

/* DIMINUIR TEXTO NA HOME */
.hero p {
  margin: 0.5rem 0;
  font-size: 1rem; /* antes era 1.2rem */
}
/* === AJUSTES FINAIS DO CABEÇALHO === */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.logo-principal {
  font-size: 2.2rem;   /* um pouco maior para destacar */
  font-weight: 700;
  color: var(--cor-principal);
  letter-spacing: 1px;
}

.logo-secundario {
  font-size: 1.1rem;
  color: #66ffcc;      /* tom semelhante ao principal */
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Ajustes visuais no mobile */
@media (max-width: 768px) {
  .logo-container {
    justify-content: center;
    text-align: center;
  }

  .logo-principal {
    font-size: 1.8rem;
  }

  .logo-secundario {
    font-size: 0.95rem;
    display: block;
    margin-top: 2px;
  }
}

/* === HOME (hero) === */
.hero-logo {
  width: 220px; /* aumento leve para destaque */
  margin-bottom: 1rem;
}

.hero p {
  font-size: 0.95rem; /* menor e mais equilibrado visualmente */
  opacity: 0.9;
}
.sobre-cta {
  margin-top: 2rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--cor-principal);
  font-weight: 500;
}
/* === SEÇÃO SOBRE — ESTILO MODERNO === */
#sobre {
  text-align: center;
  font-size: 1rem; /* aumento leve do tamanho da fonte */
  font-family: 'Poppins', 'Segoe UI', sans-serif; /* estilo moderno e elegante */
  line-height: 1.8;
  color: #e8f6f0; /* tom claro, mais suave que o branco puro */
  letter-spacing: 0.3px;
}

/* Parágrafo de chamada à ação */
.sobre-cta {
  margin-top: 2.5rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--cor-principal);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Título "Sobre" harmonizado com o novo estilo */
#sobre h2 {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--cor-principal);
  margin-bottom: 1.5rem;
}
.lang-select {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-select img {
  width: 22px;
  height: auto;
  cursor: pointer;
  transition: transform 0.2s;
}

.lang-select img:hover {
  transform: scale(1.1);
}
/* === MENU MOBILE === */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--cor-principal);
  cursor: pointer;
}

/* Esconde o menu por padrão no mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1.5rem 0;
    gap: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .lang-select {
    justify-content: center;
  }
}







