/* Complemento ao CSS do Elementor. Só o que o site PHP precisa a mais. */

.cc-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.cc-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: .75rem 1.25rem;
  background: #fff;
  color: #111;
  font: 600 15px/1.2 system-ui, sans-serif;
}
.cc-skip:focus { left: 0; }

:where(a, button, [tabindex]):focus-visible {
  outline: 3px solid #00a884;
  outline-offset: 2px;
}

/* Alvos de toque: item 10 da auditoria.
   min-height sozinho não resolve — nesses links o <a> é inline, e altura
   mínima em elemento inline não gera caixa. Daí o display: flex junto. */
@media (max-width: 767px) {
  .cc-page .elementor-nav-menu--dropdown a.elementor-item,
  .cc-page .elementor-icon-list-item > a {
    display: flex;
    align-items: center;
    min-height: 44px;
  }
  .cc-page a.elementor-button,
  .cc-page .elementor-social-icon {
    min-height: 44px;
    min-width: 44px;
  }
  .cc-cta__mail {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

/* CTA que substituiu o formulário do Elementor. */
.cc-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cc-cta__wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  min-height: 48px;
  border-radius: 6px;
  background: #25d366;
  color: #06301c;
  font: 600 16px/1.2 inherit;
  text-decoration: none;
  transition: background .15s ease;
}
.cc-cta__wa:hover, .cc-cta__wa:focus { background: #1eb955; color: #06301c; }
.cc-cta__icon { width: 22px; height: 22px; flex: none; }
.cc-cta__mail {
  font: 500 15px/1.4 inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cc-404 {
  max-width: 40rem;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  font: 400 17px/1.6 system-ui, -apple-system, "Segoe UI", sans-serif;
}
.cc-404 h1 { font-size: 2rem; margin: 0 0 1rem; }

@media (prefers-reduced-motion: reduce) {
  .cc-cta__wa { transition: none; }
}
