:root {
  --focus: #ffe76a;
  --success: #25d366;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.btn-primary,
.category-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: var(--success);
  color: #082b17;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
  transition: transform .18s ease, filter .18s ease;
}

.btn-primary:hover,
.category-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.trust-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.info-card,
.step-card {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

.info-card strong,
.step-card strong {
  display: block;
  margin-bottom: 6px;
}

.info-card p,
.step-card p {
  margin: 0;
  color: rgba(255,255,255,.85);
  font-size: 14px;
  line-height: 1.45;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-weight: 900;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.contact-panel p { margin: 4px 0 0; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: var(--success);
  color: #082b17;
  font-size: 27px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0,0,0,.34);
  transition: transform .18s ease;
}

.whatsapp-float:hover { transform: scale(1.06); }

body.lightbox-open { overflow: hidden; }

.lightbox {
  padding: 24px;
}

.lightbox img {
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: 14px;
}

.gallery-hint {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin: 24px 0 12px;
  color: rgba(255,255,255,.82);
  font-size: 12px;
  text-align: center;
}

.site-footer a { color: inherit; }

.card img,
.gallery img {
  transition: transform .3s ease;
}

.card:hover img,
.gallery img:hover {
  transform: scale(1.025);
}

@media (max-width: 860px) {
  .trust-grid,
  .steps-grid { grid-template-columns: 1fr; }

  .contact-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .category-cta { width: 100%; }
}

@media (max-width: 700px) {
  .container { padding: 14px; }

  .topbar {
    align-items: flex-start;
    padding-bottom: 14px;
  }

  .topbar .actions,
  .topbar nav {
    gap: 6px !important;
  }

  .topbar .btn {
    padding: 8px 10px;
    font-size: 12px;
  }

  .hero { padding: 16px; }
  .hero h1 { font-size: clamp(29px, 10vw, 38px); }
  .hero img { height: 170px !important; }
  .hero-card { padding: 10px !important; }
  .meta { gap: 7px; }
  .pill { padding: 7px 9px; font-size: 12px; }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }

  .card { min-height: 220px; }
  .card img { height: 112px; }
  .card .content { padding: 10px; }
  .card .title { font-size: 14px; }
  .card .desc { display: none; }

  .section-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-hint { display: block; }
  .whatsapp-float { right: 12px; bottom: 12px; }
}

@media (max-width: 359px) {
  .cards { grid-template-columns: 1fr !important; }
  .card { min-height: 210px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}

