*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --rose: #f4b8c8;
    --rose-light: #fde8ef;
    --rose-pale: #fff5f8;
    --rose-deep: #c4738a;
    --rose-dark: #8b4a60;
    --nude: #f7ede8;
    --nude-warm: #eeddd5;
    --gold: #c9a97a;
    --gold-light: #f0dfc0;
    --text-dark: #3d2a30;
    --text-mid: #7a5060;
    --text-light: #b08898;
  }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--rose-pale);
    color: var(--text-dark);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2.5rem;
    background: rgba(255,245,248,0.95);
    backdrop-filter: blur(8px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--rose-light);
  }
  .nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--rose-dark);
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .nav-logo span { color: var(--gold); }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a {
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-mid);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--rose-dark); }
  .nav-cta {
    background: var(--rose-dark);
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 25px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--rose-deep) !important; color: #fff !important; }
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--rose-dark);
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  #inicio {
    position: relative;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 4rem 3.5rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--rose-pale) 55%, var(--rose-light) 100%);
    max-width: 1500px;
    margin: 0 auto;
  }
  .hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--rose);
    opacity: 0.12;
    pointer-events: none;
  }
  .hero-text { position: relative; z-index: 2; }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-light);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 1.4rem;
  }
  .hero-badge::before { content: '✦'; font-size: 10px; }
  .hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.8vw, 3.4rem);
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
  }
  .hero-text h1 em { font-style: italic; color: var(--rose-dark); }
  .hero-text p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 400px;
    margin-bottom: 2.2rem;
    font-weight: 300;
  }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose-dark);
    color: #fff;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(139,74,96,0.25);
    font-family: 'DM Sans', sans-serif;
  }
  .btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139,74,96,0.35);
  }

  /* Hero photo frame */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .hero-photo-frame { position: relative; width: 320px; height: 400px; }
  .hero-photo-blob {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--rose-light), var(--nude-warm));
    border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  }
  .hero-photo-main {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 58% 42% 53% 47% / 48% 58% 42% 52%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-photo-main img { width: 100%; height: 100%; object-fit: cover; }
  .hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--nude-warm), var(--rose));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
  }
  .hero-photo-placeholder .icon { font-size: 4rem; }
  .hero-photo-placeholder p { font-size: 0.75rem; color: var(--rose-dark); font-weight: 500; text-align: center; padding: 0 1rem; line-height: 1.4; }
  .upload-btn {
    background: var(--rose-dark);
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 0.72rem;
    cursor: pointer;
    margin-top: 4px;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
  }
  .upload-btn:hover { background: var(--rose-deep); }
  .hero-float-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: #fff;
    border-radius: 16px;
    padding: 10px 16px;
    box-shadow: 0 4px 20px rgba(139,74,96,0.14);
    font-size: 0.75rem;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--rose-light);
    z-index: 3;
  }
  .hero-float-badge span { color: var(--rose-dark); font-size: 1rem; display: block; }
  .hero-float-loc {
    position: absolute;
    top: -10px;
    left: -15px;
    background: #fff;
    border-radius: 14px;
    padding: 8px 14px;
    box-shadow: 0 4px 16px rgba(139,74,96,0.12);
    font-size: 0.72rem;
    color: var(--text-mid);
    border: 1px solid var(--rose-light);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  input[type="file"] { display: none; }

  /* ── SECTION COMMONS ── */
  section { padding: 5rem 2.5rem; }
  .inner { max-width: 900px; margin: 0 auto; }
  .section-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--rose-deep);
    margin-bottom: 0.6rem;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    color: var(--text-dark);
    margin-bottom: 0.7rem;
    line-height: 1.2;
  }
  .section-title em { font-style: italic; color: var(--rose-dark); }
  .section-sub {
    font-size: 0.92rem;
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 2.5rem;
  }
  .center { text-align: center; }
  .center .section-sub { margin-left: auto; margin-right: auto; }

  /* ── SERVIÇOS ── */
  #servicos { background: #fff; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1.3rem;
    margin-top: 0.5rem;
  }
  .service-card {
    background: var(--rose-pale);
    border: 1px solid var(--rose-light);
    border-radius: 20px;
    padding: 1.6rem 1.4rem;
    text-align: center;
    transition: all 0.25s;
  }
  .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(196,115,138,0.12);
    border-color: var(--rose);
  }
  .service-icon { font-size: 2rem; margin-bottom: 0.7rem; display: block; }
  .service-name { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.35rem; }
  .service-desc { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin-bottom: 0.9rem; }
  .service-price { font-size: 1.05rem; font-weight: 500; color: var(--rose-dark); }

  /* ── INSTAGRAM ── */
  #instagram { background: var(--rose-pale); }
  .social-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .insta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    padding: 9px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    margin-top: 0.5rem;
  }
  .insta-link:hover { opacity: 0.85; }
  .instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .insta-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--nude-warm);
    cursor: pointer;
    transition: transform 0.2s;
  }
  .insta-item:hover { transform: scale(1.02); }
  .insta-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .insta-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--nude-warm), var(--rose-light));
    border: 2px dashed var(--rose);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s;
  }
  .insta-placeholder:hover { background: var(--rose-light); }
  .insta-placeholder .ph-icon { font-size: 1.8rem; opacity: 0.6; }
  .insta-placeholder .ph-text { font-size: 0.7rem; color: var(--text-light); text-align: center; line-height: 1.4; }
  .insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61,42,48,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .insta-item:hover .insta-overlay { background: rgba(61,42,48,0.35); }
  .insta-overlay-icon { color: #fff; font-size: 1.5rem; opacity: 0; transition: opacity 0.2s; }
  .insta-item:hover .insta-overlay-icon { opacity: 1; }

  /* ── TIKTOK ── */
  #tiktok { background: #fff; }
  .tiktok-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    padding: 9px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    margin-top: 0.5rem;
  }
  .tiktok-link:hover { opacity: 0.8; }
  .tiktok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-items: center;
  }
  .tiktok-item {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    background: #1a1a1a;
    max-height: 320px;
  }
  .tiktok-item iframe { width: 100%; height: 100%; border: none; }
  .tiktok-embed-form {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem;
  }
  .tiktok-embed-form .tk-icon { font-size: 2rem; }
  .tiktok-embed-form p { font-size: 0.72rem; color: rgba(255,255,255,0.6); text-align: center; line-height: 1.5; }
  .tiktok-embed-form input {
    width: 100%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #fff;
    font-size: 0.72rem;
    padding: 6px 10px;
    outline: none;
    font-family: 'DM Sans', sans-serif;
  }
  .tiktok-embed-form input::placeholder { color: rgba(255,255,255,0.35); }
  .tiktok-embed-form button {
    background: #fe2c55;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 0.72rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: opacity 0.2s;
  }
  .tiktok-embed-form button:hover { opacity: 0.85; }

  /* ── SOBRE ── */
  #sobre {
    background: var(--rose-pale);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 3.5rem;
    max-width: 1500px;
    margin: 0 auto;
  }
  .about-visual { position: relative; height: 360px; }
  .about-blob {
    width: 280px;
    height: 320px;
    background: var(--rose-light);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    position: absolute;
    top: 20px;
    left: 20px;
  }
  .about-photo {
    width: 260px;
    height: 300px;
    border-radius: 50% 40% 50% 40%;
    position: absolute;
    top: 30px;
    left: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--nude-warm), var(--rose));
    font-size: 5rem;
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }
  .about-card-float {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: #fff;
    border: 1px solid var(--rose-light);
    border-radius: 16px;
    padding: 12px 18px;
    font-size: 0.8rem;
    color: var(--text-mid);
    box-shadow: 0 4px 16px rgba(196,115,138,0.1);
  }
  .about-card-float strong { display: block; font-size: 1.2rem; color: var(--rose-dark); margin-bottom: 2px; }
  .about-stats { display: flex; gap: 2rem; margin-top: 1.5rem; }
  .stat-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--rose-dark); }
  .stat-item span { font-size: 0.8rem; color: var(--text-light); }

  /* ── DEPOIMENTOS ── */
  #depoimentos { background: #fff; }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
    margin-top: 0.5rem;
  }
  .testimonial-card {
    background: var(--rose-pale);
    border: 1px solid var(--rose-light);
    border-radius: 20px;
    padding: 1.5rem;
    transition: box-shadow 0.2s;
  }
  .testimonial-card:hover { box-shadow: 0 8px 24px rgba(196,115,138,0.1); }
  .stars { color: var(--gold); font-size: 0.88rem; margin-bottom: 0.7rem; }
  .testimonial-text { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 1rem; font-style: italic; font-family: 'Playfair Display', serif; }
  .testimonial-author { display: flex; align-items: center; gap: 10px; }
  .author-avatar {
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.72rem; font-weight: 500;
    background: var(--rose-light);
    color: var(--rose-dark);
    flex-shrink: 0;
  }
  .author-name { font-size: 0.8rem; font-weight: 500; color: var(--text-dark); }
  .author-role { font-size: 0.7rem; color: var(--text-light); }

  /* ── CTA ── */
  #contato {
    background: var(--rose-dark);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }
  #contato::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: var(--rose-deep);
    border-radius: 50%;
    top: -100px; left: -100px;
    opacity: 0.3;
  }
  #contato::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: var(--rose-deep);
    border-radius: 50%;
    bottom: -80px; right: -50px;
    opacity: 0.2;
  }
  #contato h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #fff;
    margin-bottom: 0.8rem;
    position: relative; z-index: 2;
  }
  #contato h2 em { font-style: italic; color: var(--gold-light); }
  #contato p {
    color: rgba(255,255,255,0.75);
    font-size: 0.92rem;
    margin-bottom: 2.5rem;
    position: relative; z-index: 2;
    font-weight: 300;
  }
  .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s;
    position: relative; z-index: 2;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
  }
  .btn-whatsapp:hover { background: #1db954; transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 1.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
  footer span { color: var(--rose); }

  /* ── RESPONSIVE: TABLETS (≤1024px) ── */
  @media (max-width: 1024px) {
    nav { padding: 1.1rem 1.8rem; }
    .nav-links { gap: 1.2rem; }

    #inicio { padding: 3.5rem 2.2rem; gap: 2.5rem; }
    .hero-photo-frame { width: 280px; height: 340px; }

    #sobre { padding: 4.5rem 2.2rem; gap: 2.5rem; }
    .about-visual { height: 320px; }
    .about-blob { width: 250px; height: 290px; }
    .about-photo { width: 230px; height: 270px; }

    section { padding: 4.5rem 2.2rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
  }

  /* ── RESPONSIVE: TABLETS PEQUENOS / CELULARES GRANDES (≤768px) ── */
  @media (max-width: 768px) {
    nav { padding: 1rem 1.2rem; position: relative; }
    .nav-toggle { display: flex; }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 0;
      background: #fff;
      border-bottom: 1px solid var(--rose-light);
      box-shadow: 0 16px 28px rgba(139,74,96,0.1);
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .nav-links.open { max-height: 340px; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.9rem 1.5rem; width: 100%; }
    .nav-links a.nav-cta { margin: 0.4rem 1.5rem 1rem; width: calc(100% - 3rem); border-radius: 25px; text-align: center; }

    #inicio {
      grid-template-columns: 1fr;
      padding: 3rem 1.5rem;
      min-height: auto;
      gap: 3rem;
      text-align: center;
    }
    .hero-text p { margin-left: auto; margin-right: auto; }
    .hero-visual { justify-content: center; }
    .hero-photo-frame { width: 260px; height: 320px; }

    #sobre {
      grid-template-columns: 1fr;
      padding: 4rem 1.5rem;
      gap: 2rem;
      text-align: center;
    }
    .about-visual { height: 280px; margin-bottom: 1rem; }
    .about-blob { width: 220px; height: 260px; }
    .about-photo { width: 200px; height: 240px; }
    .about-card-float { padding: 10px 14px; font-size: 0.72rem; }
    .about-stats { justify-content: center; }

    section { padding: 4rem 1.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid, .tiktok-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats { gap: 1.2rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .social-header { text-align: left; }
  }

  /* ── RESPONSIVE: CELULARES (≤480px) ── */
  @media (max-width: 480px) {
    nav { padding: 0.9rem 1rem; }
    .nav-logo { font-size: 1.15rem; }

    #inicio { padding: 2.5rem 1.2rem; }
    .hero-text h1 { font-size: 1.85rem; }
    .hero-text p { font-size: 0.9rem; max-width: none; }
    .hero-photo-frame { width: 220px; height: 280px; }
    .hero-float-badge, .hero-float-loc { font-size: 0.68rem; padding: 7px 11px; }
    .btn-primary { width: 100%; justify-content: center; padding: 14px 20px; }

    section { padding: 3.2rem 1.2rem; }
    .section-title { font-size: 1.6rem; }

    .services-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
    .service-card { padding: 1.2rem 1rem; }

    .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .tiktok-grid { grid-template-columns: 1fr; gap: 14px; }
    .tiktok-item { max-width: 260px; max-height: 462px; margin: 0 auto; }

    .about-visual { height: 240px; }
    .about-blob { width: 180px; height: 210px; }
    .about-photo { width: 165px; height: 195px; }
    .about-stats { flex-wrap: wrap; row-gap: 0.9rem; justify-content: center; }

    .testimonial-text { font-size: 0.84rem; }

    #contato { padding: 3.5rem 1.5rem; }
    .btn-whatsapp { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.85rem; }

    footer { padding: 1.5rem 1rem; font-size: 0.72rem; }
  }