/* =========================================
   VARIÁVEIS / RESET
   Troque as cores abaixo pela identidade da marca
========================================= */
:root {
  --color-primary: #c88ea7;
  --color-primary-dark: #a85c7c;
  --color-primary-light: #f3d9e2;
  --color-accent: #cf9e5d;
  --color-bg: #fff9f6;
  --color-bg-alt: #faf0ec;
  --color-dark: #3b2c35;
  --color-text: #5f4d57;
  --color-white: #ffffff;

  --font-heading: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(59, 44, 53, 0.08);
  --transition: all 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
}

span.icon-inline { color: var(--color-accent); }

h1 span, h2 span {
  color: var(--color-primary-dark);
  font-style: italic;
}

/* =========================================
   BOTÕES
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn .icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
}
.btn--whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
}
.btn--outline:hover {
  background: var(--color-dark);
  color: #fff;
}

.btn--light {
  background: #fff;
  color: var(--color-primary-dark);
}
.btn--light:hover {
  background: var(--color-primary-light);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn--block {
  width: 100%;
  justify-content: center;
}

/* =========================================
   HEADER
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 249, 246, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(59, 44, 53, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 64px;
  width: auto;
  display: block;
}

.nav__list {
  display: flex;
  gap: 32px;
}

.nav__link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-dark);
  position: relative;
  padding-bottom: 4px;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary-dark);
  transition: var(--transition);
}
.nav__link:hover::after {
  width: 100%;
}

.header__cta {
  display: none;
}
@media (min-width: 900px) {
  .header__cta { display: inline-flex; }
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--color-dark);
  transition: var(--transition);
}
@media (min-width: 900px) {
  .hamburger { display: none; }
}

@media (max-width: 899px) {
  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--color-bg);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav.is-open {
    max-height: 400px;
  }
  .nav__list {
    flex-direction: column;
    padding: 24px;
    gap: 20px;
  }
}

.hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   HERO
========================================= */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, #fff9f6 0%, #faf0ec 100%);
  position: relative;
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero__text h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
}

.hero__desc {
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__visual {
  position: relative;
  min-height: 360px;
}

.hero__blob {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 320px;
  height: 320px;
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  opacity: 0.55;
}

.hero__card {
  position: absolute;
  background: #fff;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-dark);
}
.hero__card .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
}
.hero__card--1 { top: 10%; left: 5%; }
.hero__card--2 { top: 50%; right: 0; }
.hero__card--3 { bottom: 8%; left: 18%; }

/* =========================================
   SECTIONS GENERAL
========================================= */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--color-bg-alt);
}

.section__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 56px;
}
.section__head--left {
  text-align: left;
  margin: 0 0 40px;
}
.section__desc {
  margin-top: 12px;
  color: var(--color-text);
}

/* =========================================
   SOBRE
========================================= */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
@media (min-width: 900px) {
  .about {
    grid-template-columns: 0.8fr 1.2fr;
  }
}

.about__image {
  display: flex;
  justify-content: center;
}
.about__frame {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--color-primary-light), var(--color-bg-alt));
  border: 2px solid var(--color-primary);
  position: relative;
  overflow: hidden;
}
.about__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 20px;
}
.about__content p {
  margin-bottom: 16px;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about__stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-primary-dark);
}
.about__stats span {
  font-size: 0.85rem;
  color: var(--color-text);
}

/* =========================================
   SERVIÇOS
========================================= */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) {
  .services { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
}

.service-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-card__icon svg {
  width: 26px;
  height: 26px;
  fill: var(--color-primary-dark);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.service-card p {
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.service-card p.service-card__note {
  margin-top: -8px;
  font-size: 0.72rem;
  color: var(--color-primary-dark);
}
.service-card__list li {
  font-size: 0.88rem;
  padding: 6px 0;
  border-top: 1px dashed rgba(59, 44, 53, 0.15);
  color: var(--color-dark);
}
.service-card__list li:first-child { border-top: none; }

.services__cta {
  text-align: center;
  margin-top: 48px;
}

/* =========================================
   GALERIA
========================================= */
.gallery__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.filter-btn {
  background: #fff;
  border: 1.5px solid var(--color-primary-light);
  color: var(--color-dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--color-primary);
}
.filter-btn.is-active {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 700px) {
  .gallery { grid-template-columns: repeat(4, 1fr); }
}

.gallery__item {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery__item.is-hidden {
  display: none;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  background-size: cover;
}
.gallery__placeholder span {
  background: rgba(59, 44, 53, 0.45);
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(2px);
}

.ph--1 { background: linear-gradient(145deg, #eab8c9, #c88ea7); }
.ph--2 { background: linear-gradient(145deg, #d9b98c, #cf9e5d); }
.ph--3 { background: linear-gradient(145deg, #b79bc7, #8a6aa8); }
.ph--4 { background: linear-gradient(145deg, #f0c9d4, #e2a0b6); }
.ph--5 { background: linear-gradient(145deg, #c7a98a, #a8815c); }
.ph--6 { background: linear-gradient(145deg, #e3c4a8, #cf9e5d); }

.gallery__item:hover {
  transform: scale(1.03);
}

/* =========================================
   CTA BANNER
========================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--color-primary-dark), var(--color-accent));
  padding: 70px 0;
}
.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  max-width: 600px;
}

/* =========================================
   CONTATO
========================================= */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 900px) {
  .contact__grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.contact__whatsapp-card {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.contact__whatsapp-card h3 {
  font-size: 1.4rem;
}
.contact__whatsapp-card p {
  color: var(--color-text);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  background: var(--color-bg-alt);
  padding: 24px;
  border-radius: var(--radius);
}
.info-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.social-links a {
  font-weight: 500;
  color: var(--color-primary-dark);
  border-bottom: 1.5px solid var(--color-primary-dark);
}

/* =========================================
   FOOTER
========================================= */
.footer {
  background: var(--color-dark);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.footer .logo {
  background: var(--color-bg);
  padding: 10px 16px;
  border-radius: 12px;
}
.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* =========================================
   WHATSAPP FLUTUANTE
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* =========================================
   SCROLL REVEAL
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
