 :root {
  --rose: #c98985;
  --rose-dark: #8a5451;
  --blush: #f8e8e3;
  --cream: #fffaf7;
  --brown: #4b302e;
  --text: #352725;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(99, 55, 50, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, blockquote {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.05;
}
h1, h2, h3, p { margin-top: 0; }

.header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  width: 100%;
  height: 86px;
  padding: 10px clamp(20px, 5vw, 70px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 250, 247, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(138, 84, 81, .12);
}
.brand img { width: 78px; height: 66px; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav a:not(.nav-cta) { position: relative; }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 0; height: 1px;
  background: var(--rose-dark);
  transition: .3s;
}
.nav a:hover::after { width: 100%; }
.nav-cta {
  color: var(--white);
  background: var(--rose-dark);
  padding: 12px 20px;
  border-radius: 999px;
}
.menu-button { display: none; border: 0; background: transparent; font-size: 26px; }

.hero {
  min-height: 100vh;
  padding: 150px clamp(24px, 8vw, 120px) 70px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(48, 28, 26, .82), rgba(48, 28, 26, .32)),
    url("assets/unhas-florais.jpg") center 45% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  width: 420px; height: 420px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  right: -110px; top: 150px;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; color: white; }
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  color: var(--rose-dark);
  margin-bottom: 18px;
}
.hero .eyebrow { color: #f6d3cd; }
.hero h1 { font-size: clamp(58px, 8vw, 104px); margin-bottom: 22px; font-weight: 600; }
.hero h1 em { color: #f3c4bc; font-weight: 500; }
.hero p { max-width: 600px; font-size: clamp(17px, 2vw, 22px); color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0 28px; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.button.primary { background: var(--rose); color: white; }
.button.secondary { border: 1px solid rgba(255,255,255,.75); color: white; }
.button.large { padding: 17px 30px; }
.hero-badges { display: flex; gap: 22px; flex-wrap: wrap; font-size: 13px; }

.section { padding: 100px clamp(22px, 7vw, 100px); }
.section-heading { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-heading h2, .about-content h2, .contact-box h2 {
  font-size: clamp(40px, 5.6vw, 66px);
  margin-bottom: 18px;
  color: var(--brown);
}
.section-heading p { color: #776361; }

.intro { padding-bottom: 20px; background: var(--cream); }
.services { background: linear-gradient(180deg, var(--cream), #f6e8e3); }
.service-grid {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-card {
  min-height: 300px;
  padding: 32px 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(138,84,81,.12);
  border-radius: 28px;
  box-shadow: 0 10px 35px rgba(80,48,45,.07);
  transition: transform .3s;
}
.service-card:hover { transform: translateY(-8px); }
.service-card > span { color: var(--rose); font-family: "Cormorant Garamond", serif; font-size: 34px; }
.service-card h3 { font-size: 32px; margin: 42px 0 16px; }
.service-card p { color: #725f5c; font-size: 14px; }

.portfolio { background: var(--cream); }
.gallery {
  max-width: 1180px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 310px;
  gap: 18px;
}
.gallery-item {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery img { height: 100%; object-fit: cover; transition: transform .6s; }
.gallery-item:hover img { transform: scale(1.05); }

.about { background: #f4dfd8; }
.about-card {
  max-width: 1150px;
  margin: auto;
  padding: 50px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 60px;
  background: rgba(255,255,255,.68);
  border-radius: 36px;
  box-shadow: var(--shadow);
}
.about-logo img { max-width: 420px; margin: auto; border-radius: 28px; }
.about-content p { color: #695654; }
blockquote { margin: 28px 0; font-size: 30px; color: var(--rose-dark); }
.text-link { font-weight: 700; color: var(--rose-dark); }

.contact { background: var(--cream); }
.contact-box {
  max-width: 1000px;
  margin: auto;
  padding: clamp(38px, 7vw, 82px);
  border-radius: 38px;
  text-align: center;
  background: var(--brown);
  color: white;
  box-shadow: var(--shadow);
}
.contact-box .eyebrow { color: #f2c7bf; }
.contact-box h2 { color: white; }
.contact-box > p { color: rgba(255,255,255,.74); }
.contact-info {
  margin-top: 48px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-info strong { color: #f3c8c0; }
.contact-info p { margin: 6px 0 0; font-size: 14px; color: rgba(255,255,255,.76); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  padding: 14px 20px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  transition: transform .25s;
}
.whatsapp-float:hover { transform: translateY(-4px); }

footer {
  padding: 38px 20px;
  background: #271b1a;
  color: rgba(255,255,255,.68);
  text-align: center;
  font-size: 13px;
}
footer img { width: 95px; height: 80px; object-fit: contain; margin: 0 auto 14px; border-radius: 12px; }
footer a { color: #efc1b9; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav {
    position: absolute;
    top: 86px; left: 0; right: 0;
    display: none;
    padding: 24px;
    flex-direction: column;
    background: var(--cream);
    box-shadow: 0 16px 30px rgba(0,0,0,.1);
  }
  .nav.open { display: flex; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .about-card { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .header { height: 76px; }
  .brand img { width: 64px; height: 55px; }
  .nav { top: 76px; }
  .hero { min-height: 92vh; padding-top: 130px; background-position: 62% center; }
  .hero h1 { font-size: 54px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 24px; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 360px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .about-card { padding: 22px; gap: 30px; }
  .contact-info { grid-template-columns: 1fr; }
  .whatsapp-float span { font-size: 13px; }
}
