:root {
    --pink: #ff2f86;
    --pink2: #ff5b9d;
    --soft: #ffe4ee;
    --black: #0c0c0f;
    --dark: #151519;
    --dark2: #1c1c22;
    --white: #fff;
    --muted: #a7a7b1;
    --line: rgba(255, 255, 255, .1);
    --radius: 22px;
    --shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, Arial, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

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

.container {
    width: min(1160px, 92%);
    margin: auto
}

.section {
    padding: 90px 0
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    font-weight: 900;
    color: var(--pink)
}

h1,
h2,
h3 {
    line-height: 1.08
}

h1,
h2 {
    font-family: Georgia, serif
}

h1 {
    font-size: clamp(3rem, 7vw, 6rem)
}

h2 {
    font-size: clamp(2.1rem, 4vw, 3.6rem)
}

h2 span,
h1 span {
    color: var(--pink)
}

.lead {
    color: var(--muted);
    max-width: 720px;
    margin-top: 16px
}

.topbar {
    background: var(--pink);
    padding: 8px;
    text-align: center;
    font-size: .8rem;
    font-weight: 800
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 12, 15, .9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--line)
}

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

.logo img {
    width: 68px;
    height: 62px;
    object-fit: contain
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px
}

.nav-links a {
    font-size: .9rem;
    font-weight: 800;
    color: #ddd
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--pink)
}

.menu {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 28px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 13px 21px;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer
}

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

.btn-primary:hover {
    background: var(--pink2);
    transform: translateY(-2px)
}

.btn-outline {
    border-color: rgba(255, 255, 255, .22);
    color: white
}

.btn-outline:hover {
    border-color: var(--pink);
    color: var(--pink)
}

.hero {
    min-height: calc(100vh - 110px);
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 75% 25%, rgba(255, 47, 134, .2), transparent 28%), radial-gradient(circle at 10% 80%, rgba(255, 47, 134, .08), transparent 30%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
    padding: 65px 0
}

.hero p {
    font-size: 1.08rem;
    color: #c5c5cc;
    margin: 24px 0;
    max-width: 620px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-visual {
    height: 520px;
    border-radius: 35px;
    background: linear-gradient(145deg, #26262d, #101014);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.hero-visual:before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 47, 134, .2);
    border-radius: 50%
}

.hero-visual img {
    width: 65%;
    position: relative;
    filter: drop-shadow(0 20px 35px rgba(255, 47, 134, .18))
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 42px
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 42px
}

.card {
    background: var(--dark);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 27px;
    transition: .25s
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 47, 134, .45)
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    background: rgba(255, 47, 134, .12);
    color: var(--pink);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 18px
}

.card p {
    color: var(--muted);
    font-size: .9rem;
    margin-top: 8px
}

.dark-section {
    background: #111114
}

.page-head {
    padding: 85px 0 55px;
    background: radial-gradient(circle at 70% 0, rgba(255, 47, 134, .16), transparent 35%)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 35px
}

.service {
    padding: 22px;
    background: var(--dark);
    border: 1px solid var(--line);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px
}

.service small {
    display: block;
    color: var(--muted);
    margin-top: 5px
}

.price {
    color: var(--pink);
    font-weight: 900;
    white-space: nowrap
}

.filters {
    display: flex;
    gap: 9px;
    flex-wrap: wrap;
    margin: 28px 0
}

.filter {
    padding: 9px 15px;
    border: 1px solid var(--line);
    background: none;
    color: #ccc;
    border-radius: 999px;
    cursor: pointer
}

.filter.active,
.filter:hover {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink)
}

.about {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 65px;
    align-items: center
}

.about-box {
    min-height: 480px;
    background: linear-gradient(145deg, rgba(255, 47, 134, .18), rgba(255, 47, 134, .02)), var(--dark);
    border: 1px solid var(--line);
    border-radius: 32px;
    display: grid;
    place-items: center
}

.about-box img {
    width: 70%;
    max-width: 350px
}

.checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 25px 0
}

.check:before {
    content: "✓";
    color: var(--pink);
    font-weight: 900;
    margin-right: 8px
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 30px
}

.stat {
    text-align: center;
    padding: 18px;
    background: var(--dark);
    border: 1px solid var(--line);
    border-radius: 15px
}

.stat b {
    display: block;
    color: var(--pink);
    font-size: 1.5rem
}

.stat span {
    font-size: .75rem;
    color: var(--muted)
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 14px;
    margin-top: 40px
}

.gallery-item {
    border-radius: 20px;
    border: 1px solid var(--line);
    background: linear-gradient(145deg, #292930, #16161b);
    display: grid;
    place-items: end start;
    padding: 20px;
    overflow: hidden;
    position: relative
}

.gallery-item:first-child {
    grid-row: span 2
}

.gallery-item:after {
    content: "Sakura • beleza & cuidado";
    font-weight: 800;
    font-size: .82rem
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 40px
}

.quote {
    background: var(--dark);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 25px
}

.stars {
    color: var(--pink);
    letter-spacing: 3px
}

.quote p {
    color: #c5c5cc;
    margin: 15px 0
}

.quote small {
    color: var(--muted)
}

.faq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 35px
}

.faq details {
    background: var(--dark);
    border: 1px solid var(--line);
    padding: 18px 20px;
    border-radius: 16px
}

.faq summary {
    font-weight: 800;
    cursor: pointer
}

.faq p {
    color: var(--muted);
    margin-top: 10px;
    font-size: .9rem
}

.booking {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 45px
}

.contact-list {
    display: grid;
    gap: 15px;
    margin-top: 28px
}

.contact-item {
    display: flex;
    gap: 13px;
    align-items: center
}

.contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 47, 134, .12);
    color: var(--pink);
    display: grid;
    place-items: center
}

.form {
    background:  #17151A;
    color: #17171b;
    border-radius: 25px;
    padding: 28px;
    display: grid;
    gap: 14px;
    box-shadow: var(--shadow)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.form label {
    font-size: .75rem;
    font-weight: 900;
    color: #f80a81;
    display: grid;
    gap: 7px
}

.form input,
.form select,
.form textarea {
    padding: 12px;
    border: 1px solid #9c4286;
    border-radius: 11px;
    outline: none;
    background: #423838
}

.form input:focus,
.form select:focus,
.form textarea:focus {
    border-color: var(--pink)
}

.form textarea {
    min-height: 110px;
    
    resize: vertical
}

.form .btn {
    width: 100%;
    border-radius: 11px
}

.notice {
    font-size: .7rem;
    color: #f8f7f7;
    text-align: center
}

.cta {
    background: linear-gradient(135deg, #ff2f86, #b71859);
    padding: 70px 0
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px
}

.cta p {
    color: #ffe8f1;
    margin-top: 10px
}

footer {
    background: #08080a;
    border-top: 1px solid var(--line);
    padding: 55px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px
}

.footer-logo {
    width: 145px
}

.footer-grid h4 {
    margin-bottom: 12px
}

.footer-grid p,
.footer-grid a {
    color: #8e8e98;
    font-size: .84rem
}

.social {
    display: flex;
    gap: 8px;
    margin-top: 18px
}

.social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: #fff
}

.copyright {
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 20px;
    color: #666;
    font-size: .72rem
}

.whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .35)
}

.toast {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translate(-50%, 30px);
    opacity: 0;
    pointer-events: none;
    background: #19191e;
    border: 1px solid var(--line);
    padding: 13px 18px;
    border-radius: 12px;
    z-index: 100;
    font-size: .85rem;
    transition: .3s
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0)
}

@media(max-width:900px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #0c0c0f;
        flex-direction: column;
        padding: 22px;
        border-bottom: 1px solid var(--line)
    }

    .nav-links.open {
        display: flex
    }

    .menu {
        display: block
    }

    .hero-grid,
    .about,
    .booking {
        grid-template-columns: 1fr
    }

    .grid-3,
    .services-grid,
    .quote-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:620px) {
    .section {
        padding: 70px 0
    }

    .hero-grid {
        padding: 50px 0
    }

    .hero-visual {
        height: 350px
    }

    .grid-3,
    .grid-2,
    .services-grid,
    .quote-grid,
    .faq,
    .footer-grid,
    .form-row,
    .checks {
        grid-template-columns: 1fr
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px
    }

    .gallery-item:first-child {
        grid-column: span 2;
        grid-row: span 1
    }

    .stats {
        grid-template-columns: 1fr
    }

    .logo img {
        width: 60px
    }
}
/* ===== ALTERAÇÃO: seletor de idioma PT / EN ===== */
.language-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 4px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.04);
}
.lang-btn {
    border: 0;
    background: transparent;
    color: #aaa;
    font-size: .72rem;
    font-weight: 900;
    padding: 6px 8px;
    border-radius: 999px;
    cursor: pointer;
}
.lang-btn.active,
.lang-btn:hover {
    background: var(--pink);
    color: #fff;
}
@media(max-width:900px) {
    .language-switch { margin-left: 0; }
}

.service {
text-decoration: none;
color: inherit;
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service:hover {
text-decoration: none;
transform: translateY(-3px);
}



/* ===== MODAL DOS SERVIÇOS ===== */
.service-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.service-modal.show { display: flex; }

.service-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(5px);
}

.service-modal-card {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 42px 42px 44px;
    background: linear-gradient(145deg, #1c1c22, #101014);
    border: 1px solid rgba(255, 47, 134, .28);
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0,0,0,.55), 0 0 45px rgba(255,47,134,.10);
    text-align: center;
    animation: serviceModalIn .22s ease-out;
}

.service-modal-card .eyebrow { margin-bottom: 8px; }
.service-modal-card h2 { margin-bottom: 18px; font-size: clamp(2rem, 5vw, 3rem); }
.service-modal-card p { color: #c9c9d0; line-height: 1.8; font-size: 1rem; }


.service-modal-schedule {
    display: inline-flex;
    margin-top: 24px;
    min-width: 210px;
    justify-content: center;
    text-decoration: none;
}

.service-modal-schedule:hover {
    text-decoration: none;
}

.service-modal-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255,255,255,.04);
    color: #fff;
    font-size: 1.55rem;
    line-height: 1;
    cursor: pointer;
    transition: .2s ease;
}

.service-modal-close:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: rotate(90deg);
}

body.modal-open { overflow: hidden; }

@keyframes serviceModalIn {
    from { opacity: 0; transform: translateY(12px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 600px) {
    .service-modal { padding: 15px; }
    .service-modal-card { padding: 38px 24px 30px; border-radius: 20px; }
    .service-modal-card p { font-size: .94rem; }
}
