/* --- IMPORTAÇÃO DAS FONTES --- */
@import url('https://fonts.googleapis.com/css2?family=Julius+Sans+One&family=Poppins:wght@300;400;600&display=swap');

/* --- DEFINIÇÃO DE CORES (Paleta) --- */
:root {
  --color-terracotta: #B05044; 
  --color-olive: #3E3F20;      
  --color-bright-red: #A91A1B; 
  --color-beige: #F0E4D8;      
  --color-light-brown: #B77855; 
  --color-text-dark: #333333; 
  --color-text-light: #F0E4D8; 
  --color-whatsapp: #25D366; /* Cor do WhatsApp */
}

/* --- ESTILOS GERAIS (BODY) --- */
body {
  font-family: 'Poppins', sans-serif; 
  background-color: var(--color-beige); 
  color: var(--color-text-dark);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Garante que imagens nunca ultrapassem a largura da tela no celular */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- TÍTULOS E FONTES DE DESTAQUE --- */
h1, h2, h3, h4, h5, h6, .logo a {
  font-family: 'Julius Sans One', sans-serif;
  color: var(--color-bright-red); 
}

h2 {
  text-align: center;
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 30px;
}

p {
  font-size: 1.1em;
  max-width: 700px; 
  margin: 15px auto;
  text-align: center;
}

/* --- HEADER E MENU DE NAVEGAÇÃO --- */
.site-header {
  background-color: var(--color-terracotta); 
  padding: 10px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header .logo { margin: 0; }

.site-header .logo a {
  color: var(--color-text-light); 
  text-decoration: none;
  font-size: 2.0em; /* --- FONTE DO LOGO REDUZIDA (era 2.8em) --- */
  font-weight: normal;
}

.menu-principal ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.menu-principal li a {
  font-family: 'Julius Sans One', sans-serif;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  font-size: 1.1em;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.menu-principal li a.active,
.menu-principal li a:hover {
  background-color: var(--color-olive); 
  color: var(--color-text-light);
}

.menu-toggle {
  display: none; 
  background: none;
  border: none;
  color: var(--color-text-light);
  font-size: 30px;
  cursor: pointer;
}

/* --- CONTEÚDO PRINCIPAL --- */
.main-content {
  padding: 20px 0;
  min-height: 60vh;
}

.main-content .container {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* --- BOTÃO WHATSAPP --- */
.btn-whatsapp {
  display: inline-block;
  background-color: var(--color-whatsapp);
  color: white;
  font-weight: bold;
  text-decoration: none;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 15px;
  font-family: 'Poppins', sans-serif;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.btn-whatsapp:hover {
  background-color: #1DA851;
  text-decoration: none;
  color: white;
}

/* --- SEÇÃO "SOBRE" E "NÚMEROS" --- */
.sobre-content p { text-align: justify; }

.destaque {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.3em !important;
  color: var(--color-olive);
  text-align: center;
  border-left: 4px solid var(--color-terracotta);
  padding-left: 15px;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 20px;
  padding: 25px;
  background-color: var(--color-light-brown); 
  border-radius: 8px;
}

.numero-item {
  background-color: var(--color-beige); 
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.numero-item strong {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 2.2em; /* Reduzi levemente o padrão */
  color: var(--color-bright-red); 
  display: block;
  line-height: 1.1;
}

/* Classe especial para textos muito longos nos números (ex: Milhões) */
.texto-longo {
  font-size: 0.6em; /* Fica bem menor para caber */
  display: block;
}

.numero-item span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9em;
  color: var(--color-olive); 
  text-transform: uppercase;
  margin-top: 5px;
}

/* Seção ODS */
.ods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 15px;
    margin-top: 20px;
}
.ods-item {
    background-color: var(--color-beige);
    border: 1px solid var(--color-terracotta);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
.ods-item strong {
    font-family: 'Julius Sans One', sans-serif;
    font-size: 1.5em;
    color: var(--color-terracotta);
    display: block;
}
.ods-item span {
    font-size: 1em;
    color: var(--color-olive);
}

/* --- PÁGINA DE PRODUTOS --- */
.produto-lista {
  list-style: none;
  padding: 0;
  text-align: center;
}
.produto-lista li {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.5em;
  color: var(--color-olive);
  margin-bottom: 10px;
}
.contato-produtos {
  background-color: var(--color-beige);
  padding: 20px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
}

/* --- PÁGINA DE CONTATO --- */
.contato-form form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 0 auto;
}
.contato-form input,
.contato-form textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 15px;
}
.contato-form button {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.2em;
  padding: 12px 20px;
  background-color: var(--color-olive);
  color: var(--color-text-light);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contato-form button:hover {
  background-color: var(--color-terracotta);
}

.social-links {
  text-align: center;
  margin-top: 30px;
}
.social-links a {
  font-family: 'Julius Sans One', sans-serif;
  font-size: 1.2em;
  text-decoration: none;
  color: var(--color-olive);
  margin: 0 15px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  display: inline-block; 
}
.social-links a:hover {
  color: var(--color-terracotta);
  background-color: var(--color-beige);
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--color-olive); 
  color: var(--color-text-light);
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}
.site-footer p {
  font-size: 0.9em;
  margin: 0;
  text-align: center;
}

/* --- PÁGINA INICIAL (HOME) --- */
.home-page .main-content .container {
    background-color: transparent; 
    box-shadow: none; 
    padding: 0; 
}
.home-hero {
  text-align: center;
  padding: 80px 20px; 
  background-color: #ffffff; 
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  position: relative; 
  overflow: hidden; 
}
.home-hero h2 {
  font-size: 3.2em; 
  margin-top: 20px;
  margin-bottom: 25px;
  color: var(--color-bright-red); 
}
.home-hero p {
  font-size: 1.25em; 
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  color: var(--color-text-dark); 
}
.home-hero p a {
  color: var(--color-terracotta); 
  text-decoration: none; 
  transition: color 0.3s ease;
}
.home-hero p a:hover {
  color: var(--color-olive); 
  text-decoration: underline; 
}
.graphic-element {
  position: absolute;
  bottom: -80px; 
  left: -80px;
  width: 200px; 
  height: 200px;
  background-color: var(--color-terracotta); 
  border-radius: 50%; 
  opacity: 0.15; 
  z-index: 0; 
}
.graphic-element.top-right {
    bottom: auto;
    top: -80px;
    left: auto;
    right: -80px;
}

/* --- RESPONSIVIDADE (MOBILE) --- */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .site-header .logo a {
    font-size: 1.6em; /* Logo ainda menor no celular */
  }
  .menu-toggle {
    display: block; 
    padding: 5px;
  }
  .menu-principal {
    display: none; 
    width: 100%;
    margin-top: 15px;
    background-color: rgba(0,0,0,0.05); 
    border-radius: 4px;
  }
  .menu-principal.active {
    display: block; 
    animation: fadeIn 0.3s ease;
  }
  .menu-principal ul {
    flex-direction: column; 
    width: 100%;
  }
  .menu-principal li a {
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
  }
  h2 {
    font-size: 1.8em !important;
    margin-top: 30px;
  }
  p {
    font-size: 1em;
    padding: 0 10px;
  }
  .home-hero { padding: 40px 15px; }
  .home-hero h2 { font-size: 2em; }
  .numeros-grid, .ods-grid {
    grid-template-columns: 1fr; 
    padding: 15px;
  }
  .contato-form form { width: 100%; }
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}