/* ================================
   FONTES LOCAIS
   ================================ */
@font-face {
    font-family: 'Mada';
    src: url('../fonts/Mada/Mada-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Mada';
    src: url('../fonts/Mada/Mada-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* ================================
   APLICAÇÃO DAS FONTES
   ================================ */
body {
    font-family: 'Poppins', sans-serif; /* Secundária (texto) */
    background: #F0ECE8;
    color: #666747;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Mada', sans-serif; /* Principal (títulos) */
}

/* ================================
   RESET E CONFIGURAÇÕES GERAIS
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 50px;
}

/* ================================
   SEÇÃO HERO (PRINCIPAL)
   ================================ */
.hero {
    background: #E8D2B8;
}

/* Coluna esquerda - Conteúdo textual */
.hero-left {
    flex: 1;
}

.hero-left .logo {
    width: 180px;
    margin-bottom: 30px;
}

.hero-left h1 {
    font-family: 'Mada', sans-serif;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #666747;
}

.hero-left p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #666747;
}

.hero-left .btn {
    display: inline-block;
    background: #CE7654;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.hero-left .btn:hover {
    background: #666747;
    color: #F0ECE8;
}

/* Coluna direita - Imagem */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: right;
}

.image-wrapper {
    position: relative;
    width: 650px;
    height: 650px;
    border-radius: 20px;
    background: #E8D2B8;
    overflow: hidden;
    display: flex;
    align-items: right;
    justify-content: right;
    padding: 20px;
    box-sizing: border-box;
}

.image-wrapper img {
    max-width: 80%;
    border-radius: 15px;
}

/* Responsividade Hero */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-left .logo {
        margin: 0 auto 20px;
    }

    .image-wrapper {
        width: 100%;
        height: auto;
        border-radius: 12px;
        align-items: center;
        justify-content:center;
    }
}

/* ================================
   SEÇÃO "QUANDO BUSCAR" (SERVIÇOS/INDICAÇÕES)
   ================================ */
.quando-buscar {
    background: #CE7654;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
}

.quando-buscar .container {
    max-width: 900px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.quando-buscar h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.quando-buscar p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.quando-buscar .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    margin: 0 auto 40px;
    max-width: 800px;
    width: 100%;
}

.quando-buscar .item {
    background: rgba(240, 236, 232, 0.15);
    padding: 15px 18px;
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 0;
    white-space: normal;
    color: #fff;
}

.quando-buscar .btn {
    background: #F0ECE8;
    color: #CE7654;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.quando-buscar .btn:hover {
    background: #fff;
    color: #666747;
}

@media (max-width: 768px) {
    .quando-buscar .grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   SEÇÃO "TERAPIA CUIDA" (BENEFÍCIOS)
   ================================ */
.terapia-cuida {
    background: #E8D2B8;
    padding: 80px 20px;
}

.terapia-cuida .container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.image-side img.img-terapia {
    max-width: 350px;
    height: auto;
}

.content-side {
    flex: 1;
}

.content-side h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #666747;
    font-weight: 600;
}

.content-side ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-side li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #666747;
}

@media (max-width: 900px) {
    .terapia-cuida .container {
        flex-direction: column;
        text-align: center;
    }

    .content-side ul {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 900px) {
    .img-terapia {
        max-width: 100px;
    }
}

/* ================================
   SEÇÃO "SOBRE MIM" (APRESENTAÇÃO DA TERAPEUTA)
   ================================ */
.sobre-mim {
    padding: 80px 20px;
    background: 
        linear-gradient(rgba(232, 210, 184), rgba(232, 210, 184)),
        url('images/sem-fundo/V2.png') no-repeat center center;
    background-size: cover;
    color: #333;
}

.sobre-mim .container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sobre-mim-img {
    flex: 0 0 auto;
}

.sobre-mim-img .img-wrapper {
    display: flex;
    justify-content: center;
}

.sobre-mim-img .img-wrapper img {
    border-radius: 12px;
    max-width: 280px;
    width: 100%;
    height: auto;
}

.sobre-mim-texto {
    flex: 1;
}

.sobre-mim-texto h2 {
    font-family: 'Mada', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #4a4a2e;
}

.sobre-mim-texto p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666747;
}

/* ================================
   RESPONSIVIDADE - MOBILE
   ================================ */
@media (max-width: 768px) {
    .sobre-mim {
        padding: 60px 15px;
    }

    .sobre-mim .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .sobre-mim-img {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .sobre-mim-img .img-wrapper {
        width: 100%;
        max-width: 280px;
    }

    .sobre-mim-img .img-wrapper img {
        max-width: 100%;
        margin: 0 auto;
    }

    .sobre-mim-texto {
        width: 100%;
        text-align: center;
    }

    .sobre-mim-texto h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .sobre-mim-texto p {
        text-align: left; /* Mantém o texto justificado para melhor leitura */
        margin-bottom: 15px;
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .sobre-mim {
        padding: 50px 10px;
    }

    .sobre-mim .container {
        gap: 25px;
    }

    .sobre-mim-img .img-wrapper {
        max-width: 250px;
    }

    .sobre-mim-texto h2 {
        font-size: 1.6rem;
    }
}


/* ================================
   SEÇÃO "COMO AGENDAR" (PROCESSO DE AGENDAMENTO)
   ================================ */
.como-agendar {
    background: #F0ECE8;
    padding: 80px 20px;
}

.como-agendar .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.steps {
    flex: 1;
}

.steps h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #CE7654;
    font-weight: 600;
}

.steps h3 {
    font-size: 15px;
    margin-bottom: 10px;
    padding: 13px;
    color: #666747;
    font-weight: 600;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.step .number {
    width: 40px;
    height: 40px;
    background: #CE7654;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step .text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #CE7654;
}

.step .text p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666747;
}

.steps .btn {
    display: inline-block;
    margin-top: 20px;
    background: #CE7654;
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.steps .btn:hover {
    background: #666747;
}

.image-side {
    flex: 1;
    text-align: center;
}

.image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

@media (max-width: 900px) {
    .como-agendar .container {
        flex-direction: column;
        text-align: center;
    }

    .step {
        justify-content: center;
        text-align: left;
    }

    .step .number {
        margin-right: 10px;
    }
}

/* ================================
   SEÇÃO DEPOIMENTOS - MOBILE FIRST
   ================================ */
.depoimentos {
    background: #CE7654;
    padding: 40px 15px;
    text-align: center;
    color: #fff;
}

.depoimentos-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.depoimentos h2 {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.depoimentos .subtitulo {
    font-size: 16px;
    margin-bottom: 20px;
    color: #F0ECE8;
    opacity: 0.9;
}

.depoimentos-wrapper {
    position: relative;
    margin: 0 auto 40px;
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.depoimentos-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    width: max-content;
}

.depoimentos .card {
    width: 300px; /* Largura fixa para mobile */
    min-height: 220px;
    background: rgba(240, 236, 232, 0.2);
    padding: 25px 20px;
    border-radius: 12px;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.depoimentos .card p {
    flex: 1;
    margin-bottom: 15px;
}

.depoimentos .card span {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #F0ECE8;
    margin-top: auto;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #F0ECE8;
    border: none;
    font-size: 20px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #CE7654;
}

.arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.arrow.left {
    left: 5px;
}

.arrow.right {
    right: 5px;
}

.depoimentos .cta {

    text-align: center;
}

.depoimentos .btn {
    display: inline-block;
    background: #F0ECE8;
    color: #CE7654;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    margin-bottom:30px ;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.depoimentos .btn:hover {
    background: #fff;
    color: #666747;
    transform: translateY(-2px);
}

/* ================================
   DESKTOP
   ================================ */
@media (min-width: 768px) {
    .depoimentos {
        padding: 80px 20px;
    }

    .depoimentos h2 {
        font-size: 36px;
    }

    .depoimentos .subtitulo {
        font-size: 18px;
        margin-bottom: 50px;
    }

    .depoimentos-wrapper {
        padding: 0 60px;
        margin-bottom: 50px;
    }

    .depoimentos .card {
        width: 350px;
        min-height: auto;
        padding: 35px 25px;
        font-size: 17px;
        line-height: 1.8;
    }

    .arrow {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .arrow.left {
        left: 0;
    }

    .arrow.right {
        right: 0;
    }

    .depoimentos .cta {
        margin-top: 50px;
    }

    .depoimentos .cta h3 {
        font-size: 24px;
    }

    .depoimentos .btn {
        padding: 14px 30px;
    }
}

/* ================================
   MOBILE PEQUENO
   ================================ */
@media (max-width: 480px) {
    .depoimentos-wrapper {
        padding: 0 40px;
    }

    .depoimentos .card {
        width: 280px;
        min-height: 200px;
        padding: 20px 15px;
        font-size: 15px;
    }

    .arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .arrow.left {
        left: 2px;
    }

    .arrow.right {
        right: 2px;
    }
}

@media (max-width: 360px) {
    .depoimentos .card {
        width: 260px;
        min-height: 180px;
        padding: 18px 15px;
    }

    .depoimentos-wrapper {
        padding: 0 35px;
    }
}

/* ================================
   SEÇÃO FAQ (PERGUNTAS FREQUENTES)
   ================================ */
.faq {
    padding: 10px 20px;
    text-align: center;
    background: #E8D2B8;
}

.faq .container {
    max-width: 900px;
    margin: 0 auto;
    display: block;
    text-align: center;
}

.faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #666747;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: left;
}

.faq-list details {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding: 12px 0;
    cursor: pointer;
    background: transparent;
    border-radius: 0;
}

.faq-list summary {
    font-weight: 500;
    color: #444;
    outline: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::after {
    content: "›";
    font-size: 18px;
    color: #CE7654;
    transition: transform 0.3s;
}

.faq-list[open] summary::after {
    transform: rotate(90deg);
}

.faq-list p {
    margin-top: 8px;
    color: #666747;
    font-size: 15px;
    line-height: 1.6;
}

.faq .btn {
    display: inline-block;
    background: #CE7654;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    margin-top: 30px;
    font-size: 16px;
}

.faq .btn i {
    margin-left: 8px;
    font-size: 18px;
}

.faq .btn:hover {
    background: #666747;
}

/* ================================
   SEÇÃO REDES SOCIAIS
   ================================ */
.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    text-align: left;
}

.social img {
    max-width: 180px;
}

.social h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.social p {
    font-size: 15px;
    color: #666747;
}

/* ================================
   FOOTER (RODAPÉ)
   ================================ */
.footer {
    background: #CE7654;
    color: #fff;
    padding: 20px 20px;
}

/* Grid das colunas */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Apenas os p das colunas */
.footer-col p {
    margin: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 6px;
}

/* Footer-bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    font-size: 13px;
    opacity: 0.9;
}

/* Linha superior: dois textos lado a lado */
.footer-bottom .footer-top {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Os p dentro do footer-bottom NÃO usam flex nem bordas */
.footer-bottom .footer-top p {
    display: inline-block;
    margin: 0;
    border: none;
    gap: 0;
}

/* Desenvolvido por centralizado */
.footer-bottom .desenvolvido {
    text-align: center;
    margin-top: 8px;
}

/* Links dentro do footer-bottom */
.footer-bottom a {
    color: #fff;
    text-decoration: underline;
}

/* Responsivo */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col p {
        justify-content: center;
    }

    .footer h4 {
        justify-content: center;
    }

    /* Footer-bottom responsivo */
    .footer-bottom .footer-top {
        flex-direction: column;
        align-items: center;
    }
}