* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
}

:root {
    --primaria: #bb61b1;
    --secundaria: #f590f7;
    --escuro: #be70eb;
    --maisEscuro: #bb3dcc;
    --claro: #e2e8f0;
    --vidro: rgba(255, 255, 255, 0.1);
    --verde: #0b6530;
    --branco: #F0F8FF;
    --preto: #000000;
    --rosaClaro: #FFF5EE;
    --roxoClaro: #2d2748;
}

body {
    background-color: var(--rosaClaro);
    color: var(--claro);
}

.navegacao {
    position: fixed;
    top: 0;
    background: var(--rosaClaro);
    width: 100%;
    z-index: 100;
    padding: 1.5rem;
}

.menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 1.2rem;
}

.menu-link {
    text-decoration: none;
    color: var(--preto);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.menu-link::after {
    content: '';
    height: 2px;
    width: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primaria), var(--secundaria));
    transition: width 0.5s ease;
}

.menu-link:hover::after {
    width: 100%;
}

.cabecalho {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: var(--roxoClaro);
}

.cabecalho-sub-titulo {
    max-width: 600px;
    margin: 24px auto 0 auto;
    background: #fff6fa;
    border-radius: 18px;
    padding: 18px 28px;
    font-size: 1.15rem;
    color: var(--roxoClaro);
    box-shadow: 0 2px 12px rgba(231, 132, 223, 0.08);
    line-height: 1.6;
}

.foto-perfil {
    width: 320px;
    height: 320px;
    box-shadow: 0 0 20px rgba(231, 132, 223, 0.3);
    border-radius: 50%;
    border: 4px solid #f4d8e7;
}

.particulas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background:
        radial-gradient(circle at 10% 20%, var(--primaria) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, var(--secundaria) 0%, transparent 20%),
        var(--rosaClaro);
}

.logo-estetica {
    width: 300px;
    height: auto;
    margin-right: 16px;
}

.menu-separador {
    color: var(--preto);
    opacity: 0.5;
    margin: 0 0.7rem 0 0.7rem;
    font-weight: bold;
    font-size: 1.2rem;
    align-self: center;
    display: inline;
}

.botao-form {
    color: var(--branco);
    background: var(--verde);
    padding: 0.4rem 1.1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.98rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
    width: auto;
}

.botao-form:hover {
    background: #15803d;
}

@keyframes tremor-whatsapp {
    0%, 100% { transform: translateX(0); }
    10% { transform: translateX(-1px) rotate(-0.5deg); }
    20% { transform: translateX(1px) rotate(0.5deg); }
    30% { transform: translateX(-1.5px) rotate(-0.7deg); }
    40% { transform: translateX(1.5px) rotate(0.7deg); }
    50% { transform: translateX(-1px) rotate(-0.5deg); }
    60% { transform: translateX(1px) rotate(0.5deg); }
    70% { transform: translateX(-0.5px) rotate(-0.2deg); }
    80% { transform: translateX(0.5px) rotate(0.2deg); }
    90% { transform: translateX(0); }
}

.whatsapp-fixo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--verde);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    z-index: 2000;
    transition: box-shadow 0.2s;
    animation: tremor-whatsapp 1s ease-in-out infinite;
}

.whatsapp-fixo:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.whatsapp-icone {
    width: 38px;
    height: 38px;
}

.whatsapp-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    background: #ff4d5a;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.contatos {
    padding: 6rem 2rem;
}

.contatos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d2748;
}

.formulario-contato {
    max-width: 600px;
    margin: 0 auto;
    background: #fff5ee;
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 16px;
    border: 1.5px solid #252525;
}

.formulario-contato .botao-form {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.campo-form {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--preto);
    border: 1.5px solid #252525;
    outline: none;
    margin-bottom: 0.5rem;
}

.campo-form:focus {
    border-color: #bb61b1;
    box-shadow: 0 0 10px rgba(180, 99, 182, 0.15);
}

.grupo-form {
    margin-bottom: 1.5rem;
}

.carrossel-container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    margin-top: 120px;
    display: block;
    background: transparent;
    position: relative;
    left: 0;
    right: 0;
    transform: none;
}

.carrossel-slide {
    width: 100vw;
    max-width: 100vw;
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
}

.carrossel-img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.5s;
    margin: 0;
    padding: 0;
}

.carrossel-img.ativo {
    display: block;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .carrossel-img {
        height: auto;
        max-height: 60vh;
        object-fit: cover;
    }
    
    .carrossel-slide {
        min-height: auto;
    }
}

@media screen and (min-width: 769px) {
    .carrossel-slide {
        min-height: auto;
    }
    .carrossel-img {
        max-height: none;
    }
}

.carrossel-indicadores {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
}

.carrossel-bolinha {
    width: 20px;
    height: 20px;
    background: #f5f5f5;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
    border: none;
}

.carrossel-bolinha.ativo {
    background: #7c768a;
}

.sobre {
    padding: 2rem 2rem;
}

.sobre-titulo {
    font-size: 3rem;
    color: var(--roxoClaro);
    text-align: center;
    margin-bottom: 15px;
}

.sobre-caixa {
    color: var(--roxoClaro);
    padding: 2rem;
    max-width: 1200px;
    margin: 80px auto 0 auto;
    border-radius: 16px;
    border: 1px solid var(--vidro);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.sobre-bloco {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.foto-demonstracao {
    border-radius: 100px;
    width: 120px;
    min-width: 120px;
    height: 120px;
    object-fit: cover;
}

.sobre-texto {
    flex: 1;
}

.sobre-subtitulo {
    font-size: 2rem;
    margin: 0 0 0.5rem 0;
    color: var(--roxoClaro);
    font-weight: 400;
}

.sobre-paragrafo {
    text-align: left;
    font-size: 1.2rem;
    margin: 0;
}

.sobre-botao-container {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.botao-compre {
    color: var(--branco);
    background: #fb6261;
    padding: 0.7rem 2.2rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: background 0.3s;
    width: auto;
}

.texto-promocional {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.texto-promocional p:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #2d2748;
    margin-bottom: 18px;
}

.texto-escolha-planos {
    font-size: 1.1rem;
    margin-top: 5px;
    padding: 10px;
    font-weight: 400;
}

.texto-escolha-planos b {
    font-size: 1.2rem;
    font-weight: 700;
}

.texto-promocional .texto-escolha-planos:nth-child(2) {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    letter-spacing: 1px;
}

.texto-sessoes-promocionais {
    margin-top: 10px;
    padding: 5px;
}

.social-section {
    padding: 30px 0;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    padding: 5px;
    transition: transform 0.3s;
}

.social-icons img:hover {
    transform: scale(1.1);
}

.instagram-icon {
    width: 100;
    height: 80px;
    object-fit: contain;
}

.projetos {
    padding: 6rem 2rem;
    color: var(--roxoClaro);
}

.projetos-caixa {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.projetos-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--vidro);
    overflow: hidden;
    transition: all 0.5 ease;
    cursor: pointer;
    color: #000000;
}

.projetos-titulo {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.projetos-card:hover {
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
    transform: translateY(-10px) scale(1.03);
}

.projetos-imagem {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.info-projetos {
    margin-bottom: 5px;
}

.paragrafo-projetos {
    color: rgba(28, 32, 38, 0.8);
    line-height: 1.25rem;
}

.caixa-textos-projetos {
    padding: 1.5rem;
}

@media (max-width: 933px) {

    .menu,
    .logo-estetica {
        display: none !important;
    }

    .menu-mobile-fixo {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 1401;
        background: #fff;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        border-radius: 0;
        padding: 6px 18px;
    }

    body > *:not(.navegacao):first-child {
        margin-top: 100px;
    }

    .icon-menu-mobile {
        display: block !important;
        width: 35px;
        height: 35px;
        position: static;
        cursor: pointer;
        z-index: 1201;
        background-color: #be70eb;
    }

    .logo-mobile-menu {
        display: block;
        width: 280px;
        height: 90px;
        object-fit: contain;
        border-radius: 8px;
    }

    .dropdown-menu-mobile {
        display: none;
        position: absolute;
        top: 60px;
        left: 18px;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
        border-radius: 16px;
        width: 240px;
        min-width: 240px;
        flex-direction: column;
        padding: 24px 0 12px 0;
        z-index: 2001;
    }

    .dropdown-menu-mobile.aberta {
        display: flex;
    }

    .dropdown-menu-mobile .menu-link {
        color: #2d2748;
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 500;
        padding: 14px 28px;
        display: block;
        border-radius: 0;
        transition: background 0.2s;
        text-align: left;
        border-bottom: 1px solid #f0e0f7;
    }

    .dropdown-menu-mobile .menu-link:last-child {
        border-bottom: none;
    }

    .dropdown-menu-mobile .menu-link:hover {
        background: #f4d8e7;
    }

    .dropdown-close {
        position: absolute;
        top: 10px;
        right: 18px;
        font-size: 2rem;
        color: #e14b6d;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1400;
        font-weight: bold;
        line-height: 1;
    }
}

@media (min-width: 934px) {

    .dropdown-menu-mobile,
    .icon-menu-mobile,
    .menu-mobile-fixo,
    .logo-mobile-menu {
        display: none !important;
    }
}

.icon-menu-mobile {
    display: none;
}

@media (max-width: 768px) {
    .sobre-bloco {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    .sobre-texto {
        flex: none;
    }
    .sobre-subtitulo {
        text-align: center;
    }
    .sobre-paragrafo {
        text-align: center;
    }
    .foto-demonstracao {
        margin-bottom: 1rem;
    }
}

.mensagem-erro {
    color: #ff4d4d;
    font-size: 0.9rem;
    margin-top: 4px;
    display: block;
    font-weight: 500;
}