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

  :root {
    color-scheme: light;
    --cream: #FAF7F2;
    --warm: #F0E8DC;
    --rose: #C4967A;
    --rose-dark: #9E6E52;
    --brown: #5C3D2E;
    --text: #2A1A12;
    --muted: #8A7060;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; color-scheme: light; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #FAF7F2 !important;
    color: #2A1A12 !important;
    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: 1.2rem 3rem;
    background: rgba(250,247,242,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(196,150,122,0.2);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 600; letter-spacing: 0.08em;
    color: var(--brown); text-decoration: none;
  }
  .servicos-grid, .reviews-grid { list-style: none; padding: 0; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--muted); text-decoration: none; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rose); }
  .nav-cta {
    background: var(--rose); color: var(--white);
    border: none; padding: 0.6rem 1.4rem; border-radius: 2px;
    font-family: 'DM Sans', sans-serif; font-size: 0.78rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    cursor: pointer; text-decoration: none; transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--rose-dark); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 4rem 5rem 6rem;
  }
  .hero-tag {
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--rose); }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 300; line-height: 1.1; color: var(--brown);
    margin-bottom: 1.5rem;
  }
  .hero-title em { font-style: italic; color: var(--rose); }
  .hero-subtitle {
    font-size: 1rem; color: var(--muted); line-height: 1.7;
    max-width: 400px; margin-bottom: 2.5rem;
  }
  .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    background: var(--rose); color: var(--white);
    padding: 0.85rem 2rem; border-radius: 2px;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: background 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-primary:hover { background: var(--rose-dark); }
  .btn-secondary {
    border: 1px solid var(--rose); color: var(--rose);
    padding: 0.85rem 2rem; border-radius: 2px;
    font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; transition: all 0.2s;
    display: inline-flex; align-items: center; gap: 0.5rem;
  }
  .btn-secondary:hover { background: var(--rose); color: var(--white); }
  .hero-rating {
    margin-top: 3rem; display: flex; align-items: center; gap: 0.8rem;
    padding-top: 2rem; border-top: 1px solid rgba(196,150,122,0.25);
  }
  .stars { color: var(--rose); font-size: 1rem; letter-spacing: 2px; }
  .rating-text { font-size: 0.82rem; color: var(--muted); }
  .rating-text strong { color: var(--brown); }

  .hero-right {
    position: relative; overflow: hidden;
    background: var(--warm);
  }
  .hero-img-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #E8D5C4 0%, #D4B8A0 50%, #C4967A 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    color: var(--white); gap: 1rem;
  }
  .hero-img-placeholder svg { opacity: 0.6; }
  .hero-img-placeholder p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-style: italic; opacity: 0.8; }
  .hero-badge {
    position: absolute; bottom: 2rem; left: -1rem;
    background: var(--white); padding: 1rem 1.5rem;
    border-left: 3px solid var(--rose); box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  }
  .hero-badge p { font-size: 0.75rem; color: var(--muted); }
  .hero-badge strong { font-size: 1.1rem; font-family: 'Cormorant Garamond', serif; color: var(--brown); display: block; }

  /* FAIXA */
  .strip {
    background: var(--brown);
    padding: 1.2rem 0; overflow: hidden;
  }
  .strip-inner {
    display: flex;
    white-space: nowrap;
    will-change: transform;
  }
  .strip-track {
    display: flex;
    flex-shrink: 0;
  }
  .strip-item {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    padding: 0 2rem;
  }
  .strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
  @keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
  }
  .strip-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* SOBRE */
  .section { padding: 6rem 6rem; }
  .section-alt { background: var(--warm); }
  .section-tag {
    font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--rose); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--rose); }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300; color: var(--brown); line-height: 1.2; margin-bottom: 1.5rem;
  }

  .sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .sobre-img {
    aspect-ratio: 3/4; background: linear-gradient(160deg, #D4B8A0, #C4967A);
    border-radius: 2px; position: relative;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.5); font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem; font-style: italic;
  }
  .sobre-img::after {
    content: ''; position: absolute; top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
    border: 1px solid rgba(196,150,122,0.4); border-radius: 2px; z-index: -1;
  }
  .sobre-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1.2rem; font-size: 0.95rem; }
  .sobre-stats { display: flex; gap: 2rem; margin-top: 2.5rem; }
  .stat { text-align: center; }
  .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--rose); line-height: 1; }
  .stat-label { font-size: 0.75rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem; }

  /* SERVIÇOS */
  .servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .servico-card {
    background: var(--white); padding: 2rem 1.8rem;
    border: 1px solid rgba(196,150,122,0.15); border-radius: 2px;
    transition: all 0.3s; position: relative; overflow: hidden;
    cursor: default;
  }
  .servico-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 2px; background: var(--rose); transform: scaleX(0);
    transition: transform 0.3s;
  }
  .servico-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(92,61,46,0.1); }
  .servico-card:hover::before { transform: scaleX(1); }
  .servico-icon { font-size: 1.8rem; margin-bottom: 1rem; }
  .servico-name { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--brown); margin-bottom: 0.5rem; }
  .servico-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  /* AGENDAMENTO */
  .agenda-section {
    background: var(--brown);
    padding: 6rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  }
  .agenda-section .section-title { color: var(--white); }
  .agenda-section .section-tag { color: var(--rose); }
  .agenda-section .section-tag::before { background: var(--rose); }
  .agenda-text p { color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 2rem; }
  .agenda-card {
    background: var(--cream); padding: 2.5rem;
    border-radius: 2px;
  }
  .info-row {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid rgba(196,150,122,0.15);
  }
  .info-row:last-child { border-bottom: none; }
  .info-icon { color: var(--rose); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
  .info-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
  .info-value { font-size: 0.92rem; color: var(--brown); margin-top: 2px; line-height: 1.5; }
  .whatsapp-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.7rem;
    background: #25D366; color: var(--white);
    padding: 1rem; border-radius: 2px; text-decoration: none;
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
    margin-top: 1.5rem; transition: opacity 0.2s;
  }
  .whatsapp-btn:hover { opacity: 0.9; }

  /* AVALIAÇÕES */
  .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .review-card {
    background: var(--white); padding: 1.8rem;
    border: 1px solid rgba(196,150,122,0.15); border-radius: 2px;
  }
  .review-stars { color: var(--rose); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 0.8rem; }
  .review-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 1.2rem; }
  .review-author { font-size: 0.8rem; font-weight: 500; color: var(--brown); }

  /* FOOTER */
  footer {
    background: var(--brown);
    color: rgba(255,255,255,0.6);
    padding: 3rem 6rem;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem; color: rgba(255,255,255,0.8);
  }
  .footer-text { font-size: 0.78rem; text-align: center; }
  .footer-insta { font-size: 0.78rem; color: var(--rose); text-decoration: none; }

  /* WA FLOAT */
  .wa-float {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
    background: #25D366; color: var(--white);
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.2s;
  }
  .wa-float:hover { transform: scale(1.1); }

  /* ANIMAÇÕES */
  .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero { grid-template-columns: 1fr; }
    .hero-left { padding: 6rem 1.5rem 3rem; }
    .hero-right { height: 300px; }
    .section { padding: 4rem 1.5rem; }
    .sobre-grid, .servicos-grid, .reviews-grid { grid-template-columns: 1fr; }
    .agenda-section { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2rem; }
    footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; text-align: center; }
    .sobre-stats { justify-content: center; }
}