/* Modelo Horizontal — UebiFast | Layout moderno, menu no topo */
:root {
  --bg: #f8fafc;
  --fg: #0f172a;
  --card: #fff;
  --primary: #2563eb;
  --primary-fg: #fff;
  --primary-light: #dbeafe;
  --muted: #64748b;
  --muted-bg: #f1f5f9;
  --border: #e2e8f0;
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --wa: #25d366;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
  --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
  --transition: 0.2s ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.75rem 0;
}
.back-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.back-link:hover { color: var(--primary); }
.back-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.back-link:hover { color: var(--primary); }
.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
  transition: color var(--transition);
}
.logo:hover { color: var(--primary); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
}
.nav-toggle:hover { background: var(--muted-bg); }
.nav-toggle__bar {
  width: 100%;
  height: 2px;
  background: var(--fg);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.site-header .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 768px) { .nav-toggle { display: none; } }

.site-nav {
  flex-basis: 100%;
  order: 3;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.site-header .site-nav.is-open { max-height: 20rem; }
.nav-list { list-style: none; margin: 0; padding: 0.5rem 0; display: flex; flex-direction: column; gap: 0.125rem; }
.nav-list a {
  display: block;
  padding: 0.65rem 0.75rem;
  color: var(--fg);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.nav-list a:hover { background: var(--muted-bg); color: var(--primary); }

@media (min-width: 768px) {
  .site-nav { flex-basis: auto; order: 0; max-height: none; }
  .nav-list { flex-direction: row; padding: 0; gap: 0.25rem; }
  .nav-list a { padding: 0.5rem 0.875rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  font-family: inherit;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-wa:hover { background: #20bd5a; color: #fff; box-shadow: var(--shadow); }
.btn-cta {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(37,99,235,0.35);
}
.btn-cta:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.4);
}

/* Hero */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #3b82f6 70%, #60a5fa 100%);
}
.hero-glow {
  position: absolute;
  width: 80%;
  max-width: 600px;
  height: 80%;
  max-height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h2v2H0V0zm4 4h2v2H4V4zm4 4h2v2H8V8zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2zm4 4h2v2h-2v-2z' fill='%23fff' fill-opacity='1' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; text-align: center; }
.hero-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255,255,255,0.15);
  border-radius: 9999px;
}
.hero h1 {
  font-size: 1.875rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 1rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}
@media (min-width: 768px) { .hero h1 { font-size: 2.75rem; } }
.hero-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.92);
  margin: 0 0 1.75rem;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero .btn-cta { margin-top: 0.25rem; }

/* Sections */
.section { padding: 4rem 0; }
.section--alt {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--fg);
}
@media (min-width: 768px) { .section-title { font-size: 2rem; } }
.section-intro {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.65;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.card {
  position: relative;
  background: var(--card);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}
.card:hover::before { opacity: 1; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--fg);
}
.card p { margin: 0; font-size: 0.9375rem; color: var(--muted); line-height: 1.55; }

/* Gallery */
.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .gallery-placeholder { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(145deg, var(--muted-bg) 0%, var(--border) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-placeholder-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
}

/* Contact */
.contact-layout {
  margin-top: 2rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 2.5rem;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contact-grid { grid-template-columns: repeat(3, 1fr); }
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-item:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}
.contact-item--wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}
.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius);
}
.contact-item--wa .contact-item__icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.contact-item__value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.5;
}
.contact-item__value a { color: inherit; font-weight: 600; }

.contact-cta-block {
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  border-radius: var(--radius-xl);
  color: #fff;
  text-align: center;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}
@media (min-width: 768px) {
  .contact-cta-block { min-width: 280px; }
}
.contact-cta-block__text {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}
.contact-cta-block .btn-cta--large {
  width: 100%;
  background: #fff;
  color: var(--primary);
  padding: 1rem 1.5rem;
  font-size: 1.0625rem;
}
.contact-cta-block .btn-cta--large:hover {
  background: var(--muted-bg);
  color: var(--primary);
  box-shadow: var(--shadow);
}

/* Footer */
/* Footer */
.site-footer {
  padding: 0;
  background: var(--fg);
  color: rgba(255, 255, 255, 0.85);
  border-top: none;
}
.site-footer .container {
  padding-top: 2.5rem;
  padding-bottom: 0;
}
.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}
.site-footer__brand { text-align: center; }
@media (min-width: 640px) { .site-footer__brand { text-align: left; } }
.site-footer__logo {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
.site-footer__tagline {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}
.site-footer__tagline a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
.site-footer__tagline a:hover { text-decoration: underline; }
.site-footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (min-width: 640px) { .site-footer__links { justify-content: flex-end; } }
.site-footer__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.site-footer__link:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}
.site-footer__bottom {
  padding: 1rem 0 2rem;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer a:not(.site-footer__tagline a):not(.site-footer__link) { color: var(--primary-light); }
.site-footer a:hover:not(.site-footer__tagline a):not(.site-footer__link) { text-decoration: underline; }

/* UebiFast CTA — pacotes e voltar */
.uebifast-cta {
  background: linear-gradient(180deg, var(--muted-bg) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.uebifast-cta__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 0.35rem;
  text-align: center;
}
@media (min-width: 768px) { .uebifast-cta__title { font-size: 1.5rem; } }
.uebifast-cta__sub {
  font-size: 0.9375rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  text-align: center;
}
.uebifast-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.btn-uebifast {
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-uebifast--full {
  background: var(--primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}
.btn-uebifast--full:hover {
  background: #1d4ed8;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}
.btn-uebifast--solo {
  background: var(--card);
  color: var(--fg);
  border: 1px solid var(--border);
}
.btn-uebifast--solo:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--shadow);
}
.uebifast-cta__back {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
.uebifast-cta__back:hover { text-decoration: underline; }

/* WhatsApp flutuante (conversão) */
.wa-float {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  background: var(--wa);
  color: #fff;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); color: #fff; }
