@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Dancing+Script:wght@400..700&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
    --cor-secundaria: #048C80;
    --cor-headline: #017467;
    --cor-main: #f1c3bf;
    --cor-background:#F0F1EB;
    --cor-texto: #333;
    --cor-destaque: #5c302b;
    --cor-titulo: #ffffff;

    --fonte-titulos: 'DM Serif Display', sans-serif;
    --fonte-texto: 'Nunito', sans-serif;
    --fonte-frase: 'Dancing Script', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*Disposição de elementos*/
}

body {
    background: linear-gradient(#d3cfc5fa 180deg);
    background-repeat: no-repeat;
    font-family: var(--fonte-titulos);
    line-height: 1.6;
}

/*Cabeçalho*/
.header {
    background-color: var(--cor-headline);
    padding: 15px 20px; /*espaçamento interno do cabeçalho*/
    color: var(--cor-titulo);
    position: fixed; /*Fixa o cabeçalho no topo da página*/
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Garante que o cabeçalho fique acima de outros elementos */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    color: var(--cor-titulo);
    font-size: 22px;
    font-weight: 400;
    padding: 10px 20px;
}

.header h1 span {
    color: var(--cor-main);
    font-style: var(--fonte-texto);
    font-weight: 600;
}

.header h2 {
    color: var(--cor-titulo);
    font-size: 18px;
    font-weight: 400;
    font-family: var(--fonte-titulos);
    padding: 0px 0px 10px 20px;
}

/*Menu padrão*/
.nav {
    display: flex;
}

.menu {
    display: flex; /*Disposição de elementos*/
    justify-content: center;
    gap: 10px;
    margin: 5px;
    list-style: none; /*Remove os marcadores da lista*/
}

.menu a {
    text-decoration: none;
    color: var(--cor-titulo);
    font-family: var(--fonte-texto);
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.menu a:hover {
    color: var(--cor-main);
    text-decoration: none;
}

.menu a:active {
    color: var(--cor-destaque);
}

.menu li {
    padding: 8px 16px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

/*Botão hamburger*/
.menu-toggle {
    display: none; /* Oculta o botão por padrão */
    background: none;
    border: none;
    font-size: 28px;
    color: var(--cor-titulo);
    cursor: pointer;
}

/*WhatsApp fixo*/
.whatsapp-fixo { 
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 3s infinite;
    z-index: 1000; 
    cursor: pointer;
}

.whatsapp-fixo img {
    margin-top: 5px;
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.whatsapp-fixo:hover {
    transform: scale(1.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.geral {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    width: 100%;
    min-height: 100vh;
    padding: 300px 10px 200px 50px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.geral::before { /*Pseudo-elemento*/
    content: ""; /* necessário para o pseudo-elemento */
    position: absolute; /*Posicionamento absoluto*/
    inset: 0; /* Preenche toda a área do elemento pai */
    background-image: url(imagem/sobre-mim-2.jpeg); /*Imagem de fundo*/
    background-repeat: no-repeat; /* Não repetir a imagem de fundo */
    background-size: cover; /*Cobertura total da área do elemento*/
    background-attachment: fixed; /*Mantem a imagem fixa durante o rolamento da tela*/
    background-position: center; /*Posição da imagem*/
    opacity: 0.5; /* ajuste a opacidade como quiser */
    z-index: -1;
}

.cta {
    display: inline-block; 
    align-items: center;
    gap: 16px;
    background: linear-gradient(130deg, #09aa9df5, #038173);
    color: var(--cor-titulo);
    font-family: var(--fonte-texto);
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 12px;
    padding: 10px 36px;
    box-shadow: 0 6px 24px rgba(4, 140, 128, 0.15);
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.25s cubic-bezier(.4,1.5,.5,1);
    outline: none;
    border: none;
    animation: slideInUp 1s ease-out 0.6s both;
}

.cta:hover {
    filter: brightness(1.08) drop-shadow(0 0 8px #09aa9d55);
    transform: scale(1.04) translateY(-3px);
    box-shadow: 0 8px 32px rgba(4, 140, 128, 0.22);
    text-decoration: none;
    outline: 2px solid #048C80;
    outline-offset: 2px;
}

.titulo {
    width: 40%;
    color: var(--cor-texto);
}

.titulo  h3 {
    font-family: var(--fonte-frase);
    font-size: 42px;
    color: var(--cor-secundaria);
}

.titulo  p {
    font-family: var(--fonte-texto);
    font-size: 32px;
    line-height: normal;
    font-weight: 300;
    color: var(--cor-destaque);
    padding-bottom: 40px;

}

.titulo button a {
    color: var(--cor-titulo);
    text-decoration: none;
    font-style: var(--fonte-texto);
}

.sobre-mim {
   display: grid;
   gap: 40px;
   align-content: center;
   justify-content: center;
}

.sobre {
    max-width: 1200px;
    padding: 40px 20px;
}

.conteudo h2 {
    color: var(--cor-headline);
    font-family: var(--fonte-titulos);
    font-weight: 600;
    font-size: 30px;
    padding: 20px 0px 10px 20px;
    margin-bottom: 10px;
}

.conteudo h3 {
    color: var(--cor-secundaria);
    font-family: var(--fonte-frase);
    font-size: 24px;
    padding: 10px 0px 10px 20px;
}

.conteudo p {
    font-family: var(--fonte-texto);
    font-size: 20px;
    padding: 10px 0px 10px 20px;
    text-align: justify;
    line-height: 1.8;
}

/* Container dos Cards */
.cards {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 24px;
    margin-top: 20px;
    padding: 40px;
}

.card-fr, .card-xp {
    background-color: var(--cor-background);
    border: 1px solid var(--cor-borda);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.cr-titulo {
    font-family: var(--fonte-titulos);
    font-size: 22px;
    font-weight: 600;
    color: var(--cor-texto);
}

.cr-subtitulo {
    font-family: var(--fonte-frase);
    font-size: 22px;
    font-weight: 500;
    color: var(--cor-destaque);
}


/* Seção Abordagem */
.arb {
    background: linear-gradient(135deg, #09aa9df5, #038173);
    color: var(--cor-titulo);
    padding: 30px 30px;
    text-align: center;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.8;
}

.arb h4 {
    font-family: var(--fonte-frase);
    font-size: 30px;
    font-weight: 500;
}

.arb p {
    font-family: var(--fonte-texto);
    font-weight: 400;
    font-size: 16px;
    width: 100%;
}

/* Seção Serviços */
.servicos-header {
    text-align: center;
    margin: 24px;
}

.servicos-header img {
    display: block;
    margin: 0 auto 12px auto;
    width: 48px;
    height: 48px;
}

.servicos h2, .secao h2 {
    font-family: var(--fonte-titulos);
    font-size: 30px;
    color: var(--cor-headline);
    padding-bottom: 20px;
}

.servicos h3 {
    font-family: var(--fonte-frase);
    font-size: 24px;
    font-weight: 600;
    color: var(--cor-secundaria);
    padding: 0px 0px 20px 0px;
}

.servicos p {
    font-family: var(--fonte-texto);
    font-size: 20px;
    color: var(--cor-texto);
    padding: 10px 0px 10px 20px;
}

.lista-servicos {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.card-serviços {
    background: var(--cor-background);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(4, 140, 128, 0.08);
    padding: 32px 24px;
    margin: 0;
    text-align: center;
    min-width: 260px;
    max-width: 340px;
    flex: 1 1 260px;
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
}

.card-serviços:hover, .card-serviços:focus-within {
    box-shadow: 0 6px 24px rgba(4, 140, 128, 0.18);
    transform: translateY(-4px) scale(1.03);
    outline: 2px solid var(--cor-main);
    outline-offset: 2px;
}

.card-serviços h4 {
    font-family: var(--fonte-titulos);
    font-size: 22px;
    font-weight: 600;
    color: var(--cor-headline);
    margin-bottom: 10px;
}

.card-serviços p {
    font-family: var(--fonte-texto);
    font-size: 18px;
    color: var(--cor-texto);
    padding: 0 0 0 0;
}

.icone-servicos {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px auto;
    opacity: 0.7;
}

/* Seção Benefícios */
.beneficios {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px 24px;
    padding: 36px 12px;
    align-items: stretch;
    justify-items: center;
    background: white;
    list-style: none;
}


.beneficio-item {
    background: var(--cor-background);
    border-radius: 12px;
    padding: 18px 14px;
    margin: 0;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 120px;
    font-family: var(--fonte-titulos);
    font-size: 17px;
    font-weight: 300;
    color: var(--cor-texto);
    text-align: center;
    transition: 0.3s, box-shadow 0.3s, transform 0.2s;
    cursor: pointer;
}

.beneficio-item span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    color: var(--cor-texto);
    margin-top: 2px;
}

.beneficio-item:focus, .beneficio-item:hover {
    background: var(--cor-main);
    box-shadow: 0 4px 16px rgba(4, 140, 128, 0.12);
    outline: 2px solid var(--cor-secundaria);
    outline-offset: 2px;
    transform: translateY(-2px) scale(1.03);
}

.bn-titulo {
    font-family: var(--fonte-frase);
    font-size: 30px;
    font-weight: 500;
    color: var(--cor-headline);
    text-align: center;
    margin: 24px;
}

/* --- Dúvidas --- */
#duvidas {
    width: 100%;
    height: 50%;
    padding: 20px;
}

.secao {
    background: var(--cor-background);
    border-radius: 12px;
    padding: 12px 16px;
}

summary {
    font-family: var(--fonte-titulos);
    font-size: 18px;
    font-weight: 500;
    color: var(--cor-texto);
    padding: 10px;
}

summary:hover {
    color: var(--cor-destaque);
    cursor: pointer;
}

details {
    background: var(--cor-background);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 10px;
    cursor: pointer;
}

details p {
    font-family: var(--fonte-texto);
    font-size: 18px;
    font-weight: 500;
    color: var(--cor-texto);
    padding: 10px;
    text-align: justify;
    line-height: 1.8;
}

.bt-cta {
    background: var(--cor-headline);
    border: none;
    cursor: pointer;
    padding: 22px;
    text-align: center;
    text-decoration: none;
}


.cta1 {
    display: inline-block;
    background: linear-gradient(180deg, #e6dad8, #25bbaed2);
    color: var(--cor-headline);
    font-family: var(--fonte-titulos);
    font-size: 20px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 16px rgba(4, 140, 128, 0.10);
    transition: 0.3s, color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta1:hover, .cta1:focus {
    background: linear-gradient(180deg, #048C80, #f1c3bf);
    color: var(--cor-titulo);
    box-shadow: 0 8px 32px rgba(4, 140, 128, 0.18);
    outline: 2px solid var(--cor-main);
    outline-offset: 2px;
}

/* --- Rodapé --- */
footer {
    background: var(--cor-headline);
    line-height: 1.6;
    color: var(--cor-titulo);
    text-align: center;
    padding: 30px 20px;
    
}

footer p > a {
    color: var(--cor-titulo);
    font-family: var(--fonte-texto);
    text-decoration: none;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: color 0.3s, opacity 0.3s;
}


footer .redes {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer .redes a {
    color: var(--cor-background);
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .redes a:hover {
    color: var(--cor-main);
}

/* Animação de entrada */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/*Media queries para responsividade*/
/* Responsividade para tablets */
@media (max-width: 1024px) {
    .geral {
        padding: 100px 2px 60px 2px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .titulo {
        width: 100%;
        text-align: center;
    }
    .titulo h3 {
        font-size: 26px;
    }
    .titulo p {
        font-size: 20px;
        padding-bottom: 20px;
    }
    .cards {
        padding: 10px 0;
    }
    .beneficios {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 4px;
    }
    .beneficio-item {
        width: 90%;
        min-width: 0;
        font-size: 16px;
        padding: 8px 2px;
    }
    .card-serviços {
        min-width: 220px;
        max-width: 340px;
        flex: 1 1 220px;
        margin: 0 8px 16px 8px;
        padding: 18px 12px;
        box-sizing: border-box;
    }
    .servicos-header h2 {
        font-size: 26px;
    }
    .servicos-header h3 {
        font-size: 24px;
    }
    .whatsapp-fixo {
        width: 50px;
        height: 50px;
    }
    .whatsapp-fixo img {
        margin-top: 5px;
        width: 25px;
        height: 25px;
    }
    footer {
        padding: 18px 8px;
        font-size: 14px;
    }
    .bn-titulo {
        font-size: 26px;
        margin: 12px;
    }
    .beneficio-item span {
        font-size: 20px;
    }
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 10px;
    }
    .header h1, .header h2 {
        padding: 6px 10px;
        font-size: 20px;
    }
    .nav {
        width: 100%;
        justify-content: flex-end;
    }
    .menu {
        flex-direction: column;
        gap: 0;
        background: var(--cor-headline);
        position: absolute;
        top: 100%;
        right: 0;
        width: 180px;
        display: none;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    }
    .menu.show {
        display: flex;
    }
    .menu li {
        padding: 15px;
        text-align: left;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 18px;
        right: 18px;
    }
    .geral {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .geral::before {
        background-position: center center !important;
    }
    .titulo {
        width: 100%;
        text-align: center;
    }
    .titulo h3 {
        font-size: 26px;
    }
    .titulo p {
        font-size: 20px;
        padding-bottom: 20px;
    }
    .card-serviços {
        min-width: 90vw;
        max-width: 98vw;
        width: 100%;
        margin: 0 auto 16px auto;
        padding: 18px 8px;
        box-sizing: border-box;
        text-align: center;
    }
    .beneficios {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 4px;
    }
    .beneficio-item {
        width: 90%;
        min-width: 0;
    }
    .arb h4 {
        font-size: 26px;
    }
    .arb p {
        font-size: 18px;
    }
    .servicos-header h2 {
        font-size: 26px;
    }
    .servicos-header h3 {
        font-size: 24px;
    }
    .whatsapp-fixo {
        width: 48px;
        height: 48px;
    }
    .whatsapp-fixo img {
        width: 22px;
        height: 22px;
    }
    footer {
        padding: 18px 8px;
        font-size: 14px;
    }
    .bn-titulo {
        font-size: 26px;
        margin: 12px;
    }
    .beneficio-item span {
        font-size: 20px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .header h1, .header h2 {
        font-size: 18px;
        padding: 3px 4px;
    }
    .titulo h3, .servicos-header h3, .conteudo h3 {
        font-size: 22px;
    }
    .titulo p {
        font-size: 16px;
        padding: 12px;

    }
    .cta, .cta1 {
        font-size: 15px;
        padding: 8px 10px;
        min-width: 120px;
    }
    .conteudo h2, .servicos h2, .secao h2 {
        font-size: 24px;
    }
    .conteudo p {
        font-size: 15px;
        padding: 6px 0 6px 6px;
    }
    .card-serviços {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
        padding: 12px 4px;
    }
    .card-serviços h4 {
        font-size: 18px;
    }
    .card-serviços p {
        font-size: 14px;
    }
    .beneficio-item {
        font-size: 16px;
        padding: 8px 2px;
        min-height: 80px;
        max-width: 95%;
    }
    .beneficio-item span {
        font-size: 16px;
    }
    .arb h4, .bn-titulo h4 {
        font-size: 22px;
    }
    .geral {
        padding: 80px 2px 40px 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .geral::before {
        background-position: center center !important;
    }
    .whatsapp-fixo {
        width: 38px;
        height: 38px;
        bottom: 10px;
        right: 10px;
    }
    .whatsapp-fixo img {
        width: 16px;
        height: 16px;
    }
    footer {
        padding: 10px 2px;
        font-size: 12px;
    }
}