/* BELÍSSIMA - VANESSA BABINI */
:root {
    --primary: #A24C61;
    --primary-light: #E2A9C0;
    --primary-soft: #E1C9D5;
    --dark: #411528;
    --accent: #710C21;
    --gold: #D4AF37;
    --gold-light: #F5E7A3;
    
    --white: #FFFFFF;
    --bg-light: #FDF8F5;
    --text-dark: #411528;
    --text-soft: #5A3A4A;
    
    --shadow-lux: 0 25px 50px -12px rgba(65, 21, 40, 0.25);
    --shadow-glow: 0 0 30px rgba(162, 76, 97, 0.5);
    --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.4);
    --border-glow: 1px solid rgba(162, 76, 97, 0.4);
}

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

body {
    background: var(--primary-soft);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* CURSOR PERSONALIZADO */
.custom-cursor {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    transform: translate(-50%, -50%);
    background: rgba(162, 76, 97, 0.1);
    backdrop-filter: blur(2px);
}

.custom-cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.05s ease;
    transform: translate(-50%, -50%);
}

/* PARTÍCULAS */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, var(--primary-light), transparent);
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

.static-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary-light) 100%);
    z-index: -2;
}

.delicate-sparkles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.delicate-sparkles:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 30% 50%, rgba(162, 76, 97, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: floatSparkle 50s linear infinite;
}

@keyframes floatSparkle {
    0% { background-position: 0 0; }
    100% { background-position: 100% 100%; }
}

.decorative-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

.decorative-lines:before {
    content: '';
    position: absolute;
    top: 10%;
    left: 3%;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--gold), var(--primary), transparent);
    box-shadow: 0 0 8px var(--primary);
}

.decorative-lines:after {
    content: '';
    position: absolute;
    top: 10%;
    right: 3%;
    width: 2px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, var(--primary), var(--gold), var(--primary), transparent);
    box-shadow: 0 0 8px var(--primary);
}

/* NAVEGAÇÃO */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(225, 201, 213, 0.85);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: var(--border-glow);
    transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.navbar.scrolled {
    background: rgba(225, 201, 213, 0.95);
    box-shadow: var(--shadow-lux);
    border-bottom-color: var(--primary);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.logo-main {
    font-size: 1.8rem;
    font-weight: 800;
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, var(--dark), var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 400;
    color: var(--primary);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
}

.nav-menu a:not(.btn-agendar):after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width 0.4s ease;
    box-shadow: 0 0 5px var(--primary);
}

.nav-menu a:not(.btn-agendar):hover:after {
    width: 70%;
}

.nav-menu a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px rgba(162, 76, 97, 0.3);
}

.btn-agendar {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    color: white !important;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(162, 76, 97, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-agendar:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-agendar:hover:before {
    left: 100%;
}

.btn-agendar:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(113, 12, 33, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--primary);
    margin: 4px 0;
    transition: 0.3s;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#heroVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(225, 201, 213, 0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 160px 20px 100px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
    display: inline-block;
    background: rgba(162, 76, 97, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(162, 76, 97, 0.4);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(162, 76, 97, 0.2);
}

.hero-title {
    font-size: 5.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    letter-spacing: 6px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 50%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(162, 76, 97, 0.3);
}

.hero-stylist {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    text-shadow: 0 0 10px rgba(162, 76, 97, 0.3);
}

.hero-location {
    font-size: 1rem;
    color: var(--text-soft);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero-tagline {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 45px;
    color: var(--text-soft);
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    border-top: 1px solid rgba(162, 76, 97, 0.4);
    border-bottom: 1px solid rgba(162, 76, 97, 0.4);
    display: inline-block;
    padding: 12px 30px;
    background: rgba(255,255,255,0.3);
    backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(162, 76, 97, 0.1);
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 16px 48px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(65, 21, 40, 0.3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover:before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    backdrop-filter: blur(10px);
    padding: 16px 48px;
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(162, 76, 97, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(113, 12, 33, 0.4);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(162, 76, 97, 0.3);
}

/* DIFERENCIAIS */
.diferenciais {
    display: flex;
    gap: 70px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 50px 0 60px;
}

.diferencial-item {
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(15px);
    padding: 25px 30px;
    border-radius: 25px;
    border: 1px solid rgba(162, 76, 97, 0.3);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.diferencial-item:hover {
    transform: translateY(-15px);
    background: rgba(255,255,255,0.8);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(162, 76, 97, 0.2), 0 0 20px rgba(162, 76, 97, 0.3);
}

.diferencial-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, rgba(162, 76, 97, 0.1), rgba(212, 175, 55, 0.1));
    transition: all 0.4s ease;
}

.diferencial-item:hover .diferencial-icon {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(162, 76, 97, 0.4);
}

.diferencial-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.diferencial-item p:first-of-type {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 1rem;
}

.diferencial-item p:last-of-type {
    font-size: 0.75rem;
    color: var(--text-soft);
    text-transform: uppercase;
}

.hero-social a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 32px;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s ease;
    border: 1px solid rgba(162, 76, 97, 0.3);
}

.hero-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(162, 76, 97, 0.4);
}

.scroll-indicator a {
    color: var(--primary);
    font-size: 1.8rem;
    transition: all 0.4s ease;
    display: inline-block;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

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

section:not(.hero) {
    padding: 120px 20px;
    position: relative;
    background: var(--primary-soft);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark);
    position: relative;
    letter-spacing: 2px;
}

.section-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title:before,
.section-title:after {
    content: '✦';
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 20px;
    opacity: 0.6;
    text-shadow: 0 0 5px var(--primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-soft);
    font-size: 1rem;
    margin-bottom: 70px;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.servico-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(162, 76, 97, 0.2);
    position: relative;
    overflow: hidden;
}

.servico-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--accent), var(--primary));
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.servico-card:hover:before {
    transform: scaleX(1);
}

.servico-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 50px -20px rgba(162, 76, 97, 0.4), 0 0 30px rgba(162, 76, 97, 0.2);
    border-color: rgba(162, 76, 97, 0.5);
    background: rgba(255, 255, 255, 0.95);
}

.servico-card h3 {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servico-card p {
    color: var(--text-soft);
    margin-bottom: 25px;
    line-height: 1.7;
}

.servico-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 35px;
    font-weight: 600;
}

.preco {
    color: var(--accent);
    font-size: 1.6rem;
    font-weight: 800;
}

.duracao {
    color: var(--text-soft);
}

.btn-servico {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 38px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-servico:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(162, 76, 97, 0.2), transparent);
    transition: left 0.4s ease;
}

.btn-servico:hover:before {
    left: 100%;
}

.btn-servico:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(162, 76, 97, 0.3);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1500px;
    margin: 0 auto;
}

.port-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.port-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px -20px rgba(162, 76, 97, 0.4), 0 0 30px rgba(162, 76, 97, 0.2);
}

.port-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.port-item:hover img {
    transform: scale(1.08);
}

.port-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(65, 21, 40, 0.9));
    padding: 30px;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.port-item:hover .port-overlay {
    transform: translateY(0);
}

.port-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.sobre-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.sobre-imagem {
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0,0,0,0.15);
    position: relative;
}

.sobre-imagem:before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px solid rgba(162, 76, 97, 0.5);
    border-radius: 25px;
    pointer-events: none;
    z-index: 1;
    box-shadow: 0 0 20px rgba(162, 76, 97, 0.2);
}

.sobre-imagem img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.sobre-imagem:hover img {
    transform: scale(1.02);
}

.sobre-conteudo h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sobre-conteudo .destaque {
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 30px;
    font-weight: 500;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
}

.sobre-conteudo p {
    color: var(--text-soft);
    margin-bottom: 20px;
    line-height: 1.9;
}

.sobre-stats {
    display: flex;
    gap: 60px;
    margin: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 10px rgba(162, 76, 97, 0.3);
}

.stat-item span:last-child {
    color: var(--text-soft);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 14px 38px;
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(65, 21, 40, 0.2);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-instagram:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-instagram:hover:before {
    left: 100%;
}

.btn-instagram:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(113, 12, 33, 0.3);
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #A24C61, #710C21);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(162, 76, 97, 0.5);
    transition: all 0.3s ease;
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #710C21, #A24C61);
    box-shadow: 0 8px 30px rgba(113, 12, 33, 0.6);
}

.whatsapp-float i {
    font-size: 2.5rem;
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(162, 76, 97, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(162, 76, 97, 0); }
    100% { box-shadow: 0 0 0 0 rgba(162, 76, 97, 0); }
}

.footer {
    background: linear-gradient(135deg, var(--dark), #2A0D1A);
    padding: 80px 20px 40px;
    border-top: 3px solid var(--primary);
    position: relative;
}

.footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--gold), var(--primary), transparent);
    box-shadow: 0 0 10px var(--primary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
}

.footer-section h3, .footer-section h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
    color: var(--primary-light);
    font-size: 1.4rem;
}

.footer-section p {
    color: #D4C5D0;
    margin-bottom: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-section p i {
    width: 25px;
    color: var(--primary-light);
}

.footer-section a {
    color: #D4C5D0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
    text-shadow: 0 0 5px var(--primary-light);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: var(--primary-light);
    font-size: 1.5rem;
    transition: all 0.4s ease;
    background: rgba(226, 169, 192, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 169, 192, 0.3);
}

.social-links a:hover {
    background: var(--primary-light);
    color: var(--dark);
    transform: translateY(-5px);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(226, 169, 192, 0.5);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 14px;
}

.footer-section ul li a {
    color: #D4C5D0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
    padding-left: 8px;
    text-shadow: 0 0 5px var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px solid rgba(226, 169, 192, 0.2);
    color: rgba(212, 197, 208, 0.7);
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
    .sobre-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    .sobre-stats {
        justify-content: center;
    }
    .hero-title {
        font-size: 4rem;
        letter-spacing: 4px;
    }
    .section-title:before,
    .section-title:after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(225, 201, 213, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 50px 0;
        transition: 0.4s;
        gap: 30px;
        box-shadow: var(--shadow-lux);
    }
    .nav-menu.active {
        left: 0;
    }
    .hamburger {
        display: flex;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    .hero-stylist {
        font-size: 1rem;
    }
    .hero-tagline {
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    .diferenciais {
        gap: 20px;
    }
    .diferencial-item {
        padding: 15px 20px;
    }
    .diferencial-icon {
        width: 55px;
        height: 55px;
    }
    .diferencial-icon i {
        font-size: 1.5rem;
    }
    .servicos-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .footer-container {
        text-align: center;
    }
    .footer-section p {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    .whatsapp-float i {
        font-size: 2rem;
    }
    .custom-cursor, .custom-cursor-dot {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 15px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
}