/* AluNatal — estilos das landings, atalhos da home e banner de cookies. */

.header--lp {
  background: rgba(24, 24, 24, 0.94);
}
.header--lp .header__phone {
  margin-left: auto;
  color: var(--color-text);
  font-size: var(--type-ui);
  font-weight: 600;
  letter-spacing: var(--track-ui);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.header--lp .header__phone:hover { color: var(--color-accent-hover); }
.header--lp .header__actions { margin-left: 0.75rem; }

.hero--static {
  min-height: auto;
  padding-bottom: 3.5rem;
}
.hero--static .hero__title,
.hero--static .hero__text,
.hero--static .hero__actions,
.hero--static .hero__media img {
  animation: none;
}

.lp-shortcuts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.lp-shortcuts a {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.1rem 1.15rem;
  background: rgba(43, 43, 43, 0.72);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  text-decoration: none;
  min-height: 44px;
  transition: border-color var(--transition), transform var(--duration-feedback) var(--ease),
              background-color var(--transition);
}
.lp-shortcuts a:hover,
.lp-shortcuts a:focus-visible {
  border-color: rgba(245, 89, 27, 0.55);
  background: rgba(245, 89, 27, 0.1);
  transform: translateY(-2px);
}
.lp-shortcuts strong {
  font-size: var(--type-ui);
  font-weight: 700;
}
.lp-shortcuts span {
  color: var(--color-text-muted);
  font-size: var(--type-meta);
}

.lp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 1.5rem;
}
.lp-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--color-text);
}
.lp-list svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--color-accent);
}

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-steps article {
  padding: 1.4rem 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}
.lp-steps h3 {
  margin: 0 0 0.6rem;
  font-size: var(--type-title);
}
.lp-steps p {
  margin: 0;
  color: var(--color-text-muted);
}

.lp-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.lp-gallery figure { margin: 0; }
.lp-gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}
.lp-gallery figcaption {
  margin-top: 0.5rem;
  color: var(--color-text-muted);
  font-size: var(--type-meta);
}

.lp-faq details {
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
}
.lp-faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: var(--type-title);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.lp-faq details p {
  margin: 0.75rem 0 0;
  color: var(--color-text-muted);
  max-width: var(--measure-body);
}

.legal {
  padding: calc(var(--header-h) + var(--safe-top) + 3rem) 0 var(--section-gap);
}
.legal h1 { margin-bottom: 0.75rem; }
.legal .legal__meta {
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
.legal h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: var(--type-headline);
  line-height: var(--lh-headline);
}
.legal p, .legal li {
  color: var(--color-text-muted);
  max-width: var(--measure-body);
}
.legal ul { padding-left: 1.2rem; }

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 160;
  max-width: 42rem;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.cookie-banner__title {
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.cookie-banner p { margin: 0; color: var(--color-text-muted); font-size: var(--type-meta); }
.cookie-banner a { color: var(--color-accent-2); }
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

body.has-cookie-banner { padding-bottom: 8.5rem; }
body.has-cookie-banner .whatsapp-float {
  bottom: calc(7.25rem + env(safe-area-inset-bottom));
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.footer__legal a {
  color: var(--color-text-muted);
  font-size: var(--type-meta);
}
.footer__legal a:hover { color: var(--color-accent-hover); }

@media (max-width: 1024px) {
  .lp-shortcuts { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .header--lp .header__phone { font-size: var(--type-meta); }
  .header--lp .header__cta span { display: none; }
  .header--lp .header__cta {
    width: 44px;
    padding: 0;
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .lp-shortcuts,
  .lp-list,
  .lp-gallery { grid-template-columns: 1fr; }
  .cookie-banner__actions .btn { flex: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .lp-shortcuts a { transition: none; }
}
