/* ===== Reset e base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-whatsapp: #25d366;
  --green-dark: #128c7e;
  --green-light: #dcf8c6;
  --blue-deep: #0f172a;
  --blue-mid: #1e293b;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --accent: #0ea5e9;
  --gray-400: #94a3b8;
  --radius: 16px;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.08);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(165deg, #0f172a 0%, #1e293b 40%, #0f172a 100%);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ===== Layout da página ===== */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  max-width: 560px;
  margin: 0 auto;
  padding: 2rem 1.5rem 1.5rem;
}

/* ===== Header / Logo ===== */
.header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo-wrap {
  display: inline-block;
}

.logo {
  max-width: 180px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

/* ===== Conteúdo principal ===== */
.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* ===== Hero ===== */
.hero {
  text-align: center;
  padding: 1.5rem 0;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-whatsapp);
  background: rgba(37, 211, 102, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.title {
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #fff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1rem;
  color: var(--gray-300);
  font-weight: 400;
}

/* ===== Botões CTA ===== */
.cta-section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-whatsapp {
  background: linear-gradient(135deg, var(--green-whatsapp) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
}

.btn-icon {
  font-size: 1.25rem;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

/* ===== Bloco telefone ===== */
.contact-block {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.phone {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-whatsapp);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.phone:hover {
  color: var(--green-light);
}

/* ===== Unidades / Localidades ===== */
.locations {
  text-align: center;
  padding: 1.5rem 0;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--gray-300);
  margin-bottom: 1rem;
}

.link-site {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

.link-site:hover {
  border-bottom-color: var(--accent);
  color: #38bdf8;
}

/* ===== Footer ===== */
.footer {
  margin-top: auto;
  padding-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.credits {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.footer-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-300);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--green-whatsapp);
}

/* ===== Responsivo extra ===== */
@media (max-width: 380px) {
  .page {
    padding: 1.25rem 1rem;
  }
  .phone {
    font-size: 1.25rem;
  }
}
