.card-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-header {
  text-align: center;
  padding: 1rem 0 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.card-header__logo {
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
}

.card-header__title {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
  font-weight: 700;
}

.card-header__subtitle {
  font-size: 1rem;
  margin: 0 0 1rem;
  color: #555;
  font-weight: 400;
}

.quick-actions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 480px) {
  .quick-actions__list { grid-template-columns: repeat(3, 1fr); }
}

.quick-actions__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #1a1a1a;
  min-height: 4.5rem;
  justify-content: center;
}

.quick-actions__link:hover,
.quick-actions__link:focus {
  background: #eef3f8;
  border-color: #0b4f8a;
  text-decoration: none;
}

.quick-actions__icon {
  width: 1.5rem;
  height: 1.5rem;
  background: #0b4f8a;
  border-radius: 50%;
  opacity: 0.85;
}

.section {
  padding: 1.25rem 0;
  border-bottom: 1px solid #eee;
}

.section__title {
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
  color: #0b4f8a;
}

.subsection__title {
  font-size: 1rem;
  margin: 1rem 0 0.5rem;
}

.bullet-list {
  margin: 0.5rem 0;
  padding-right: 1.25rem;
}

.bullet-list li { margin-bottom: 0.25rem; }

.quote {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  background: #f8f9fa;
  border-right: 3px solid #0b4f8a;
  font-style: italic;
}

.press-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.press-list li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dotted #ddd;
}

.press-list__cta { color: #555; }

.contact-block__name { margin: 0 0 0.75rem; }
.contact-dl { margin: 0 0 1rem; }
.contact-dl dt { font-weight: 600; margin-top: 0.5rem; }
.contact-dl dd { margin: 0.15rem 0 0; }

.section--brand { text-align: center; }
.brand-footer__title {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.section--cta { text-align: center; }

.btn {
  display: inline-block;
  padding: 0.65rem 1.25rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}

.btn--primary { background: #0b4f8a; color: #fff; }
.btn--whatsapp { background: #25d366; color: #fff; }
.btn--share { background: #eee; color: #1a1a1a; margin: 0.25rem; }

.lead-form { max-width: 24rem; }
.form-field { margin-bottom: 0.75rem; }
.form-field label { display: block; margin-bottom: 0.25rem; font-weight: 600; }
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font: inherit;
}
.form-field--checkbox { display: flex; gap: 0.5rem; align-items: flex-start; }
.form-field--checkbox input { width: auto; margin-top: 0.25rem; }
.form-field--hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.turnstile-container { margin: 1rem 0; min-height: 65px; }
.turnstile-container.hidden { display: none; }
.form-status { min-height: 1.25rem; margin-top: 0.5rem; }
.form-status--error { color: #b00020; }
.form-status--success { color: #0d6b30; }
.form-status--whatsapp { color: #128c7e; }
.form-fallback { font-size: 0.9rem; color: #555; }

.share-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

.site-footer {
  text-align: center;
  padding: 1.5rem 0 0.5rem;
  font-size: 0.9rem;
  color: #666;
}
.site-footer__nav { display: flex; gap: 1rem; justify-content: center; margin-top: 0.5rem; }

.a11y-fab {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: none;
  background: #0b4f8a;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.a11y-panel {
  position: fixed;
  bottom: 5rem;
  left: 1rem;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
  z-index: 901;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 12rem;
}
.a11y-panel[hidden] { display: none; }
.a11y-panel button {
  padding: 0.4rem 0.6rem;
  cursor: pointer;
}
.a11y-panel__close {
  align-self: flex-end;
  border: none;
  background: transparent;
  font-size: 1.25rem;
}
.a11y-panel__title { margin: 0; font-size: 1rem; }
