/* ============================================================
   VAL PRUDENTE — cleaning services
   Website styles · elegant + warm · cherry & beige
   Brand identity by Jéssica Chan (@designbychaan), adapted for cleaning.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,500&family=Questrial&family=Sacramento&display=swap');

:root {
  /* Brand palette (from Val Prudente brand book) */
  --cherry:      #69112C;  /* vermelho cereja — primary */
  --cherry-deep: #4E0C20;  /* depth */
  --cherry-soft: #8A2942;  /* hover / lighter cherry */
  --beige:       #DACBB5;  /* bege claro — neutral */
  --beige-deep:  #C8B69C;
  --beige-light: #ECE4D7;  /* tinted background */
  --cream:       #F8F4EE;  /* lightest background */
  --rose:        #B98E76;  /* rose-gold accent */
  --rose-light:  #D8BCA8;
  --ink:         #2A2024;  /* warm near-black */
  --ink-soft:    #6F6166;
  --white:       #FFFFFF;
  --black:       #000000;
  --line:        #E2D8C8;

  /* Type */
  --font-display: 'Cormorant', Georgia, 'Times New Roman', serif;
  --font-script:  'Sacramento', cursive;
  --font-sans:    'Questrial', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape — refined, minimal radii */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  /* Shadow — soft, understated */
  --shadow-sm: 0 2px 10px rgba(42,32,36,0.06);
  --shadow:    0 16px 44px rgba(42,32,36,0.12);
  --shadow-lg: 0 30px 80px rgba(78,12,32,0.18);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 68px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 0.4em;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }

p { margin: 0 0 1em; }
a { color: var(--cherry); text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 0.74rem;
  color: var(--cherry);
  margin-bottom: 1.1rem;
  display: inline-block;
}
.script-accent { font-family: var(--font-script); color: var(--cherry); font-weight: 400; }
.lede { font-size: 1.14rem; color: var(--ink-soft); max-width: 56ch; font-weight: 300; }

/* ---------- Logo component ---------- */
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo-mark { width: 44px; height: 44px; color: var(--cherry); flex-shrink: 0; }
.logo-words { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 1.18rem; color: var(--ink);
}
.logo-tag { font-family: var(--font-script); font-size: 1.05rem; color: var(--cherry); margin-top: 3px; line-height: 1; }
.logo--light .logo-mark { color: var(--beige); }
.logo--light .logo-name { color: var(--white); }
.logo--light .logo-tag { color: var(--beige); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.7em;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 0.18em;
  padding: 1.05em 2em; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--cherry); color: var(--cream); }
.btn-primary:hover { background: var(--cherry-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--cherry); border-color: var(--cherry); }
.btn-ghost:hover { background: var(--cherry); color: var(--cream); transform: translateY(-2px); }
.btn-light { background: var(--cream); color: var(--cherry); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(248,244,238,0.5); }
.btn-outline-light:hover { background: var(--cream); color: var(--cherry); border-color: var(--cream); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248,244,238,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 0.9rem; }
.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--ink); font-weight: 400; font-size: 0.84rem; text-transform: uppercase;
  letter-spacing: 0.14em; transition: color .2s ease; position: relative;
}
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1px; background:var(--cherry); transition:width .25s ease; }
.nav-links a:hover { color: var(--cherry); }
.nav-links a:hover::after { width:100%; }
.nav-cta { display: flex; align-items: center; gap: 1.4rem; }
.nav-phone { font-weight: 400; color: var(--cherry); white-space: nowrap; letter-spacing: 0.04em; font-size: 0.95rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(3rem, 6vw, 5.5rem) clamp(3.5rem, 7vw, 6.5rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1000px 540px at 90% -10%, var(--beige-light), transparent 60%),
    radial-gradient(720px 420px at -8% 108%, #F0E7DA, transparent 55%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr 0.96fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.hero h1 { font-weight: 500; }
.hero h1 .script-accent { font-size: 1.12em; display: inline-block; line-height: 0.8; }
.hero .lede { margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.2rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.4rem; align-items: center; color: var(--ink-soft); font-weight: 400; font-size: 0.86rem; letter-spacing: 0.06em; }
.hero-trust .stars { color: var(--rose); letter-spacing: 2px; font-size: 1rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.45em; }

/* Hero visual */
.hero-visual { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: linear-gradient(155deg, var(--cherry), var(--cherry-deep));
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center; padding: 1.6rem;
}
.hero-photo .photo-note { font-family: var(--font-sans); color: rgba(218,203,181,0.7); font-weight: 300; font-size: 0.82rem; text-align: center; letter-spacing: 0.05em; position: absolute; bottom: 1.4rem; left: 0; right: 0; }
.hero-photo .watermark { width: 58%; color: rgba(218,203,181,0.5); }
.hero-photo .ring { position: absolute; inset: 18px; border: 1px solid rgba(218,203,181,0.28); border-radius: var(--radius); }
.hero-badge {
  position: absolute; background: var(--cream); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1rem 1.2rem; display: flex; align-items: center; gap: 0.8rem;
  border: 1px solid var(--line);
}
.hero-badge .num { font-family: var(--font-display); font-size: 1.9rem; color: var(--cherry); line-height: 1; font-weight: 600; }
.hero-badge .lbl { font-size: 0.72rem; font-weight: 400; color: var(--ink-soft); line-height: 1.3; text-transform: uppercase; letter-spacing: 0.08em; }
.hero-badge.tl { top: 1.4rem; left: -1.2rem; }
.hero-badge.br { bottom: 1.8rem; right: -1.2rem; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--cherry); color: var(--beige); }
.trust-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(1.2rem,4vw,3.4rem); padding-block: 1.15rem; }
.trust-strip span { display: inline-flex; align-items: center; gap: 0.55em; font-weight: 300; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; }
.trust-strip svg { stroke: var(--rose-light); }

/* ---------- Sections ---------- */
section { padding-block: clamp(3.8rem, 7vw, 6.5rem); }
.section-head { max-width: 660px; margin-bottom: 3rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.divider { width: 54px; height: 1px; background: var(--rose); margin: 0 0 1.4rem; }
.section-head.center .divider { margin-inline: auto; }

/* ---------- Services ---------- */
.svc-track-label { display: flex; align-items: center; gap: 0.8em; font-family: var(--font-display); font-style: italic; font-size: 1.5rem; color: var(--cherry); margin: 0 0 1.6rem; }
.svc-track-label .ln { flex: 1; height: 1px; background: var(--line); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.svc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.1rem 1.9rem; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--beige-deep); }
.svc-icon {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  background: var(--beige-light); color: var(--cherry); margin-bottom: 1.3rem; border: 1px solid var(--line);
}
.svc-icon svg { stroke: var(--cherry); }
.svc-card h3 { margin-bottom: 0.5rem; font-weight: 600; }
.svc-card p { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 1.1rem; }
.svc-card ul { list-style: none; margin: 0; padding: 0; }
.svc-card li { position: relative; padding-left: 1.5em; margin-bottom: 0.5rem; font-size: 0.92rem; color: var(--ink); letter-spacing: 0.02em; }
.svc-card li::before { content: ""; position: absolute; left: 0; top: 0.7em; width: 7px; height: 7px; border: 1px solid var(--rose); transform: rotate(45deg); }
.svc-commercial .svc-icon { background: var(--cherry); }
.svc-commercial .svc-icon svg { stroke: var(--beige); }

/* ---------- About Val ---------- */
.about { background: var(--beige-light); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about-photo {
  aspect-ratio: 4/5; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  background: linear-gradient(160deg, var(--beige), var(--beige-deep));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.about-photo .photo-note { color: var(--ink-soft); font-weight: 300; font-size: 0.82rem; position: absolute; bottom: 1.4rem; left:0; right:0; text-align: center; letter-spacing: 0.05em; }
.about-photo .watermark { width: 52%; color: rgba(105,17,44,0.22); }
.about blockquote {
  font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: var(--cherry);
  margin: 1.6rem 0 0; padding: 0; line-height: 1.35; font-weight: 500;
}
.about .signature { font-family: var(--font-script); font-size: 2.2rem; color: var(--cherry); margin-top: 1rem; line-height: 1; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; counter-reset: step; }
.step { text-align: center; padding: 0 0.5rem; }
.step .num {
  counter-increment: step; width: 70px; height: 70px; margin: 0 auto 1.3rem;
  border-radius: 50%; background: transparent; border: 1px solid var(--rose);
  display: grid; place-items: center; font-family: var(--font-display); font-size: 1.7rem; color: var(--cherry); font-weight: 600;
}
.step .num::after { content: counter(step, decimal-leading-zero); }
.step h3 { font-size: 1.3rem; font-weight: 600; }
.step p { color: var(--ink-soft); font-size: 0.96rem; }

/* ---------- Pricing ---------- */
.pricing { background: var(--cherry); color: var(--beige); }
.pricing h2 { color: var(--white); }
.pricing .eyebrow { color: var(--rose-light); }
.pricing .divider { background: var(--rose-light); }
.pricing .section-head p { color: rgba(218,203,181,0.85); }
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; }
.price-card {
  background: var(--cream); color: var(--ink); border-radius: var(--radius); padding: 2.4rem 2rem;
  display: flex; flex-direction: column; position: relative; border: 1px solid transparent;
}
.price-card.featured { background: var(--white); box-shadow: var(--shadow-lg); border-color: var(--rose); }
.price-tag-pop { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--rose); color: var(--white); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; padding: 0.4em 1.1em; border-radius: var(--radius-sm); }
.price-card h3 { color: var(--cherry); font-weight: 600; }
.price-card .price { font-family: var(--font-display); font-size: 2.8rem; color: var(--ink); line-height: 1; margin: 0.5rem 0; font-weight: 600; }
.price-card .price small { font-family: var(--font-sans); font-size: 0.82rem; color: var(--ink-soft); font-weight: 300; text-transform: uppercase; letter-spacing: 0.08em; }
.price-card .desc { color: var(--ink-soft); font-size: 0.92rem; min-height: 2.8em; }
.price-card ul { list-style: none; margin: 1.4rem 0 1.8rem; padding: 0; flex: 1; }
.price-card li { position: relative; padding-left: 1.6em; margin-bottom: 0.6rem; font-size: 0.92rem; }
.price-card li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 6px; height: 6px; border: 1px solid var(--rose); transform: rotate(45deg); }
.price-note { text-align: center; margin-top: 2rem; color: rgba(218,203,181,0.85); font-size: 0.88rem; letter-spacing: 0.03em; }
.price-note a { color: var(--rose-light); border-bottom: 1px solid var(--rose-light); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.9rem; display: flex; flex-direction: column;
}
.testi .stars { color: var(--rose); letter-spacing: 3px; margin-bottom: 1rem; }
.testi p { font-family: var(--font-display); font-style: italic; font-size: 1.2rem; line-height: 1.5; color: var(--ink); flex: 1; font-weight: 500; }
.testi .who { display: flex; align-items: center; gap: 0.9rem; margin-top: 1.4rem; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--cherry); color: var(--beige); display: grid; place-items: center; font-weight: 600; font-family: var(--font-display); font-size: 1.2rem; }
.testi .who b { display: block; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.04em; }
.testi .who span { font-size: 0.78rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---------- Service areas ---------- */
.areas { background: var(--beige-light); }
.areas-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem,5vw,3.5rem); align-items: center; }
.area-pills { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.6rem; }
.area-pills span {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 0.6em 1.2em; font-weight: 300; font-size: 0.86rem; color: var(--cherry); letter-spacing: 0.06em;
}
.area-map { margin: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); background: var(--cream); }
.area-map svg { display: block; width: 100%; height: auto; }
.area-map-cap { font-size: 0.8rem; color: var(--ink-soft); padding: 0.85rem 1.2rem; border-top: 1px solid var(--line); letter-spacing: 0.02em; text-align: center; }
@media (max-width: 920px) { .areas-grid { grid-template-columns: 1fr; } }
/* Service-area banner image (Val's designed map graphic) */
.area-banner { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.area-banner img { display: block; width: 100%; height: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); font-weight: 600;
}
.faq-q .icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--rose); color: var(--cherry); display: grid; place-items: center; font-size: 1.2rem; transition: transform .3s ease, background .25s ease, color .25s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--cherry); color: var(--beige); border-color: var(--cherry); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 0 1.4rem; color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

/* ---------- CTA / Contact ---------- */
.cta { position: relative; overflow: hidden; }
.cta::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(880px 480px at 82% 0%, var(--beige-light), transparent 60%); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: start; }
.contact-list { list-style: none; padding: 0; margin: 1.8rem 0 0; }
.contact-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; font-weight: 400; }
.contact-list .ci { width: 48px; height: 48px; border-radius: 50%; background: var(--white); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--cherry); flex-shrink: 0; border: 1px solid var(--line); }
.contact-list small { display:block; font-weight:400; color: var(--ink-soft); font-size:0.7rem; text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 2px; }
.form-card { background: var(--white); border-radius: var(--radius); padding: clamp(1.8rem, 3vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid var(--line); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 400; font-size: 0.72rem; margin-bottom: 0.5rem; color: var(--ink); text-transform: uppercase; letter-spacing: 0.14em; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; font-weight: 300; color: var(--ink);
  padding: 0.85em 1em; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--cream);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cherry); box-shadow: 0 0 0 3px rgba(105,17,44,0.08); background: var(--white); }
.field textarea { resize: vertical; min-height: 100px; }
.form-card .btn-primary { width: 100%; justify-content: center; }
.form-success { display:none; background: var(--beige-light); color: var(--cherry); border-radius: var(--radius-sm); padding: 1rem; font-weight: 400; text-align: center; margin-top: 1rem; letter-spacing: 0.03em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--cherry-deep); color: rgba(218,203,181,0.78); padding-block: 3.4rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.4rem; margin-bottom: 2.4rem; }
.site-footer h4 { color: var(--beige); font-family: var(--font-sans); font-weight: 400; font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.site-footer a { color: rgba(218,203,181,0.78); display: block; margin-bottom: 0.6rem; font-size: 0.94rem; }
.site-footer a:hover { color: var(--white); }
.footer-about { max-width: 36ch; font-size: 0.94rem; margin-top: 1.2rem; font-weight: 300; }
.footer-bottom { border-top: 1px solid rgba(218,203,181,0.18); padding-top: 1.6rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 0.82rem; letter-spacing: 0.04em; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-grid, .about-grid, .cta-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .svc-grid, .price-grid, .testi-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-links {
    display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    background: var(--cream); padding: 1.4rem var(--gutter); gap: 1.2rem; box-shadow: var(--shadow); border-top: 1px solid var(--line);
  }
  .hero-badge.tl { left: 0.4rem; }
  .hero-badge.br { right: 0.4rem; }
}
@media (max-width: 560px) {
  .svc-grid, .price-grid, .testi-grid, .steps-grid, .footer-grid, .form-row { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
