:root {
  --purple: #6B3FA0;
  --lilac: #9B6BC8;
  --soft-lilac: #C8A8E4;
  --pale: #F5EEF8;
  --pale2: #FAF6FD;
  --dark: #1C1028;
  --gray: #6B7280;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,63,160,0.1);
}
nav img.nav-logo { height: 52px; object-fit: contain; }
nav ul { display: flex; gap: 36px; list-style: none; }
nav ul a {
  text-decoration: none;
  color: var(--dark);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
nav ul a:hover { color: var(--purple); }
.nav-cta {
  background: var(--purple) !important;
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
}
.nav-cta:hover { background: var(--lilac) !important; }

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 80px;
  overflow: hidden;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 80px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pale);
  color: var(--purple);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 32px;
  width: fit-content;
  border: 1px solid var(--soft-lilac);
}
.hero-tag::before { content: '✦'; font-size: 10px; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 8px;
}
.hero h1 em { font-style: italic; color: var(--purple); }
.hero h1 strong { font-weight: 600; display: block; }
.hero-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin: 24px 0 40px;
  font-weight: 300;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(107,63,160,0.3);
}
.btn-primary:hover { background: var(--lilac); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(107,63,160,0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--purple);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--soft-lilac);
  transition: all 0.3s;
}
.btn-secondary:hover { background: var(--pale); }

.hero-stats { display: flex; gap: 40px; }
.stat-num {
  /*font-family: 'Cormorant Garamond', serif;*/
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--purple);
  line-height: 1;
}
.stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; letter-spacing: 0.05em; }

.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pale) 0%, #E8D5F5 100%);
}
.hero-img-main {
  position: absolute;
  bottom: 0; right: 0;
  height: 92%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 1;
}
.hero-badge {
  position: absolute;
  top: 48px; left: 32px;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}
.hero-badge-icon { font-size: 28px; }
.hero-badge-text span { display: block; font-size: 10px; color: var(--gray); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }
.hero-badge-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--purple); line-height: 1.2; }


.hero-badge2 {
  position: absolute;
  bottom: 80px; left: 24px;
  background: var(--purple);
  color: white;
  border-radius: 16px;
  padding: 14px 20px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(107,63,160,0.4);
  animation: float 4s ease-in-out infinite 2s;
}
.hero-badge2 span { font-size: 11px; opacity: 0.8; display: block; color: var(--white); }
.hero-badge2 strong { font-size: 15px; color: var(--white); }



/* INSTAGRAM BTN */
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(131,58,180,0.35);
}
.btn-instagram:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(131,58,180,0.5); }

/* LOCALIZAÇÃO */
.location-section {
  padding: 0;
  background: var(--white);
}
.location-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.location-info {
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 32px 0;
}
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--pale2);
  border-radius: 14px;
  border-left: 3px solid var(--lilac);
}
.location-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.location-item strong { display: block; font-size: 14px; font-weight: 600; margin-bottom: 4px; color: var(--dark); }
.location-item p { font-size: 13px; color: var(--gray); line-height: 1.6; }
.insta-link {
  font-size: 13px;
  color: var(--purple);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.insta-link:hover { color: var(--lilac); }
.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--purple);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  transition: all 0.3s;
  box-shadow: 0 8px 24px rgba(107,63,160,0.25);
}
.btn-maps:hover { background: var(--lilac); transform: translateY(-2px); }
.location-map {
  position: relative;
  overflow: hidden;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(0.8) contrast(1.05);
}

@media (max-width: 768px) {
  .location-inner { grid-template-columns: 1fr; }
  .location-info { padding: 48px 24px; }
  .location-map { height: 300px; position: relative; }
  .btn-instagram { padding: 14px 24px; font-size: 14px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* STRIP */
.strip { background: var(--purple); color: white; padding: 20px 0; overflow: hidden; }
.strip-inner {
  display: flex;
  gap: 64px;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.strip-item { display: flex; align-items: center; gap: 12px; font-size: 14px; letter-spacing: 0.05em; text-transform: uppercase; }
.strip-item span { opacity: 0.6; font-size: 18px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ABOUT */
.about {
  padding: 120px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.about-images { position: relative; height: 600px; }
.about-img1 {
  position: absolute;
  top: 0; left: 0;
  width: 68%; height: 80%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}
.about-img2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 65%;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  border: 6px solid white;
}
.about-deco {
  position: absolute;
  top: 40%; left: -20px;
  width: 80px; height: 80px;
  background: var(--pale);
  border-radius: 50%;
  border: 3px solid var(--soft-lilac);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--lilac); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--purple); }
.about-text { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; font-weight: 300; }
.about-credentials { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--pale2);
  border-radius: 12px;
  border-left: 3px solid var(--lilac);
}
.credential-icon { font-size: 20px; margin-top: 1px; }
.credential-text { font-size: 14px; color: var(--dark); font-weight: 400; line-height: 1.4; }
.credential-text span { display: block; font-size: 12px; color: var(--gray); margin-top: 2px; }

/* SPECIALTIES */
.specialties { background: var(--pale2); padding: 120px 80px; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.spec-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.spec-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--soft-lilac));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.spec-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(107,63,160,0.12); border-color: var(--soft-lilac); }
.spec-card:hover::after { transform: scaleX(1); }
.spec-icon {
  width: 56px; height: 56px;
  background: var(--pale);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.spec-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.spec-card p { font-size: 14px; color: var(--gray); line-height: 1.7; font-weight: 300; }

/* GALLERY */
.gallery { padding: 120px 80px; max-width: 1280px; margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 16px;
  margin-top: 56px;
}
.gallery-item { border-radius: 20px; overflow: hidden; position: relative; }
.gallery-item.large { grid-row: 1 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(107,63,160,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* FAQ */
.faq { background: var(--pale2); padding: 120px 80px; }
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-list { margin-top: 56px; }
.faq-item { border-bottom: 1px solid rgba(107,63,160,0.15); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  gap: 16px;
  list-style: none;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--purple); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--pale);
  border: 1px solid var(--soft-lilac);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--purple);
  transition: all 0.3s;
}
.faq-item.open .faq-icon { background: var(--purple); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  font-weight: 300;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 24px; }

/* CTA */
.cta-section { padding: 120px 80px; text-align: center; position: relative; overflow: hidden; background: var(--dark); }
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, rgba(107,63,160,0.3) 0%, transparent 70%);
}
.cta-section .section-label { justify-content: center; color: var(--soft-lilac); }
.cta-section .section-label::before { background: var(--soft-lilac); }
.cta-section .section-title { color: white; margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.65); font-size: 17px; line-height: 1.7; margin-bottom: 48px; font-weight: 300; }
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 16px 48px rgba(37,211,102,0.4); }

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: white;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s;
}
.btn-phone:hover { background: rgba(255,255,255,0.1); }

/* FOOTER */
footer {
  background: #140E20;
  color: rgba(255,255,255,0.5);
  padding: 48px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 20px;
}
footer img { height: 40px; filter: brightness(0) invert(0.7); }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 24px; transition: color 0.2s; }
footer a:hover { color: var(--soft-lilac); }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 999;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: pulse 2.5s ease-in-out infinite;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 32px; height: 32px; fill: white; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.7), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  nav ul { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 24px 40px; }
  .hero-right { height: 400px; }
  .hero-badge2 { display: none; }
  .about { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .about-images { height: 400px; }
  .specialties, .faq, .cta-section { padding: 60px 24px; }
  .spec-grid { grid-template-columns: 1fr; }
  .gallery { padding: 60px 24px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 24px; }
}


.hero-logo {
  height: 80px;
  object-fit: contain;
  margin-bottom: 24px;
} 