
        :root {
            --primary: #e2498a;
            /* Pink do original */
            --primary-dark: #c23871;
            /* Versão mais escura para o hover */
            --secondary: #32373c;
            /* Charcoal do texto original */
            --background: #FFE8F7;
            /* Fundo suave original */
            --white: #ffffff;
            --surface: #ffffff;
            /* Fundo de cards branco para dar contraste */
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--background);
            color: var(--secondary);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Buttons */
        .btn {
            display: inline-block;
            background-color: var(--primary);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(205, 168, 157, 0.3);
        }

        .btn:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(205, 168, 157, 0.4);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem 0;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        header.scrolled {
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: #E384bf;
            letter-spacing: 1px;
        }

        .logo span {
            color: #E384bf;
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            align-items: center;
            list-style: none;
        }

        .nav-links a {
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--secondary);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 1px;
            background-color: var(--primary);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            color: var(--secondary);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            min-height: 700px;
            display: flex;
            align-items: center;
            position: relative;
            background-image: url('../imagens/rafaela-gomes-espaco.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(250, 247, 245, 0.9) 0%, rgba(250, 247, 245, 0.4) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.5s;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            color: #555;
        }

        /* Features */
        .features {
            padding: 5rem 0;
            background-color: var(--white);
            margin-top: -50px;
            position: relative;
            z-index: 10;
            border-radius: 30px 30px 0 0;
            box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.03);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            text-align: center;
        }

        .feature-card {
            padding: 2rem;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: var(--surface);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary);
        }

        .feature-card h3 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        /* Sobre */
        .sobre {
            padding: 8rem 0;
            background-color: var(--background);
        }

        .sobre-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .sobre-img-container {
            position: relative;
        }

        .sobre-img-container::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid var(--primary);
            border-radius: 20px;
            z-index: 0;
        }

        .sobre-img {
            width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 1;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .sobre-content h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }

        .sobre-content h2 span {
            color: var(--primary);
            font-style: italic;
        }

        .sobre-content p {
            margin-bottom: 2rem;
            font-size: 1.05rem;
            color: #555;
        }

        /* Serviços */
        .servicos {
            padding: 8rem 0;
            background-color: var(--white);
        }

        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .section-header p {
            color: #666;
        }

        .servicos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .servico-card {
            background-color: var(--background);
            border-radius: 20px;
            padding: 3rem 2rem;
            text-align: center;
            transition: var(--transition);
            border: 1px solid transparent;
            cursor: pointer;
        }

        .servico-card:hover {
            background-color: var(--white);
            border-color: var(--primary);
            box-shadow: 0 15px 30px rgba(205, 168, 157, 0.15);
            transform: translateY(-5px);
        }

        .servico-card h3 {
            font-size: 1.4rem;
            margin: 1.5rem 0 1rem;
            color: var(--secondary);
        }

        .servico-card p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 1.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .servico-link {
            color: var(--primary);
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .servico-link:hover {
            gap: 8px;
            color: var(--primary-dark);
        }

        /* Depoimentos */
        .depoimentos {
            padding: 6rem 0;
            background-color: var(--background);
            text-align: center;
        }

        .depoimentos-header h4 {
            color: #333;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            font-family: 'Inter', sans-serif;
            font-weight: 400;
        }

        .depoimentos-header h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .depoimentos-header p {
            color: var(--secondary);
            font-size: 1.1rem;
            margin-bottom: 3rem;
        }

        /* CTA */
        .cta {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--surface) 0%, var(--background) 100%);
            text-align: center;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: var(--white);
            padding: 5rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-about p {
            color: #aaa;
            margin-top: 1.5rem;
            max-width: 300px;
        }

        .footer-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            font-weight: 400;
            color: #E384bf;
        }

        .footer-logo span {
            color: #E384bf;
            font-weight: 800;
        }

        .footer-links h4,
        .footer-contact h4 {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: var(--white);
        }

        .footer-links ul,
        .footer-contact ul {
            list-style: none;
        }

        .footer-links li,
        .footer-contact li {
            margin-bottom: 1rem;
        }

        .footer-links a,
        .footer-contact a {
            color: #aaa;
        }

        .footer-links a:hover,
        .footer-contact a:hover {
            color: var(--primary);
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            color: #aaa;
        }

        .footer-contact i-lucide {
            color: var(--primary);
            flex-shrink: 0;
            width: 20px;
            height: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: #888;
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--white);
        }

        .social-links a:hover {
            background-color: var(--primary);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }


/* Fluid layout and accessible navigation */
img { max-width:100%; }
.container { width:100%; }
section[id], footer[id] { scroll-margin-top:110px; }
.features-grid, .sobre-grid, .footer-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
.sobre-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
.footer-grid { grid-template-columns:2fr 1fr 1fr; }
.features-grid > *, .sobre-grid > *, .footer-grid > * { min-width:0; }
h1, h2, h3, .footer-contact a { overflow-wrap:anywhere; }
.btn { max-width:100%; text-align:center; min-height:44px; }
.social-links a { width:44px; height:44px; }
.footer-contact svg { flex-shrink:0; width:20px; }
.hero { height:auto; min-height:max(700px,100svh); padding:150px 0 120px; }
.reveal { opacity:1; transform:none; }
.reveal-pending { opacity:0; transform:translateY(24px); }
.reveal-pending.active { opacity:1; transform:none; }
.mobile-menu-btn { min-width:44px; min-height:44px; align-items:center; justify-content:center; font-size:1.5rem; }
.mobile-menu-btn svg { width:24px; height:24px; }
.servico-card:focus-visible, a:focus-visible, button:focus-visible, summary:focus-visible { outline:3px solid var(--primary-dark); outline-offset:4px; }
.servicos-grid { grid-template-columns:repeat(auto-fit,minmax(min(300px,100%),1fr)); }
@media(max-width:992px) {
 .sobre-grid, .footer-grid { grid-template-columns:minmax(0,1fr); gap:2.5rem; }
 .features-grid { grid-template-columns:repeat(auto-fit,minmax(min(250px,100%),1fr)); gap:1.5rem; }
 header, header.scrolled { padding:.75rem 0; }
 .nav-container { gap:1rem; }
 .mobile-menu-btn { display:flex; flex-shrink:0; }
 .nav-links { position:absolute; top:100%; left:0; width:100%; max-height:calc(100dvh - 68px); overflow-y:auto; overscroll-behavior:contain; background:var(--white); flex-direction:column; align-items:stretch; gap:.5rem; padding:1rem 1.25rem 1.5rem; box-shadow:0 12px 20px #32373c15; visibility:hidden; opacity:0; pointer-events:none; transform:translateY(-8px); transition:opacity .2s ease,transform .2s ease,visibility .2s; }
 .nav-links.active { visibility:visible; opacity:1; pointer-events:auto; transform:none; }
 .nav-links a { display:flex; min-height:44px; align-items:center; justify-content:center; padding:.65rem 1rem; }
 .hero h1 { font-size:3rem; }
}
@media(max-width:768px) {
 .container { padding:0 1.25rem; }
 .logo { font-size:1.35rem; letter-spacing:.5px; }
 .hero { min-height:100svh; padding:120px 0 90px; background-attachment:scroll; background-position:65% center; }
 .hero h1 { font-size:clamp(2.1rem,8vw,3rem); }
 .hero p { font-size:1rem; margin-bottom:1.75rem; }
 .features { padding:2.5rem 0; margin-top:-30px; }
 .feature-card { padding:1.5rem 1rem; }
 .sobre, .servicos, .depoimentos, .cta { padding:3.5rem 0; }
 .sobre-img-container::before { top:-10px; left:-10px; }
 .sobre-content h2, .section-header h2, .cta h2, .depoimentos-header h2 { font-size:clamp(1.8rem,7vw,2.3rem); line-height:1.25; }
 .section-header { margin-bottom:2rem; }
 .servico-card { padding:1.5rem; }
 .servico-card h3 { margin-top:.5rem; }
 footer { padding:3rem 0 2rem; }
 .footer-grid { margin-bottom:2rem; }
 .footer-bottom { flex-direction:column; gap:1rem; text-align:center; }
}
@media(prefers-reduced-motion:reduce) {
 *, *::before, *::after { scroll-behavior:auto!important; animation:none!important; transition:none!important; }
 .hero-content, .reveal-pending { opacity:1; transform:none; }
}

/* Progressive disclosure of treatments on small screens */
.servicos-toggle-container { text-align:center; margin-top:2rem; }
.servicos-toggle-container[hidden] { display:none; }
@media(max-width:768px) {
 .servicos { overflow-anchor:none; }
 .servicos-grid.is-collapsed > .servico-card:nth-child(n+5) { display:none; }
 .servico-card { scroll-margin-top:100px; }
 #servicos-toggle { scroll-margin:100px 0 24px; }
}
