@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
@import "tokens.css";
@import "mascot-guide.css";

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary-dark); text-decoration: none; }
a:hover { color: var(--color-teal); }

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

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}
.skip-link:focus { top: var(--space-md); }

.container {
  width: min(100% - 2rem, var(--content-width));
  margin-inline: auto;
}

/* Top bar */
.topbar {
  background: var(--color-primary-dark);
  color: #fff;
  font-size: var(--text-xs);
  height: var(--topbar-height);
  display: flex;
  align-items: center;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.topbar a { color: #fff; font-weight: 600; }
.topbar a:hover { color: var(--color-gold-light); }
.topbar span { opacity: 0.9; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: var(--space-lg);
}

.logo-link img {
  height: 3.5rem;
  width: auto;
  max-width: 10rem;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  cursor: pointer;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: color var(--transition);
}

.site-nav a:hover,
.site-nav a[aria-current="true"] { color: var(--color-primary); }

@media (max-width: 1180px) {
  .site-nav ul { gap: var(--space-md); }
  .site-nav a { font-size: 0.875rem; }
  .site-nav .btn { padding: 0.65rem 1.1rem; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: inherit;
  font-size: var(--text-sm);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgb(93 168 153 / 0.35);
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }

.btn-secondary {
  background: #fff;
  color: var(--color-primary-dark);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover { background: var(--color-primary-light); }

.btn-gold {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 4px 14px rgb(228 180 74 / 0.35);
}
.btn-gold:hover { background: #d4a43f; color: #fff; }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1da851; color: #fff; }

.btn-link {
  padding: 0;
  background: none;
  color: var(--color-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: 0;
  box-shadow: none;
}
.btn-link:hover { color: var(--color-teal); }

.btn-link::after { content: " →"; }

/* Hero */
.hero {
  position: relative;
  padding-block: var(--space-3xl) var(--space-4xl);
  background: linear-gradient(135deg, var(--color-primary-light) 0%, #fff 45%, var(--color-gold-light) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: 28rem;
  height: 28rem;
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgb(61 191 181 / 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: var(--space-md);
  padding: 0.35rem 0.85rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero h1 {
  font-size: var(--text-4xl);
  line-height: 1.12;
  font-weight: 800;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-secondary);
}

.hero-subtitle {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.hero-tag {
  padding: 0.3rem 0.75rem;
  background: rgb(255 255 255 / 0.85);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.hero-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 36rem;
  margin: 0 0 var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--color-primary-dark);
}

.trust-item span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 30rem;
}

.hero-mascot-stage {
  position: relative;
  width: min(100%, 32rem);
  aspect-ratio: 1;
  display: grid;
  place-items: end center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(0);
  z-index: 0;
}

.hero-blob-teal {
  width: 78%;
  height: 78%;
  top: 8%;
  left: 8%;
  background: radial-gradient(circle, rgb(61 191 181 / 0.28) 0%, rgb(61 191 181 / 0.08) 55%, transparent 72%);
}

.hero-blob-gold {
  width: 55%;
  height: 55%;
  bottom: 10%;
  right: 0;
  background: radial-gradient(circle, rgb(228 180 74 / 0.35) 0%, rgb(228 180 74 / 0.1) 60%, transparent 75%);
}

.hero-blob-pink {
  width: 40%;
  height: 40%;
  top: 18%;
  right: 6%;
  background: radial-gradient(circle, rgb(217 142 148 / 0.25) 0%, transparent 70%);
}

.hero-mascot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 105%;
  object-fit: contain;
  object-position: bottom center;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 40px rgb(45 59 56 / 0.16));
  transform: translateY(2%) scale(1.06);
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: 68rem;
  margin-inline: auto;
}

.team-card {
  text-align: center;
  padding: var(--space-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.team-photo {
  position: relative;
  width: 9.5rem;
  height: 9.5rem;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 4px solid var(--color-primary-light);
  background: linear-gradient(145deg, var(--color-primary-light), var(--color-gold-light));
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-photo:has(img) .team-photo-placeholder { display: none; }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary-dark);
  letter-spacing: 0.04em;
}

.team-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-lg);
  font-weight: 800;
}

.team-role {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-secondary);
}

.team-bio {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.team-note {
  margin: var(--space-2xl) 0 0;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* CTA band */
.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding-block: var(--space-2xl);
  text-align: center;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.cta-band h2 {
  margin: 0;
  font-size: var(--text-2xl);
  font-weight: 800;
  max-width: 28ch;
}

.cta-band p {
  margin: 0;
  opacity: 0.92;
  max-width: 40ch;
}

.cta-band .btn-gold { min-width: 14rem; }

/* Sections */
.section { padding-block: var(--space-4xl); }
.section-alt { background: var(--color-bg-alt); }
.section-warm { background: var(--color-bg-warm); }

.section-header {
  max-width: 40rem;
  margin-bottom: var(--space-3xl);
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-label {
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-teal);
}

.section-header h2 {
  font-size: var(--text-3xl);
  line-height: 1.15;
  font-weight: 800;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
}

/* About */
.entity-summary {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.entity-summary h3 {
  margin: 0 0 var(--space-md);
  font-size: var(--text-xl);
  color: var(--color-text);
}

.entity-summary > p {
  margin: 0;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-content p { margin: 0 0 var(--space-lg); color: var(--color-text-muted); }
.about-content p strong { color: var(--color-text); }

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.about-card {
  padding: var(--space-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.about-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-base);
  font-weight: 800;
}

.about-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Conditions grid (Stimular-style) */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.condition-card {
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.condition-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.condition-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.condition-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-lg);
  font-weight: 800;
}

.condition-card p {
  margin: 0 0 var(--space-lg);
  flex: 1;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  padding: var(--space-xl);
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  background: var(--color-gold-light);
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.service-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-lg);
  font-weight: 800;
}

.service-card p {
  margin: 0 0 var(--space-md);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Differentials */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.diff-card {
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.diff-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto var(--space-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-gold-light));
  border-radius: var(--radius-full);
  font-size: 1.35rem;
}

.diff-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-base);
  font-weight: 800;
}

.diff-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* Community — carrossel de eventos */
.community-carousel {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.community-carousel .event-carousel-viewport {
  min-height: 20rem;
}

.community-carousel .event-carousel-slide .event-showcase {
  border: none;
  border-radius: 0;
  box-shadow: none;
  min-height: 20rem;
}

.community-carousel .event-carousel-slide:nth-child(even) .event-showcase {
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.95fr);
}

.community-carousel .event-carousel-slide:nth-child(even) .event-showcase-body {
  order: 2;
}

.community-carousel .event-carousel-slide:nth-child(even) .event-showcase-media {
  order: 1;
}

.event-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.35fr);
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.event-showcase--featured {
  border-top: 4px solid var(--color-gold);
}

.event-showcase-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-2xl);
}

.event-badge {
  align-self: flex-start;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--color-gold-light);
  color: #8a6a1a;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.event-badge--blue {
  background: #e8f4fc;
  color: #2d5f8a;
}

.event-badge--rose {
  background: var(--color-secondary-light);
  color: #9a4f57;
}

.event-showcase-body h3 {
  margin: 0;
  font-size: var(--text-xl);
  font-weight: 800;
  line-height: 1.25;
}

.event-showcase-body p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.event-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary-dark);
}

.event-link:hover {
  color: var(--color-teal);
}

.event-showcase-media {
  min-height: 100%;
  background: var(--color-bg-alt);
}

.event-showcase-media figure {
  margin: 0;
  height: 100%;
  min-height: 16rem;
}

.event-showcase-media img {
  width: 100%;
  height: 100%;
  min-height: 16rem;
  object-fit: cover;
}

.event-carousel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--color-bg-alt);
}

.event-carousel-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.event-carousel-viewport .event-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgb(255 255 255 / 0.92);
  box-shadow: var(--shadow-md);
}

.event-carousel-viewport .event-carousel-btn[data-carousel-prev] {
  left: var(--space-md);
}

.event-carousel-viewport .event-carousel-btn[data-carousel-next] {
  right: var(--space-md);
}

.event-carousel-viewport .event-carousel-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.event-carousel-track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 100%;
  transition: transform 400ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .event-carousel-track { transition: none; }
}

.event-carousel-slide {
  flex: 0 0 100%;
  min-width: 100%;
}

.event-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: #fff;
}

.event-carousel-controls .event-carousel-btn {
  display: none;
}

.event-carousel-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.event-carousel-btn:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.event-carousel-btn svg {
  width: 1.1rem;
  height: 1.1rem;
}

.event-carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.event-carousel-dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: var(--radius-full);
  background: var(--color-border);
  cursor: pointer;
  transition: transform var(--transition), background var(--transition);
}

.event-carousel-dot.is-active {
  background: var(--color-primary);
  transform: scale(1.2);
}

.event-carousel-dot:hover {
  background: var(--color-teal);
}

/* FAQ */
.faq-list {
  max-width: 44rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: none;
  background: none;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 700;
  text-align: left;
  color: var(--color-text);
  cursor: pointer;
}

.faq-question:hover { color: var(--color-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  margin: 0;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: var(--space-3xl);
}

.contact-info { display: flex; flex-direction: column; gap: var(--space-lg); }

.contact-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.contact-item-icon {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  background: var(--color-primary-light);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
}

.contact-item h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--text-base);
  font-weight: 800;
}

.contact-item p,
.contact-item a {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.contact-form {
  padding: var(--space-2xl);
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.form-group { margin-bottom: var(--space-lg); }

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 700;
  font-size: var(--text-sm);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--text-base);
  background: var(--color-bg-alt);
  color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgb(93 168 153 / 0.15);
}

.form-group textarea { min-height: 7rem; resize: vertical; }

.form-hint {
  margin-top: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.form-hint a { text-decoration: underline; }

.form-privacy-notice {
  margin: var(--space-sm) 0 0;
  padding: var(--space-md);
  font-size: var(--text-xs);
  line-height: 1.5;
  color: var(--color-text-muted);
  background: var(--color-gold-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--color-gold);
}

.label-optional {
  font-weight: 500;
  color: var(--color-text-muted);
  font-size: var(--text-xs);
}

.form-consent { margin-bottom: var(--space-xl); }

.form-consent-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: var(--text-sm);
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
}

.form-consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.15rem;
  accent-color: var(--color-primary);
  cursor: pointer;
}

.form-consent-label a { text-decoration: underline; }

.form-consent-label input[aria-invalid="true"] {
  outline: 2px solid #c0392b;
  outline-offset: 2px;
}

.form-status {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  display: none;
}
.form-status.visible { display: block; }
.form-status.success { background: var(--color-primary-light); color: var(--color-primary-dark); }
.form-status.error { background: #fdecea; color: #c0392b; }

.map-wrapper {
  margin-top: var(--space-3xl);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  aspect-ratio: 21 / 9;
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.site-footer {
  background: #1f3330;
  color: #c8ddd8;
  padding-block: var(--space-3xl) var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand img {
  height: 3.75rem;
  width: auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 0.35rem 0.65rem;
  margin-bottom: var(--space-md);
}

.footer-brand p {
  margin: 0;
  font-size: var(--text-sm);
  max-width: 30ch;
}

.footer-nav h3,
.footer-contact h3 {
  margin: 0 0 var(--space-md);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.footer-nav ul { margin: 0; padding: 0; list-style: none; }
.footer-nav li { margin-bottom: var(--space-sm); }
.footer-nav a { color: #a8c4bd; font-size: var(--text-sm); }
.footer-nav a:hover { color: #fff; }

.footer-contact p {
  margin: 0 0 var(--space-sm);
  font-size: var(--text-sm);
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid rgb(255 255 255 / 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  font-size: var(--text-xs);
  color: #8aa8a0;
}

.footer-bottom a { color: #c8ddd8; }

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-sm);
}

.footer-legal a[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.06); color: #fff; }
.whatsapp-float svg { width: 1.5rem; height: 1.5rem; }

/* Responsive */
@media (max-width: 1024px) {
  .conditions-grid,
  .services-grid,
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .footer-grid { grid-template-columns: 1fr; }

  .hero-visual { order: -1; }
  .hero-mascot-stage { width: min(100%, 22rem); margin-inline: auto; }

  .community-carousel .event-carousel-slide .event-showcase,
  .community-carousel .event-carousel-slide:nth-child(even) .event-showcase {
    grid-template-columns: 1fr;
  }

  .community-carousel .event-carousel-slide:nth-child(even) .event-showcase-body,
  .community-carousel .event-carousel-slide:nth-child(even) .event-showcase-media {
    order: unset;
  }

  .event-showcase-body {
    padding: var(--space-xl);
  }

  .event-carousel-viewport .event-carousel-btn {
    width: 2rem;
    height: 2rem;
  }

  .event-carousel-viewport .event-carousel-btn[data-carousel-prev] {
    left: var(--space-sm);
  }

  .event-carousel-viewport .event-carousel-btn[data-carousel-next] {
    right: var(--space-sm);
  }
}

@media (max-width: 720px) {
  .topbar { display: none; }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 0 0;
    background: #fff;
    padding: var(--space-xl);
    transform: translateX(100%);
    transition: transform 300ms ease;
    border-top: 1px solid var(--color-border);
  }

  .site-nav.open { transform: translateX(0); }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .site-nav a {
    display: block;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    background: var(--color-bg-alt);
  }

  .conditions-grid,
  .services-grid,
  .about-cards,
  .diff-grid,
  .team-grid { grid-template-columns: 1fr; }

  .hero { padding-block: var(--space-2xl); }
}

@media print {
  .topbar, .site-header, .whatsapp-float, .nav-toggle, .contact-form, .cta-band { display: none; }
}
