/* Lagunna Piscinas - Site institucional
   Paleta azul/água, limpo e acessível */

:root {
  --azul-escuro: #0d3b66;
  --azul-medio: #1a5f7a;
  --azul-agua: #159895;
  --azul-claro: #57c5b6;
  --branco: #f8fafc;
  --texto: #1e293b;
  --texto-suave: #475569;
  --sombra: 0 4px 14px rgba(13, 59, 102, 0.12);
  --raio: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Cabeçalho */
.site-header {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 1rem 1.5rem;
  text-align: center;
}

.site-header .site-logo {
  display: block;
  margin: 0 auto 0.75rem;
  max-height: 80px;
  width: auto;
  height: auto;
  max-width: 200px;
  object-fit: contain;
}

.site-header h1 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header .tagline {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Conteúdo principal */
main {
  flex: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  width: 100%;
}

/* Hero */
.hero {
  text-align: center;
  padding: 2.5rem 0;
}

.hero h2 {
  font-size: 1.75rem;
  color: var(--azul-escuro);
  margin-bottom: 0.75rem;
}

.hero p {
  color: var(--texto-suave);
  margin-bottom: 1.5rem;
}

.cta-whatsapp {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 1.75rem;
  border-radius: var(--raio);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--sombra);
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.cta-whatsapp:focus {
  outline: 2px solid var(--azul-escuro);
  outline-offset: 2px;
}

/* Bloco Onde estamos / Contato (dados para Meta) */
.contato-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--raio);
  padding: 1.75rem;
  margin-top: 2rem;
  box-shadow: var(--sombra);
}

.contato-section h3 {
  font-size: 1.15rem;
  color: var(--azul-escuro);
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--azul-claro);
  padding-bottom: 0.5rem;
}

.contato-section address,
.contato-section .contato-item {
  font-style: normal;
  color: var(--texto);
  margin-bottom: 0.5rem;
}

.contato-section a[href^="tel:"],
.contato-section a[href^="mailto:"],
.contato-section a[href^="https://wa"] {
  color: var(--azul-medio);
  text-decoration: none;
}

.contato-section a[href^="tel:"]:hover,
.contato-section a[href^="mailto:"]:hover,
.contato-section a[href^="https://wa"]:hover {
  text-decoration: underline;
}

.contato-section .cnpj {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--texto-suave);
}

/* Rodapé */
.site-footer {
  background: var(--azul-escuro);
  color: var(--branco);
  padding: 1.25rem 1.5rem;
  text-align: center;
  margin-top: auto;
  font-size: 0.9rem;
}

.site-footer a {
  color: var(--azul-claro);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer .ano {
  margin-top: 0.5rem;
  opacity: 0.85;
}

/* Responsivo */
@media (min-width: 600px) {
  .site-header h1 {
    font-size: 1.75rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .contato-section {
    padding: 2rem;
  }

  .contato-section h3 {
    font-size: 1.25rem;
  }
}
