:root {
    --cream:       #F5EFE6;
    --cream-mid:   #EDE3D6;
    --cream-deep:  #DDD0BC;
    --gold:        #B89860;
    --gold-dark:   #9A7C48;
    --gold-light:  #D4B98A;
    --text-dark:   #3A2F24;
    --text-mid:    #6B5744;
    --text-light:  #9C8774;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--cream);
    color: var(--text-dark);
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

/* ─── NOISE TEXTURE OVERLAY ─────────────────────── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: .5;
}

/* ─── TYPOGRAPHY ────────────────────────────────── */
h1, h2, h3, .font-display {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
}

.gold-text { color: var(--gold); }
.gold-dark-text { color: var(--gold-dark); }

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar {
    background: var(--cream);
    border-bottom: 1px solid var(--cream-deep);
    padding: 1.2rem 0;
}

.logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--gold-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .4rem;
}

.logo-mark .logo-icon {
    width: 32px;
    height: 32px;
}

.navbar-nav .nav-link {
    color: var(--text-mid);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .3rem 1rem !important;
    transition: color .25s;
}

.navbar-nav .nav-link:hover { color: var(--gold); }

.btn-agendar-nav {
    background: var(--gold);
    color: #fff;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .55rem 1.4rem;
    border-radius: 0;
    border: none;
    transition: background .25s;
}
.btn-agendar-nav:hover { background: var(--gold-dark); color: #fff; }

/* ─── HERO ───────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background:
            radial-gradient(ellipse 70% 60% at 80% 40%, #D4B98A22 0%, transparent 70%),
            radial-gradient(ellipse 50% 50% at 10% 80%, #B8966022 0%, transparent 60%),
            var(--cream);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    pointer-events: none;
    right: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 520px;
    height: 520px;
    border-radius: 50%;
    border: 1px solid var(--cream-deep);
    opacity: .6;
}

.hero-eyebrow {
    font-size: .78rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.4rem;
}

.hero-title {
    font-size: clamp(3.2rem, 7vw, 5.6rem);
    line-height: 1.05;
    color: var(--text-dark);
    margin-bottom: 1.6rem;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 2.6rem;
}

.btn-agendar-hero {
    background: var(--gold);
    color: #fff;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    border-radius: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    transition: background .25s, transform .2s;
    box-shadow: 0 8px 30px #B8966030;
}
.btn-agendar-hero:hover {
    background: var(--gold-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px #B8966040;
}

.btn-outline-hero {
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 1.1rem 2.4rem;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    transition: background .25s, color .25s;
}
.btn-outline-hero:hover {
    background: var(--gold);
    color: #fff;
}

/* nails decoration */
.hero-nails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    max-width: 360px;
}

.nail-card {
    aspect-ratio: 3/4;
    border-radius: 60% 60% 50% 50% / 55% 55% 45% 45%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px #B8966028;
    transition: transform .35s;
}

.nail-card:hover { transform: scale(1.04) translateY(-4px); }

.nail-card:nth-child(1) { background: linear-gradient(160deg, #E8D9C0 0%, #C9AB7F 100%); }
.nail-card:nth-child(2) { background: linear-gradient(160deg, #F0E6D5 0%, #D4B98A 100%); margin-top: 24px; }
.nail-card:nth-child(3) { background: linear-gradient(160deg, #DDD0BC 0%, #B89860 100%); }
.nail-card:nth-child(4) { background: linear-gradient(160deg, #C9AB7F 0%, #9A7C48 100%); margin-top: -16px; }
.nail-card:nth-child(5) { background: linear-gradient(160deg, #EDE3D6 0%, #C9AB7F 100%); }
.nail-card:nth-child(6) { background: linear-gradient(160deg, #D4B98A 0%, #B89860 100%); margin-top: -8px; }

.nail-card::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 15%;
    width: 30%;
    height: 40%;
    background: rgba(255,255,255,.35);
    border-radius: 50%;
    filter: blur(4px);
}

/* ─── DIVIDER ────────────────────────────────────── */
.ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gold-light);
    font-size: .7rem;
    letter-spacing: .3em;
    text-transform: uppercase;
}
.ornament::before, .ornament::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold-light), transparent);
}

/* ─── SERVICES ───────────────────────────────────── */
.services { background: var(--cream); padding: 6rem 0; }

.section-label {
    font-size: .75rem;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .6rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.2;
}

.service-item {
    padding: 2rem 1.8rem;
    border: 1px solid var(--cream-deep);
    background: #faf6f0;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    position: relative;
}

.service-item:hover {
    border-color: var(--gold-light);
    box-shadow: 0 12px 40px #B8966015;
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--cream-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    color: var(--gold);
    font-size: 1.2rem;
}

.service-item h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: .5rem;
}

.service-item p {
    font-size: .88rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 1rem;
}

.price-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 300;
}

/* ─── GALLERY ────────────────────────────────────── */
.gallery { padding: 6rem 0; background: var(--cream-mid); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 10px;
}

.g-item {
    background: var(--cream-deep);
    overflow: hidden;
    position: relative;
}

.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1; }
.g-item:nth-child(2) { aspect-ratio: 1; }
.g-item:nth-child(3) { aspect-ratio: 1; }
.g-item:nth-child(4) { grid-column: span 2; aspect-ratio: 2; }

.g-item .nail-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--text-light);
    letter-spacing: .1em;
    min-height: 160px;
}

/* nail art placeholders */
.g-item:nth-child(1) .nail-preview { background: linear-gradient(135deg, #E8D9C0 0%, #C9AB7F 40%, #B89860 100%); }
.g-item:nth-child(2) .nail-preview { background: linear-gradient(135deg, #EDE3D6 0%, #D4B98A 100%); }
.g-item:nth-child(3) .nail-preview { background: linear-gradient(135deg, #DDD0BC 0%, #C9AB7F 100%); }
.g-item:nth-child(4) .nail-preview { background: linear-gradient(135deg, #F0E6D5 0%, #D4B98A 60%, #9A7C48 100%); }

.g-overlay {
    position: absolute;
    inset: 0;
    background: rgba(58,47,36,.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
}

.g-item:hover .g-overlay { opacity: 1; }

.g-overlay span {
    color: #fff;
    font-size: .8rem;
    letter-spacing: .25em;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,.6);
    padding: .5rem 1.2rem;
}

/* ─── DEPOIMENTOS ────────────────────────────────── */
.testimonials { padding: 6rem 0; background: var(--cream); }

.testi-card {
    background: #faf6f0;
    border: 1px solid var(--cream-deep);
    padding: 2.4rem 2rem;
}

.stars { color: var(--gold); font-size: .9rem; letter-spacing: .1em; }

.testi-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 1rem 0;
}

.testi-card small {
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-light);
}

/* ─── CTA ────────────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='white' opacity='0.1'/%3E%3C/svg%3E");
}

.cta-section h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #fff;
    font-weight: 300;
}

.cta-section p {
    color: rgba(255,255,255,.85);
    font-size: 1rem;
    line-height: 1.8;
}

.btn-white {
    background: #fff;
    color: var(--gold-dark);
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    border-radius: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    transition: background .25s, transform .2s;
}

.btn-white:hover {
    background: var(--cream);
    color: var(--gold-dark);
    transform: translateY(-2px);
}

/* ─── CONTATO / INFO ─────────────────────────────── */
.contact-section { padding: 6rem 0; background: #faf6f0; }

.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: var(--cream-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-block h6 {
    font-size: .72rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: .2rem;
}

.info-block p, .info-block a {
    font-size: .95rem;
    color: var(--text-mid);
    text-decoration: none;
    line-height: 1.6;
    margin: 0;
}

.info-block a:hover { color: var(--gold); }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    font-size: .85rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 1rem 2.4rem;
    border-radius: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    text-decoration: none;
    transition: background .25s, transform .2s;
}

.btn-whatsapp:hover {
    background: #1ebe59;
    color: #fff;
    transform: translateY(-2px);
}

/* hours table */
.hours-table { width: 100%; }
.hours-table tr td {
    padding: .5rem 0;
    font-size: .88rem;
    color: var(--text-mid);
    border-bottom: 1px solid var(--cream-deep);
}
.hours-table tr td:last-child { text-align: right; color: var(--gold-dark); }

/* ─── FOOTER ─────────────────────────────────────── */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,.5);
    padding: 2.8rem 0;
    font-size: .82rem;
    letter-spacing: .08em;
}

footer .logo-mark { color: var(--gold-light); }

.social-links a {
    color: rgba(255,255,255,.4);
    font-size: 1.1rem;
    margin-left: 1.2rem;
    transition: color .2s;
}
.social-links a:hover { color: var(--gold-light); }

/* ─── STICKY WHATSAPP ────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37,211,102,.4);
    z-index: 1000;
    text-decoration: none;
    transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(37,211,102,.55);
    color: #fff;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

.fade-up { animation: fadeUp .8s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

@media (max-width: 768px) {
    .hero-nails-grid { max-width: 260px; gap: 8px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .g-item:nth-child(1) { grid-column: span 2; }
    .g-item:nth-child(4) { grid-column: span 2; }
}
