* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
    color: inherit;
}

:root {
    --nude-bg: #F5F1E8;
    --dark: #0F0F0F;
    --gold: #C6A96B;
    --text-soft: #6e6e6e;
    --glass: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(180deg, #f8f5ef, #efe8dc);
    color: var(--dark);
    padding-bottom: 100px;
    -webkit-font-smoothing: antialiased;
}

.logo-container {
    display: flex;
    justify-content: center;
    padding: 60px 0 15px;
}

.main-logo {
    max-width: 120px;
    opacity: 0.95;
}

.hero {
    text-align: center;
    padding: 0 20px;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 5px;
    text-align: center;
}

.brand-title::after {
    display: none; 
}

.brand-subtitle {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--text-soft);
    margin: 0 auto 45px;
    max-width: 320px;
    line-height: 1.6;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-subtitle::after {
    content: "";
    display: block;
    width: 45px;
    height: 2px;
    background: var(--gold);
    margin-top: 15px;
    opacity: 0.7;
}

.container-botoes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
}

.btn-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-radius: 50px;
    font-size: 13px;
    color: var(--dark);
    backdrop-filter: blur(10px);
    background: var(--glass);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.btn-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.5);
}

.btn-pill.destaque {
    background: var(--dark);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.btn-pill.destaque i {
    color: var(--gold);
}

.btn-pill i {
    font-size: 18px;
    opacity: 0.7;
}

.diferenciais {
    margin: 40px 0 10px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-soft);
}

.diferenciais p::before {
    content: "✓";
    color: var(--gold);
    margin-right: 6px;
}

.results {
    margin-top: 50px;
    text-align: center;
}

.results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.minimal-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px 20px;
}

.quote {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--text-soft);
    text-align: center;
    max-width: 320px;
}

.quote::before,
.quote::after {
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 15px auto;
    opacity: 0.7;
}

.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    z-index: 999;
}

.nav-item.central {
    position: relative;
    top: -25px;
}

.inner-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1a1a1a, #000);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--nude-bg);
}

.inner-circle i {
    color: #fff !important;
    font-size: 28px;
}

.banner-container {
    width: 95%;
    max-width: 450px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
}

.header-photo {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.procedimento-item {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

@media (min-width: 769px) {
    .mobile-bottom-nav { display: none; }
}

.social-icons {
    display: flex;          
    justify-content: center;
    align-items: center;
    width: 100%;            
    margin: 30px 0;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--dark);
    transition: all 0.3s ease;
    flex-shrink: 0; 
}

.social-icons a:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    color: var(--gold);
}

.social-icons i {
    font-size: 24px;
    margin: 0; 
    padding: 0;
}
