    :root {
      --rose-50: #fff1f3;
      --rose-100: #ffe4e9;
      --rose-200: #fecdd5;
      --rose-300: #fda4b3;
      --rose-400: #fb7089;
      --rose-500: #f43f65;
      --rose-600: #e11d4a;
      --rose-700: #be1239;
      --rose-800: #9f1239;
      --rose-deep: #c9395a;
      --rose-soft: #e8798f;
      --gray-50: #f9f9f9;
      --gray-100: #f3f3f4;
      --gray-200: #e8e8eb;
      --gray-300: #d1d1d7;
      --gray-400: #9d9daa;
      --gray-500: #71717f;
      --gray-600: #52525e;
      --gray-700: #3b3b44;
      --gray-800: #27272f;
      --gray-900: #18181e;
      --white: #ffffff;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--gray-800);
      background: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--rose-100);
      padding: 0 2rem;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 2px 20px rgba(196,57,90,0.08);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--rose-deep);
      letter-spacing: 0.01em;
    }

    .logo-sub {
      padding-left: 0.15rem;  
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gray-400);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      color: var(--gray-600);
      transition: color 0.2s;
      letter-spacing: 0.02em;
    }

    .nav-links a:hover { color: var(--rose-deep); }

    .nav-cta {
      background: linear-gradient(135deg, var(--rose-deep), var(--rose-soft));
      color: white !important;
      padding: 0.5rem 1.2rem;
      border-radius: 50px;
      font-weight: 600 !important;
      box-shadow: 0 4px 12px rgba(201,57,90,0.25);
      transition: transform 0.2s, box-shadow 0.2s !important;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(201,57,90,0.35) !important;
      color: white !important;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 6px;
      z-index: 200;
      position: relative;
    }

    .hamburger span {
      width: 26px; height: 2.5px;
      background: var(--rose-deep);
      border-radius: 2px;
      transition: 0.35s ease;
      display: block;
    }

    /* Fullscreen mobile menu overlay */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 150;
      background: linear-gradient(160deg, var(--rose-50) 0%, #fff 40%, var(--rose-100) 100%);
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
    }

    .mobile-menu.open {
      display: flex;
      opacity: 1;
      pointer-events: all;
    }

    .mobile-menu-close {
      position: absolute;
      top: 1.2rem; right: 1.4rem;
      background: none;
      border: none;
      cursor: pointer;
      width: 46px; height: 46px;
      border-radius: 50%;
      background: var(--rose-100);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
    }

    .mobile-menu-close:hover {
      background: var(--rose-200);
      transform: rotate(90deg);
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
      content: '';
      position: absolute;
      width: 20px; height: 2.5px;
      background: var(--rose-deep);
      border-radius: 2px;
    }

    .mobile-menu-close::before { transform: rotate(45deg); }
    .mobile-menu-close::after  { transform: rotate(-45deg); }

    .mobile-menu-logo {
      margin-bottom: 2.5rem;
      display: flex;
      align-items: center;
      gap: 0.7rem;
      text-decoration: none;
    }

    .mobile-menu-logo .logo-name { font-size: 1.8rem; }
    .mobile-menu-logo .logo-sub { font-size: 0.95rem; }

    .mobile-nav-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.3rem;
      width: 100%;
      padding: 0 2rem;
    }

    .mobile-nav-links li {
      width: 100%;
      max-width: 320px;
      text-align: center;
    }

    .mobile-nav-links a {
      display: block;
      padding: 1rem 1.5rem;
      font-size: 1.25rem;
      font-family: 'Playfair Display', serif;
      font-weight: 600;
      color: var(--gray-700);
      text-decoration: none;
      border-radius: 14px;
      transition: background 0.2s, color 0.2s;
    }

    .mobile-nav-links a:hover {
      background: var(--rose-100);
      color: var(--rose-deep);
    }

    .mobile-nav-links .mobile-cta {
      margin-top: 1rem;
      display: block;
      background: linear-gradient(135deg, var(--rose-deep), var(--rose-soft));
      color: white !important;
      border-radius: 50px;
      padding: 1rem 2rem;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700;
      box-shadow: 0 6px 20px rgba(201,57,90,0.3);
    }

    .mobile-menu-socials {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
    }

    /* ── HERO ── */
    #inicio {
      min-height: 100vh;
      padding-top: 70px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      background: linear-gradient(135deg, var(--rose-50) 0%, var(--white) 50%, var(--gray-50) 100%);
      position: relative;
      overflow: hidden;
    }

    #inicio::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,57,90,0.08), transparent 70%);
      pointer-events: none;
    }

    #inicio::after {
      content: '';
      position: absolute;
      bottom: -150px; left: -100px;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,57,90,0.05), transparent 70%);
      pointer-events: none;
    }

    .hero-content {
      padding: 4rem 3rem 4rem 6rem;
      animation: fadeInLeft 0.9s ease both;
    }

    @keyframes fadeInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--rose-100);
      color: var(--rose-deep);
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }

    .hero-badge::before {
      content: '✦';
      font-size: 0.6rem;
    }

    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 4vw, 3.4rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--gray-900);
      margin-bottom: 1.2rem;
    }

    .hero-title em {
      font-style: italic;
      color: var(--rose-deep);
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--rose-deep), var(--rose-soft));
      color: white;
      padding: 0.85rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(201,57,90,0.3);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(201,57,90,0.4);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: 2px solid var(--rose-200);
      color: var(--rose-deep);
      padding: 0.85rem 1.8rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-secondary:hover {
      background: var(--rose-50);
      border-color: var(--rose-deep);
    }

    .hero-stats {
      display: flex;
      gap: 2rem;
    }

    .stat { display: flex; flex-direction: column; }

    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--rose-deep);
    }

    .stat-label {
      font-size: 0.78rem;
      color: var(--gray-400);
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-visual {
      /*padding: 2rem 2rem 2rem 2rem;*/
      display: flex;
      justify-content: center;
      animation: fadeInRight 0.9s ease both;
    }

    @keyframes fadeInRight {
      from { opacity: 0; transform: translateX(30px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    .hero-card {  
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 20px 60px rgba(201,57,90,0.12), 0 4px 16px rgba(0,0,0,0.06);
      max-width: 460px;
      width: 100%;
      position: relative;
    }

    .hero-card::before {
      content: '';
      position: absolute;
      top: -12px; right: -12px;
      width: 80px; height: 80px;
      background: linear-gradient(135deg, var(--rose-200), var(--rose-100));
      border-radius: 50%;
      z-index: -1;
    }

    .card-img-placeholder {
      width: 100%;
      height: 360px;
      background: linear-gradient(135deg, var(--rose-100), var(--rose-50));
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      margin-bottom: 1.5rem;
    }
    .card-img-renata{
        padding: 1rem;
        width: 360px;
        height: 360px;
        filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.5));
        border-radius: 2rem;
    }

    .card-tag {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--rose-soft);
      margin-bottom: 0.4rem;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--gray-800);
      margin-bottom: 0.6rem;
    }

    .card-desc {
      font-size: 0.875rem;
      color: var(--gray-500);
      line-height: 1.6;
    }

    /* ── SECTION SHARED ── */
    section { padding: 6rem 2rem; }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--rose-soft);
      margin-bottom: 0.8rem;
    }

    .section-label::before, .section-label::after {
      content: '';
      display: block;
      width: 20px; height: 1px;
      background: var(--rose-300);
    }

    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--gray-900);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .section-desc {
      font-size: 1rem;
      color: var(--gray-500);
      line-height: 1.7;
      max-width: 560px;
    }

    /* ── SOBRE ── */
    #sobre { background: var(--gray-50); }

    .sobre-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .sobre-img-wrap { position: relative; }

    .sobre-img {
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, var(--rose-100) 0%, var(--rose-200) 100%);
      border-radius: 24px 24px 100px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 7rem;
      box-shadow: 20px 20px 60px rgba(201,57,90,0.12);
      padding: 1rem;
    }

    .img-renata{
        border-radius: 24px 24px 100px 24px ;
        filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.5));
        width: 460px;
        height: 630px;
    }

    .sobre-badge {
      position: absolute;
      bottom: -20px; right: -20px;
      background: white;
      border-radius: 16px;
      padding: 1.2rem 1.5rem;
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      text-align: center;
    }

    .sobre-badge .num {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--rose-deep);
      display: block;
    }

    .sobre-badge .lbl {
      font-size: 0.75rem;
      color: var(--gray-500);
      font-weight: 500;
    }

    .sobre-content { padding: 1rem 0; }

    .sobre-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem;
      font-weight: 700;
      color: var(--gray-900);
      margin: 1rem 0 0.3rem;
    }

    .sobre-cred {
      font-size: 0.9rem;
      color: var(--rose-soft);
      font-weight: 600;
      margin-bottom: 1.2rem;
    }

    .sobre-text {
      font-size: 1.1rem;
      color: var(--gray-500);
      line-height: 1.8;
      margin-bottom: 1.4rem;
    }

    .sobre-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 2rem;
    }

    .skill-pill {
      background: var(--rose-50);
      border: 1px solid var(--rose-100);
      color: var(--rose-deep);
      padding: 0.35rem 0.9rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      letter-spacing: 0.1rem;
    }

    /* ── TRATAMENTOS ── */
    #tratamentos { background: white; }

    .trat-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .trat-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .trat-header .section-label { justify-content: center; }
    .trat-header .section-desc { margin: 0 auto; text-align: center; }

    .trat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .trat-card {
      background: var(--gray-50);
      border: 1px solid var(--gray-100);
      border-radius: 20px;
      padding: 2rem;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
      cursor: default;
    }

    .trat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(201,57,90,0.12);
      border-color: var(--rose-200);
      background: white;
    }

    .trat-icon {
      width: 54px; height: 54px;
      background: linear-gradient(135deg, var(--rose-100), var(--rose-50));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1.2rem;
    }

    .trat-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.2rem;
      letter-spacing: 0.1rem;
      font-weight: 700;
      color: var(--gray-800);
      margin-bottom: 0.6rem;
    }

    .trat-desc {
      font-size: 0.9rem;
      letter-spacing: 0.1rem;
      color: var(--gray-500);
      line-height: 1.65;
    }

    .trat-card .trat-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      margin-top: 1rem;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--rose-deep);
      text-decoration: none;
      opacity: 0;
      transition: opacity 0.2s;
    }

    .trat-card:hover .trat-link { opacity: 1; }

    /* ── FOOTER ── */
    footer {
      background: var(--gray-900);
      color: var(--gray-300);
      padding: 4rem 2rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid var(--gray-700);
    }

    .footer-brand .logo-name { color: var(--rose-300); font-size: 1.3rem; }
    .footer-brand .logo-sub { color: var(--gray-500); }


    .footer-tagline {
      font-size: 0.875rem;
      color: var(--gray-500);
      line-height: 1.7;
      margin-top: 1rem;
    }

    .footer-col h4 {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--rose-300);
      margin-bottom: 1.2rem;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.7rem; }

    .footer-col ul li a {
      text-decoration: none;
      color: var(--gray-400);
      font-size: 0.9rem;
      transition: color 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .footer-col ul li a:hover { color: var(--rose-300); }

    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 0.5rem;
    }

    .social-btn {
      width: 40px; height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      text-decoration: none;
      transition: transform 0.2s, background 0.2s;
    }

    .social-btn.whatsapp { background: rgba(37,211,102,0.15); color: #25d366; }
    .social-btn.whatsapp:hover { background: #25d366; color: white; transform: translateY(-2px); }

    .social-btn.instagram { background: rgba(225,48,108,0.15); color: #e1306c; }
    .social-btn.instagram:hover {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: white; transform: translateY(-2px);
    }

    .social-btn.facebook { background: rgba(24,119,242,0.15); color: #1877f2; }
    .social-btn.facebook:hover { background: #1877f2; color: white; transform: translateY(-2px); }

    .agendamento-box {
      background: linear-gradient(135deg, var(--rose-deep), var(--rose-700));
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      margin-top: 1rem;
    }

    .agendamento-box p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.8);
      margin-bottom: 0.8rem;
    }

    .agendamento-box a {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: white;
      color: var(--rose-deep);
      padding: 0.6rem 1.2rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.2s;
    }

    .agendamento-box a:hover { transform: scale(1.04); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.8rem;
      color: var(--gray-500);
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .footer-bottom span { color: var(--rose-400); }

    /* ── RESPONSIVE ── */

    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      #inicio { grid-template-columns: 1fr; padding: 2rem; padding-top: 90px; }
      .hero-content { padding: 2rem 11rem; }
      .hero-visual { padding: 1rem 0; }
      .sobre-inner { grid-template-columns: 1fr; gap: 3rem; }
      .sobre-img { aspect-ratio: 4/3; font-size: 5rem; }
      .trat-grid { grid-template-columns: 1fr 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .img-renata {width: 560px ; height: 720px;}
    }
    @media (max-width: 700px){
        .hero-content { padding: 2rem 4rem; }

    }

    @media (max-width: 600px) {
      .trat-grid { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; }
      .hero-content { padding: 2rem 2.5rem; }
      .hero-stats { gap: 1.2rem; }
      .img-renata {width:460px ; height: 560px;}
    }

    @media (max-width: 560px){
        .img-renata {width:360px ; height: 460px;}
        .hero-card{
            padding: 2rem;
            max-width: 360px;
        }
        .card-img-placeholder{
            height: 280px;
        }
        .card-img-renata{
            width: 280px;
            height: 280px;
        }
        .img-renata {width:300px ; height: 400px;}

    }

    @media (max-width: 400px){
        .img-renata {width:300px ; height: 400px;}
        .hero-card{
            padding: 1.2rem;
            max-width: 360px;
        }

    }
    @media (max-width: 360px) { 
        #inicio{
            padding: 0rem;
        }
        .img-renata {width:260px ; height: 360px;}
        .hero-card{
            padding: 1rem;
            max-width: 340px;
        }
        
    }