/* ============================================
   Espaço Zen – Modern CSS Override
   Paleta: Lilás e Roxo
   ============================================ */

/* Google Fonts – Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ── */
:root {
  --zen-purple:      #7C3AED;
  --zen-purple-dark: #5B21B6;
  --zen-lilac:       #A78BFA;
  --zen-lilac-light: #EDE9FE;
  --zen-lilac-bg:    #F5F3FF;
  --zen-gradient:    linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
  --zen-gradient-hero: linear-gradient(160deg, rgba(92,33,182,0.72) 0%, rgba(124,58,237,0.55) 60%, rgba(167,139,250,0.3) 100%);
  --zen-white:       #fff;
  --zen-dark:        #1E1B4B;
  --zen-text:        #374151;
  --zen-shadow:      0 10px 40px rgba(124,58,237,0.18);
  --zen-radius:      14px;
  --zen-transition:  all 0.3s ease;
}

/* ── Base ── */
body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: var(--zen-text);
}

h1, h2, h3, h4, h5,
.h1, .h2, .h3, .h4, .h5 {
  font-family: 'Inter', sans-serif;
  color: var(--zen-dark);
}

/* ── Override primary color ── */
.text-primary { color: var(--zen-purple) !important; }
.bg-primary    { background-color: var(--zen-purple) !important; }

.btn.btn-primary,
a.btn-primary {
  background: var(--zen-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  padding: 14px 34px;
  transition: var(--zen-transition);
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn.btn-primary:hover,
a.btn-primary:hover {
  background: linear-gradient(135deg, #5B21B6 0%, #7C3AED 100%);
  box-shadow: 0 8px 28px rgba(124,58,237,0.5);
  transform: translateY(-2px);
  color: #fff;
}

/* Botão secundário (outline) */
.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.7);
  color: #fff;
  border-radius: 50px;
  padding: 13px 32px;
  font-weight: 600;
  transition: var(--zen-transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* ── Navbar ── */
.site-navbar {
  padding-top: 16px;
  padding-bottom: 16px;
}

.site-logo a {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--zen-white) !important;
  letter-spacing: -0.02em;
  transition: var(--zen-transition);
}

.site-navbar .site-navigation .site-menu > li > a {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Sticky navbar */
.sticky-wrapper.is-sticky .site-navbar {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(124,58,237,0.12) !important;
}
.sticky-wrapper.is-sticky .site-logo a {
  color: var(--zen-purple) !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  color: var(--zen-dark) !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
  color: var(--zen-purple) !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu-toggle {
  color: var(--zen-dark) !important;
}

/* Nav WhatsApp CTA button */
.nav-whatsapp-btn {
  background: var(--zen-gradient) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--zen-transition);
  box-shadow: 0 3px 12px rgba(124,58,237,0.3);
  margin-left: 10px;
}
.nav-whatsapp-btn:hover {
  box-shadow: 0 6px 20px rgba(124,58,237,0.45) !important;
  transform: translateY(-1px);
  color: #fff !important;
}
.sticky-wrapper .site-navbar .site-menu > li > a.nav-whatsapp-btn {
  color: #fff !important;
}
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.nav-whatsapp-btn {
  color: #fff !important;
}

/* ── Hero Section ── */
.site-blocks-cover {
  position: relative;
  background-position: center center;
  background-size: cover;
}
.site-blocks-cover.overlay::before {
  background: var(--zen-gradient-hero) !important;
}
.site-blocks-cover h1 {
  font-weight: 900;
  font-size: 3.5rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
@media (max-width: 767px) {
  .site-blocks-cover h1 { font-size: 2.2rem; }
}
.hero-tagline {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.85rem;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.hero-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-hero-wa {
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: var(--zen-transition);
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  border: none;
}
.btn-hero-wa:hover {
  background: #1ebe5c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.55);
  text-decoration: none;
}
.btn-hero-wa svg {
  flex-shrink: 0;
}

/* ── Section Titles ── */
.section-title {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--zen-dark);
}
.section-title span {
  color: var(--zen-purple);
}
.section-title-line {
  width: 60px;
  height: 4px;
  background: var(--zen-gradient);
  border-radius: 4px;
  margin: 12px auto 0;
}

/* ── Services Section ── */
#services-section {
  background: var(--zen-lilac-bg) !important;
}
.unit-4 {
  border-radius: var(--zen-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
  transition: var(--zen-transition);
  height: 100%;
}
.unit-4:hover {
  transform: translateY(-6px);
  box-shadow: var(--zen-shadow);
}
.unit-4 > div:last-child {
  padding: 20px 22px 24px;
}
.unit-4 > div:last-child h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--zen-dark);
  margin-bottom: 8px;
}
.unit-4 > div:last-child p {
  font-size: 0.92rem;
  color: #6B7280;
  line-height: 1.65;
}
.unit-4 > div:last-child a {
  color: var(--zen-purple);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.unit-4 > div:last-child a:hover {
  color: var(--zen-purple-dark);
  text-decoration: none;
}
.unit-4 img {
  transition: transform 0.5s ease;
}
.unit-4:hover img {
  transform: scale(1.05);
}
.service-img-wrap {
  overflow: hidden;
}

/* ── Benefits Section ── */
#benefits-section {
  background: #fff;
  padding: 5rem 0;
}
.benefit-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--zen-radius);
  transition: var(--zen-transition);
}
.benefit-card:hover {
  background: var(--zen-lilac-bg);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--zen-lilac-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--zen-transition);
}
.benefit-card:hover .benefit-icon {
  background: var(--zen-gradient);
}
.benefit-icon svg {
  color: var(--zen-purple);
  transition: var(--zen-transition);
}
.benefit-card:hover .benefit-icon svg {
  color: #fff;
}
.benefit-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--zen-dark);
  margin-bottom: 8px;
}
.benefit-card p {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* ── CTA Section ── */
#cta-experimental {
  background: var(--zen-gradient);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
#cta-experimental::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px;
  right: -100px;
  pointer-events: none;
}
#cta-experimental::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  bottom: -150px;
  left: -80px;
  pointer-events: none;
}
.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .cta-title { font-size: 1.6rem; }
}
.cta-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-features {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 0.92rem;
  font-weight: 500;
}
.cta-feature svg {
  flex-shrink: 0;
  color: #A7F3D0;
}

/* ── Section detail pages ── */
.cta-big-image .section-title {
  position: relative;
  display: inline-block;
}
.cta-big-image .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background: var(--zen-gradient);
}
.circle-bg:after {
  background: var(--zen-lilac-bg) !important;
}
.ul-check.success li:before {
  color: var(--zen-purple) !important;
}

/* ── Contact Section ── */
#contact-section {
  background: var(--zen-lilac-bg) !important;
}
#contact-section .section-title {
  color: var(--zen-dark);
}
.contact-card {
  background: #fff;
  border-radius: var(--zen-radius);
  padding: 32px;
  box-shadow: 0 4px 20px rgba(124,58,237,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}
.contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--zen-lilac-bg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg { color: var(--zen-purple); }
.contact-card a { color: var(--zen-purple); font-weight: 600; }
.contact-card a:hover { color: var(--zen-purple-dark); }

/* ── Footer ── */
.site-footer {
  background: var(--zen-dark) !important;
}
.site-footer .footer-heading { color: var(--zen-lilac) !important; }
.site-footer a:hover { color: var(--zen-lilac) !important; }
.site-footer .icon-facebook,
.site-footer .icon-instagram {
  font-size: 1.4rem;
  color: #9CA3AF;
  transition: var(--zen-transition);
}
.site-footer .icon-facebook:hover,
.site-footer .icon-instagram:hover {
  color: var(--zen-lilac);
}

/* ── WhatsApp Floating Button ── */
#whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.whatsapp-tooltip {
  background: var(--zen-dark);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

#whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

.whatsapp-btn-float {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: var(--zen-transition);
  position: relative;
}
.whatsapp-btn-float:hover {
  background: #1ebe5c;
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,0.6);
  text-decoration: none;
}
.whatsapp-btn-float svg {
  width: 32px;
  height: 32px;
  color: #fff;
  fill: #fff;
}

/* Pulse ring */
.whatsapp-btn-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 3px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2s ease-out infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(0.9); opacity: 1; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 575px) {
  #whatsapp-float { bottom: 20px; right: 20px; }
  .whatsapp-btn-float { width: 56px; height: 56px; }
  .whatsapp-btn-float svg { width: 28px; height: 28px; }
}

/* ── Loading spinner ── */
.spinner-border.text-primary { color: var(--zen-purple) !important; }

/* ── Misc polish ── */
.bg-light { background: var(--zen-lilac-bg) !important; }

.site-blocks-cover, .site-blocks-cover > .container > .row {
  min-height: 100vh;
}
@media (max-width: 767px) {
  .site-blocks-cover,
  .site-blocks-cover > .container > .row {
    min-height: 100svh;
  }
}

/* Scroll mouse indicator */
.mouse { border-color: rgba(255,255,255,0.7); }
.mouse-wheel { background: rgba(255,255,255,0.8); }

/* Form inside location section */
form.p-5.bg-white {
  border-radius: var(--zen-radius);
  box-shadow: 0 4px 24px rgba(124,58,237,0.08);
}
form.p-5.bg-white h2 {
  color: var(--zen-dark);
  font-weight: 700;
}

/* AOS base visibility */
[data-aos] { will-change: transform, opacity; }
