:root {
    --rosa-bg: #fff7fa;
    --rosa-card: #fde9ef;
    --rosa-borda: #f5d9e8;
    --lavanda: #f4effc;
    --lavanda-suave: #ede2f6;
    --cinza: #ebe9f1;
    --branco: #fff;
    --texto: #732f4a; /* Rosa escuro para títulos, menus e botões */
    --texto-suave: #543242; /* Cinza escuro para textos gerais */
    --btn: #e781a7;
    --btn-hover: #bc3c76;
    --sombra: 0 2px 20px #eeb6cf19;
}

/* GERAL */
body {
    margin: 0;
    background: linear-gradient(120deg, var(--rosa-bg) 0%, var(--lavanda-suave) 100%);
    font-family: 'Inter', Arial, sans-serif;
    color: var(--texto-suave);
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 16px;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--branco);
    box-shadow: 0 2px 18px #eeb6cf12;
    border-bottom: 2px solid var(--rosa-borda);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--texto);
    letter-spacing: 1.2px;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef3d;
}

.menu {
    display: flex;
    gap: 14px;
}

.menu a {
    color: var(--texto);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    padding: 7px 13px;
    border-radius: 12px;
    transition: background .16s, color .16s;
    background: none;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef2a;
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu a:hover {
    background: var(--rosa-card);
    color: var(--btn-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    height: 38px;
    width: 38px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    margin: 5px 0;
    background: var(--btn-hover);
    border-radius: 3px;
    transition: .3s;
}

@media (max-width: 800px) {
    .menu {
        position: absolute;
        top: 58px;
        right: 0;
        left: 0;
        background: var(--branco);
        flex-direction: column;
        gap: 7px;
        align-items: center;
        padding: 18px 0 16px 0;
        box-shadow: 0 8px 28px #eeb6cf15;
        display: none;
    }

    .menu.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

/* HERO */
.hero {
    background: linear-gradient(120deg, var(--rosa-bg) 0%, var(--lavanda) 100%);
    padding: 48px 0 32px 0;
    text-align: center;
}

/*.logotipo {*/
/*  margin: 0 auto 12px auto;*/
/*  width: 200px; height: 200px;*/
/*  border-radius: 50%;*/
/*  background: var(--rosa-card); box-shadow: var(--sombra);*/
/*  display: flex; align-items: center; justify-content: center;*/
/*  overflow: hidden;*/
/*}*/
/*.logotipo img { width: 100%; height: 100%; object-fit: cover; }*/
.logotipo {
    width: 300px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px auto;
}

.logotipo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--texto);
    margin-bottom: 0.3em;
    margin-top: 0.1em;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef3d;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--texto-suave);
    margin-bottom: 1.2em;
}

.hero-btn {
    display: inline-block;
    background: var(--btn);
    color: #fff;
    padding: 13px 28px;
    border-radius: 32px;
    font-size: 1.07rem;
    font-weight: 600;
    box-shadow: 0 2px 12px #eeb6cf24;
    text-decoration: none;
    border: none;
    letter-spacing: 1px;
    transition: background 0.14s, transform 0.12s;
}

.hero-btn:hover {
    background: var(--btn-hover);
    transform: scale(1.04);
}

.hero-btn.clicado {
    filter: brightness(0.9);
    transform: scale(0.96);
    transition: filter 0.12s, transform 0.13s;
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.24rem;
    }

    .hero {
        padding: 28px 0 10px 0;
    }
}

/* SERVICOS */
.servicos {
    background: var(--branco);
    padding: 36px 0 26px 0;
}

.servicos h2 {
    font-size: 1.42rem;
    color: var(--texto);
    font-weight: 700;
    letter-spacing: 1.1px;
    margin-bottom: 22px;
    text-align: center;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef3d;
}

.servicos-lista {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.servico-card {
    background: var(--rosa-card);
    border-radius: 22px;
    box-shadow: var(--sombra);
    border: 1.5px solid var(--rosa-borda);
    padding: 26px 16px 20px 16px;
    width: 240px;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.14s, transform 0.12s;
    margin-bottom: 14px;
}

.servico-card:hover {
    box-shadow: 0 10px 28px #eeb6cf16;
    transform: translateY(-3px) scale(1.025);
}

.servico-icon {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icone-servico-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    background: var(--rosa-bg);
    box-shadow: 0 3px 12px #eeb6cf14;
}

.servico-card h3 {
    color: var(--texto);
    font-size: 1.01rem;
    font-weight: 700;
    margin: 6px 0 7px 0;
    letter-spacing: .6px;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef2a;
}

.servico-card p {
    font-size: 0.95rem;
    color: var(--texto-suave);
    margin-bottom: 13px;
}

.servico-btn {
    background: var(--btn);
    color: #fff;
    border-radius: 16px;
    padding: 9px 22px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 2px 8px #eeb6cf24;
    transition: background 0.12s;
    letter-spacing: 1px;
}

.servico-btn:hover {
    background: var(--btn-hover);
}

.servico-btn.clicado {
    filter: brightness(0.9);
    transform: scale(0.96);
    transition: filter 0.12s, transform 0.13s;
}

@media (max-width: 700px) {
    .servicos-lista {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .servico-card {
        width: 100%;
        max-width: 270px;
    }
}

.profissional-nome {
    display: block;
    font-size: 2.5rem;
    color: #ad5883;
    margin-bottom: 6px;
    font-family: 'Great Vibes', cursive;
    font-weight: normal;
    letter-spacing: 0.3px;
    line-height: 1.1;
}

/* BOTAO FLUTUANTE */
/*.botao-flutuante {*/
/*  position: fixed;*/
/*  bottom: 28px;*/
/*  right: 22px;*/
/*  z-index: 999;*/
/*  width: 62px;*/
/*  height: 62px;*/
/*  border: none;*/
/*  border-radius: 50%;*/
/*  background: #e781a7;*/
/*  box-shadow: 0 6px 32px #eeb6cf48;*/
/*  cursor: pointer;*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  transition: background 0.19s, transform 0.15s, box-shadow 0.19s;*/
/*  animation: flutua 1.5s infinite ease-in-out alternate;*/
/*}*/
/*.botao-flutuante:hover {*/
/*  background: #bc3c76;*/
/*  transform: scale(1.06);*/
/*  box-shadow: 0 12px 40px #bc3c7675;*/
/*}*/
/*@keyframes flutua {*/
/*  to { transform: translateY(-8px);}*/
/*}*/
/*.botao-flutuante svg {*/
/*  display: block;*/
/*}*/

/* SOBRE */
.sobre {
    background: var(--lavanda-suave);
    padding: 30px 0 22px 0;
}

.sobre-content {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.sobre h2 {
    color: var(--texto);
    font-size: 1.17rem;
    margin-bottom: 13px;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef3d;
}

.sobre p {
    color: var(--texto-suave);
    font-size: 1rem;
    line-height: 1.48;
}

/* ONDE ESTAMOS */
.onde-background {
    background: var(--branco);
    padding: 26px 0 15px 0;
}

.onde-texto {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.onde-background h2 {
    color: var(--texto);
    font-size: 1.08rem;
    margin-bottom: 11px;
    text-shadow: 0 1px 0 #fff, 0 2px 6px #fde9ef2a;
}

.onde-background a {
    color: var(--btn-hover);
    text-decoration: none;
    font-weight: 600;
}

.onde-background a:hover {
    text-decoration: underline;
    color: var(--btn);
}

.onde-background p {
    font-size: 0.99rem;
    color: var(--texto-suave);
}

/* FOOTER */
.footer {
    background: var(--btn-hover);
    color: #fff;
    padding: 16px 0;
    font-size: 1rem;
    text-align: center;
    letter-spacing: 1px;
    margin-top: 0;
}

section, .footer, .header {
    opacity: 1;
    transform: none;
    transition: opacity 0.9s, transform 0.9s;
}

.fade-prepare {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* BOTOES REDES SOCIAIS */
.footer .social-inline {
    margin-top: 12px;
    display: flex;
    justify-content: center;
}

.footer .social-inline a img {
    width: 26px;
    height: 26px;
}

/*.social-float {*/
/*  position: fixed;*/
/*  bottom: 60px;*/
/*  right: 20px;*/
/*  z-index: 9999;*/
/*  display: flex;*/
/*  flex-direction: column;*/
/*  gap: 10px;*/
/*}*/

/*.social-float a {*/
/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  width: 45px;*/
/*  height: 45px;*/
/*  background-color: #fff;*/
/*  border-radius: 50%;*/
/*  box-shadow: 0 2px 5px rgba(0,0,0,0.2);*/
/*  text-decoration: none;*/
/*}*/

/*.social-float img {*/
/*  width: 24px;*/
/*  height: 24px;*/
/*}*/

/* TELA DE ABERTURA */
#tela-inicial {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--rosa-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.flor-intro {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 1s ease, filter 1s ease;
}

.flor-intro.aparecer {
    opacity: 1;
    filter: blur(0px);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: scale(0.7);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ESTILO PARA A FLOR NO HEADER */
.logo img.logo-flor {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #e781a7;
    padding: 4px;
    box-sizing: border-box;
    box-shadow: 0 0 4px #eeb6cf42;
    object-fit: contain;
}

/* CADASTRE-SE NO MENU */
.tela-cadastro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--rosa-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    z-index: 9999;
    padding-top: 70px;
    overflow-y: auto;
}

.oculto {
    display: none;
}

.formulario-cadastro {
    background: var(--lavanda-suave);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--sombra);
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    width: 90%;
    margin-top: 20px;
}

.formulario-cadastro input, .formulario-cadastro button {
    padding: 12px;
    font-size: 1rem;
    border-radius: 12px;
    border: 1px solid var(--rosa-borda);
}

.formulario-cadastro button {
    background: var(--btn);
    color: #fff;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

.formulario-cadastro button:hover {
    background: var(--btn-hover);
}
