/* Modelo Vertical — UebiFast | Layout moderno, menu lateral */
:root {
  --bg: #f8fafc;
  --fg: #0f172a;
  --card: #fff;
  --primary: #2563eb;
  --primary-fg: #fff;
  --primary-light: #dbeafe;
  --muted: #64748b;
  --muted-bg: #f1f5f9;
  --border: #e2e8f0;
  --sidebar-bg: #0f172a;
  --sidebar-fg: #e2e8f0;
  --sidebar-hover: rgba(255,255,255,0.08);
  --radius: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --wa: #25d366;
  --sidebar-width: 280px;
  --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-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;
}

.layout { display: flex; min-height: 100vh; }
.container { max-width: 900px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--sidebar-width);
  z-index: 60;
  background: var(--sidebar-bg);
  color: var(--sidebar-fg);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.sidebar-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.25rem;
  height: 100%;
}
.sidebar-back {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 1rem;
  transition: color var(--transition);
}
.sidebar-back:hover { color: #fff; }
.sidebar-logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.75rem;
  transition: color var(--transition);
}
.sidebar-logo:hover { color: var(--wa); }

.sidebar-toggle {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: var(--sidebar-hover);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}
.sidebar-toggle:hover { background: rgba(255,255,255,0.12); }
.sidebar-toggle__bar {
  width: 100%;
  height: 2px;
  background: var(--sidebar-fg);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.sidebar.is-open .sidebar-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.sidebar.is-open .sidebar-toggle__bar:nth-child(2) { opacity: 0; }
.sidebar.is-open .sidebar-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.sidebar-nav { flex: 1; margin-top: 0.5rem; }
.sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.sidebar-nav li { margin: 0; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover {
  background: var(--sidebar-hover);
  color: #fff;
  border-left-color: var(--primary);
}

.sidebar .btn-wa {
  margin-top: auto;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.sidebar .btn-wa:hover { box-shadow: var(--shadow); }

/* Mobile: sidebar drawer */
@media (max-width: 767px) {
  .sidebar-toggle { display: flex; }
  .sidebar {
    transform: translateX(-100%);
    box-shadow: none;
  }
  .sidebar.is-open {
    transform: translateX(0);
    box-shadow: 8px 0 30px rgba(0,0,0,0.25);
  }
}

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

/* Main content */
.main-content {
  flex: 1;
  min-width: 0;
  margin-left: 0;
}
@media (min-width: 768px) {
  .main-content { margin-left: var(--sidebar-width); }
}

/* Botão abrir menu (mobile) */
.menu-open {
  display: none;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background var(--transition), box-shadow var(--transition);
}
.menu-open:hover { background: var(--muted-bg); box-shadow: var(--shadow-hover); }
.menu-open span { width: 18px; height: 2px; background: var(--fg); border-radius: 1px; }
@media (max-width: 767px) { .menu-open { display: flex; } }
@media (min-width: 768px) { .menu-open { display: none; } }

.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; }
.btn-wa:hover { background: #20bd5a; color: #fff; }
.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;
  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: 500px;
  height: 80%;
  max-height: 400px;
  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.5rem; } }
.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 */
.site-footer {
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
.site-footer a { color: var(--primary); font-weight: 500; }
.site-footer a:hover { 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; }
