/* =====================================================
   PIUÍ ESTAÇÃO BRINCAR — ESTILOS PRINCIPAIS
   Versão 2.0 · 2026
   ===================================================== */

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--creme);
  color: var(--carvao);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── ACESSIBILIDADE ─────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--coral); color: #fff;
  padding: 8px 16px; border-radius: var(--radius-md);
  font-family: var(--font-display); font-weight: var(--weight-bold);
  z-index: 999; transition: top var(--transition);
}
.skip-link:focus { top: 16px; }

/* ── CONTAINER ──────────────────────────────────── */
.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ── WAVE DIVIDERS (entre seções) ───────────────── */
.border-arrows {
  width: 100%;
  display: block;
  overflow: hidden;
  line-height: 0;
}

body { position: relative; overflow-x: hidden; }

/* ── WAVE SERPENTINA ────────────────────────────── */
#page-wave {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: visible;
  opacity: 0.7;
}
.site-header { position: relative; z-index: 10; }
.hero-inner, .section-head, .about-grid, .steps,
.combos-grid, .services-grid, .condicoes-grid,
.combo-card, .service-card, .step-card, .about-hl,
.condicao-card, .alert, .cta-section .wrap,
.footer-inner { position: relative; z-index: 3; }

/* ── BOTÕES ─────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-display); font-weight: var(--weight-bold);
  font-size: var(--text-base); border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap; line-height: 1; padding: 12px 28px;
}
.btn:active { transform: scale(0.97); }
.btn-sm  { padding: 8px 20px; font-size: var(--text-sm); }
.btn-lg  { padding: 16px 36px; font-size: var(--text-lg); }

.btn-primary { background: var(--coral); color: #fff; border-color: var(--coral); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--coral-dark); border-color: var(--coral-dark); box-shadow: var(--shadow-md); transform: translateY(-1px); }

.btn-secondary { background: transparent; color: var(--coral); border-color: var(--coral); }
.btn-secondary:hover { background: var(--coral-light); transform: translateY(-1px); }

.btn-ghost { background: var(--branco); color: var(--carvao); border-color: #ddd; }
.btn-ghost:hover { background: #ede8e1; transform: translateY(-1px); }

.btn-verde { background: var(--verde); color: var(--verde-dark); border-color: var(--verde); }
.btn-verde:hover { background: #65b98e; border-color: #65b98e; transform: translateY(-1px); }

.btn-amarelo { background: var(--amarelo); color: var(--amarelo-dark); border-color: var(--amarelo); }
.btn-amarelo:hover { background: #e8b255; transform: translateY(-1px); }

.btn-white { background: #fff; color: var(--coral); border-color: #fff; font-family: var(--font-display); font-weight: var(--weight-bold); padding: 14px 32px; border-radius: var(--radius-pill); font-size: var(--text-base); border: 2px solid #fff; cursor: pointer; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); font-family: var(--font-display); font-weight: var(--weight-bold); padding: 14px 32px; border-radius: var(--radius-pill); font-size: var(--text-base); cursor: pointer; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-1px); }

/* ── NAVBAR ─────────────────────────────────────── */
.site-header {
  background: var(--branco);
  border-bottom: 1.5px solid #ede8e0;
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 0; padding-bottom: 0;
}
.logo {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--coral); line-height: 1;
}
.logo-img {
  height: 100px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-desktop { display: flex; align-items: center; gap: var(--space-6); }
.nav-desktop a {
  font-family: var(--font-display); font-size: var(--text-sm);
  font-weight: var(--weight-bold); color: var(--carvao); transition: color var(--transition);
}
.nav-desktop a:hover { color: var(--coral); }

.header-cta {
  font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-sm);
  background: var(--coral); color: #fff; padding: 8px 20px; border-radius: var(--radius-pill);
  transition: background var(--transition), transform var(--transition);
}
.header-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }

.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: var(--space-2); color: var(--carvao);
}
.menu-toggle svg { width: 24px; height: 24px; display: block; }

.nav-mobile {
  display: none; position: fixed; inset: 0; z-index: 200;
}
.nav-mobile.is-open { display: block; }
.nav-mobile-backdrop { position: absolute; inset: 0; background: rgba(30,30,30,0.4); }
.nav-mobile-panel {
  position: absolute; top: 0; right: 0;
  width: min(320px, 85vw); height: 100%;
  background: var(--branco); padding: var(--space-8) var(--space-6);
  display: flex; flex-direction: column; overflow-y: auto;
}
.nav-mobile-close {
  align-self: flex-end; background: none; border: none;
  cursor: pointer; font-size: 28px; color: var(--cinza-medio); line-height: 1;
}
.nav-mobile-panel nav {
  display: flex; flex-direction: column; gap: var(--space-1); margin-top: var(--space-6);
}
.nav-mobile-panel a {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold);
  color: var(--carvao); padding: var(--space-3) 0; border-bottom: 1px solid #ede8e0;
}
.nav-mobile-panel a:hover { color: var(--coral); }
.nav-mobile-panel .header-cta { margin-top: var(--space-5); text-align: center; display: block; padding: 12px 20px; }

/* ── SEÇÕES ─────────────────────────────────────── */
.section { padding: var(--space-16) 0; }
.section--creme   { background: var(--creme); }
.section--branco  { background: var(--branco); }
.section--coral   { background: var(--coral-light); }
.section--amarelo { background: var(--amarelo-light); }
.section--verde   { background: var(--verde-light); }
.section--dark    { background: var(--carvao); }

.section-head { text-align: center; margin-bottom: var(--space-12); }
.section-eyebrow {
  display: inline-block; background: var(--amarelo); color: var(--amarelo-dark);
  font-family: var(--font-display); font-weight: var(--weight-bold); font-size: var(--text-sm);
  padding: 5px 16px; border-radius: var(--radius-pill); margin-bottom: var(--space-3); letter-spacing: 0.04em;
}
.section-eyebrow.verde { background: var(--verde); color: var(--verde-dark); }
.section-eyebrow.coral { background: var(--coral); color: #fff; }
.section-eyebrow.azul  { background: var(--azul);  color: var(--azul-dark); }

.section-head h2 {
  font-family: var(--font-display); font-size: var(--text-3xl); font-weight: var(--weight-black);
  color: var(--carvao); line-height: 1.15; margin-bottom: var(--space-4);
}
.section-head p {
  font-size: var(--text-lg); color: var(--cinza-medio);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* ── HERO ───────────────────────────────────────── */
.hero {
  background: var(--creme);
  padding: var(--space-12) 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px; background: var(--coral-light);
  border-radius: 50%; opacity: 0.45; pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 360px; height: 360px; background: var(--amarelo-light);
  border-radius: 50%; opacity: 0.55; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.hero-text { text-align: left; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  background: var(--branco); border: 1.5px solid #ede8e0; border-radius: var(--radius-pill);
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--weight-bold);
  color: var(--cinza-medio); padding: 6px 18px; margin-bottom: var(--space-5);
}
.hero h1 {
  font-family: var(--font-display); font-size: clamp(32px, 4.5vw, 52px);
  font-weight: var(--weight-black); color: var(--coral); line-height: 1.05;
  letter-spacing: -1px; margin-bottom: var(--space-5);
}
.hero-sub {
  font-size: var(--text-lg); color: var(--cinza-medio);
  max-width: 440px; margin-bottom: var(--space-8); line-height: 1.7;
}
.hero-actions {
  display: flex; align-items: center;
  gap: var(--space-4); flex-wrap: wrap; margin-bottom: var(--space-10);
}
.hero-stats {
  display: flex; align-items: center;
  gap: var(--space-6); flex-wrap: wrap;
  padding-top: var(--space-6); border-top: 1.5px solid #ede8e0;
}
.hero-stat { text-align: left; }
.hero-stat-value {
  display: block; font-family: var(--font-display); font-size: var(--text-2xl);
  font-weight: var(--weight-black); color: var(--coral);
}
.hero-stat-label { display: block; font-size: var(--text-sm); color: var(--cinza-medio); margin-top: 2px; }

.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -12px -12px 12px 12px;
  border: 3px solid var(--coral-light);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.hero-image::after {
  content: '';
  position: absolute;
  inset: 12px -20px -20px 12px;
  background: var(--amarelo-light);
  border-radius: var(--radius-xl);
  z-index: -2;
}

/* ── SOBRE ──────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-8); align-items: start;
}
.about-text p {
  font-size: var(--text-base); color: var(--cinza-medio);
  line-height: 1.8; margin-bottom: var(--space-4);
}
.about-highlights { display: flex; flex-direction: column; gap: var(--space-4); }
.about-hl {
  background: var(--branco); border-radius: var(--radius-lg); border: 1.5px solid #ede8e0;
  padding: var(--space-5); display: flex; gap: var(--space-4); align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.about-hl:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.about-hl .icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.about-hl strong {
  font-family: var(--font-display); font-size: var(--text-base);
  font-weight: var(--weight-bold); color: var(--carvao); display: block; margin-bottom: 4px;
}
.about-hl span { font-size: var(--text-sm); color: var(--cinza-medio); line-height: 1.6; }

/* ── COMO FUNCIONA ──────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--space-5); }
.step-card {
  background: var(--branco); border-radius: var(--radius-lg); border: 1.5px solid #ede8e0;
  padding: var(--space-6); text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  width: 48px; height: 48px; border-radius: var(--radius-pill);
  background: var(--coral); color: #fff;
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-black);
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4);
}
.step-card h3 {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold);
  color: var(--carvao); margin-bottom: var(--space-2);
}
.step-card p { font-size: var(--text-sm); color: var(--cinza-medio); line-height: 1.6; }

/* ── COMBOS ─────────────────────────────────────── */
.combos-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--space-5);
}
.combo-card {
  background: var(--branco); border-radius: var(--radius-lg); border: 1.5px solid #ede8e0;
  padding: var(--space-6); position: relative; overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.combo-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 5px; background: var(--coral);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.combo-card.verde::before   { background: var(--verde); }
.combo-card.azul::before    { background: var(--azul); }
.combo-card.amarelo::before { background: var(--amarelo); }
.combo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.combo-card.destaque { border-color: var(--coral); border-width: 2px; }

.combo-badge {
  position: absolute; top: 0; right: 0;
  background: var(--coral); color: #fff;
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: var(--weight-bold);
  padding: 5px 14px; border-radius: 0 var(--radius-lg) 0 var(--radius-md);
}
.combo-label {
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: var(--weight-bold);
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--coral);
  margin-bottom: var(--space-2); display: block;
}
.combo-card.destaque .combo-label { margin-top: var(--space-5); }
.combo-name {
  font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-black);
  color: var(--carvao); margin-bottom: var(--space-1);
}
.combo-capacity { font-size: var(--text-sm); color: var(--cinza-medio); margin-bottom: var(--space-4); }
.combo-price {
  font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--weight-black);
  color: var(--coral); margin-bottom: var(--space-3);
}
.combo-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--space-4); }
.chip {
  display: inline-flex; align-items: center; background: var(--creme);
  border: 1px solid #ede8e0; border-radius: var(--radius-sm);
  padding: 3px 10px; font-size: var(--text-xs); color: var(--cinza-medio); font-weight: 500;
}
.combo-card .btn { margin-top: auto; width: 100%; }

.combos-nota {
  text-align: center; margin-top: var(--space-6);
  background: var(--verde-light); border-radius: var(--radius-lg);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-display); font-size: var(--text-sm);
  font-weight: var(--weight-bold); color: var(--verde-dark);
  display: flex; align-items: center; justify-content: center; gap: var(--space-2);
}

/* ── CARDS DE SERVIÇO ───────────────────────────── */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-5);
}
.service-card {
  background: var(--branco); border-radius: var(--radius-lg); border: 1.5px solid #ede8e0;
  padding: var(--space-6); transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-4);
  display: block;
}
.service-header {
  display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4);
}
.service-icon {
  width: 48px; height: 48px; min-width: 48px; border-radius: var(--radius-pill);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.icon-coral   { background: var(--coral-light); }
.icon-amarelo { background: var(--amarelo-light); }
.icon-verde   { background: var(--verde-light); }
.icon-azul    { background: var(--azul-light); }

.service-card h3 {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: var(--weight-bold); color: var(--carvao);
}
.service-card p {
  font-size: var(--text-sm); color: var(--cinza-medio); line-height: 1.6; margin-bottom: var(--space-3);
}
.service-price {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: var(--weight-black); color: var(--coral); margin-top: auto; padding-top: var(--space-3);
}
.service-price.verde { color: var(--verde-dark); }

.price-list { list-style: none; display: flex; flex-direction: column; gap: var(--space-2); margin-top: var(--space-3); }
.price-list li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: var(--text-sm); padding: var(--space-2) var(--space-3);
  background: var(--creme); border-radius: var(--radius-sm);
}
.price-list li strong { font-family: var(--font-display); font-weight: var(--weight-black); color: var(--coral); }

/* Badges */
.badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: var(--weight-bold);
  padding: 4px 12px; border-radius: var(--radius-pill);
}
.badge-coral   { background: var(--coral-light); color: var(--coral-dark); }
.badge-verde   { background: var(--verde-light); color: var(--verde-dark); }
.badge-amarelo { background: var(--amarelo-light); color: var(--amarelo-dark); }
.badge-azul    { background: var(--azul-light); color: var(--azul-dark); }

/* ── CONDIÇÕES ──────────────────────────────────── */
.condicoes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-5);
}
.condicao-card {
  background: var(--branco); border-radius: var(--radius-lg);
  border: 1.5px solid #ede8e0; padding: var(--space-6);
}
.condicao-card h3 {
  font-family: var(--font-display); font-size: var(--text-lg); font-weight: var(--weight-bold);
  color: var(--carvao); margin-bottom: var(--space-4); display: flex; align-items: center; gap: var(--space-2);
}
.list-check { list-style: none; display: flex; flex-direction: column; gap: var(--space-3); }
.list-check li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  font-size: var(--text-sm); color: var(--cinza-medio); line-height: 1.5;
}
.list-check li::before {
  content: '✓'; display: flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; min-width: 20px;
  background: var(--verde); color: var(--verde-dark); border-radius: var(--radius-pill);
  font-size: 11px; font-weight: var(--weight-black); margin-top: 1px;
}

.alert {
  border-radius: var(--radius-md); padding: var(--space-4) var(--space-5);
  font-size: var(--text-sm); display: flex; align-items: flex-start;
  gap: var(--space-3); border-left: 4px solid transparent; line-height: 1.6;
}
.alert-amarelo { background: var(--amarelo-light); border-color: var(--amarelo); color: var(--amarelo-dark); }
.alert-verde   { background: var(--verde-light);   border-color: var(--verde);   color: var(--verde-dark); }
.alert-coral   { background: var(--coral-light);   border-color: var(--coral);   color: var(--coral-dark); }

/* ── CTA FINAL ──────────────────────────────────── */
.cta-section { background: var(--coral); padding: var(--space-16) 0; text-align: center; }
.cta-section h2 {
  font-family: var(--font-display); font-size: var(--text-3xl);
  font-weight: var(--weight-black); color: #fff; margin-bottom: var(--space-4);
}
.cta-section p {
  font-size: var(--text-lg); color: rgba(255,255,255,0.85);
  max-width: 480px; margin: 0 auto var(--space-8); line-height: 1.7;
}
.cta-actions { display: flex; align-items: center; justify-content: center; gap: var(--space-4); flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--carvao); padding: var(--space-10) 0; overflow: hidden; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-4); }
.footer-brand { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--weight-black); color: var(--coral); }
.footer-tagline { font-size: var(--text-sm); color: #888; margin-top: 2px; }
.footer-links { display: flex; gap: var(--space-6); }
.footer-links a { font-family: var(--font-display); font-size: var(--text-sm); font-weight: var(--weight-bold); color: #888; transition: color var(--transition); }
.footer-links a:hover { color: var(--coral); }
.footer-copy { font-size: var(--text-xs); color: #666; margin-top: var(--space-2); }

/* ── RESPONSIVO ─────────────────────────────────── */
@media (max-width: 768px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .about-grid { grid-template-columns: 1fr; }
  .section-head h2 { font-size: var(--text-2xl); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero-image img { height: 280px; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-stat { text-align: center; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 var(--space-4); }
  .section { padding: var(--space-12) 0; }
  .hero { padding: var(--space-12) 0 var(--space-8); }
  .hero-stats { gap: var(--space-4); }
  .combos-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}
