/* normalize.css v8.0.1 — MIT License — github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

a {
  background-color: transparent;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

[hidden] {
  display: none;
}

/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #f5f5f5;
  color: #333;
}

a {
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

/* Hero */
.hero {
  background: #4a6645;
  padding: 40px 16px 28px;
  text-align: center;
}

.hero__logo {
  display: block;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  letter-spacing: 0.5px;
  margin: 12px 0 0;
}

.hero__subtitle_2 {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  letter-spacing: 0.25px;
  margin: 12px 0 0;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Container */
.container {
  max-width: 640px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Address */
address {
  font-style: normal;
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

/* Card */
.card {
  background: white;
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px;
}

.card p:last-child {
  margin-bottom: 0;
}

.card .card__label {
  font-size: 11px;
  font-weight: 700;
  color: #90be44;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0 0 10px;
}

/* Linhas de contato */
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.contact-row__label {
  color: #444;
}

.contact-row__value {
  font-weight: 600;
}

.contact-row__value--emergency {
  color: #c0392b;
}

.contact-row__value--whatsapp {
  color: #25D366;
}

.contact-row a {
  color: inherit;
}

/* Separador */
.divider {
  height: 1px;
  background: #f0f0f0;
  margin: 4px 0;
}

/* Horário: badge inline */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(144, 190, 68, 0.1);
  border-radius: 20px;
  padding: 2px 10px;
}

.hours-badge__dot {
  width: 5px;
  height: 5px;
  background: #90be44;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

.hours-badge__text {
  font-size: 11px;
  font-weight: 700;
  color: #314230;
}

/* Pills de serviços */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.pill {
  background: #f0f7e0;
  border: 1px solid #c8e6a0;
  color: #314230;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 13px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #555;
}

.instagram-link__icon {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  flex-shrink: 0;
}

/* Botões de redes sociais */
.social-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-block;
  color: white;
  border-radius: 5px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
}

.social-btn--facebook {
  background: #1877F2;
}

.social-btn--instagram {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* Links de documentos */
.doc-links {
  display: flex;
  gap: 8px;
}

.doc-link {
  flex: 1;
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
}

.doc-link--primary {
  border: 1px solid #90be44;
  color: #314230;
}

.doc-link--secondary {
  border: 1px solid #ccc;
  color: #666;
}

/* Rodapé */
.footer {
  background: #4a6645;
  padding: 32px 16px 20px;
  text-align: center;
}

.footer__logo {
  display: block;
  max-width: 200px;
  width: 60%;
  margin: 0 auto 16px;
  opacity: 0.9;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  margin: 0 0 8px;
}

.footer__tech {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__tech a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: underline;
}

/* Cabeçalho da página de política */
.page-header {
  background: #4a6645;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-header__back {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.page-header__logo {
  height: 40px;
  display: block;
}

/* LGPD: lista de direitos */
.lgpd-rights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lgpd-rights li {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #444;
}

.lgpd-rights__check {
  color: #90be44;
  font-weight: 700;
  flex-shrink: 0;
}

/* Botões da política */
.policy-buttons {
  display: flex;
  gap: 8px;
}

.btn {
  border-radius: 6px;
  padding: 12px 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  display: block;
}

.btn--primary {
  background: #314230;
  color: white;
  flex: 2;
}

.btn--secondary {
  background: #90be44;
  color: white;
  flex: 1;
}

.policy-contact {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin: 4px 0 0;
}

/* Responsivo */
@media (max-width: 480px) {
  .hero {
    padding: 32px 12px 20px;
  }

  .hero__logo {
    max-width: 240px;
  }

  .container {
    padding: 12px;
  }

  .doc-links {
    flex-direction: column;
  }

  .policy-buttons {
    flex-direction: column;
  }
}