/* =========================================================
   ANGÉLICA FERREIRA | PSICÓLOGA CLÍNICA
   CSS COMPLETO
========================================================= */


/* =========================================================
   CONFIGURAÇÕES GERAIS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #403936;
    background: #fffdfb;
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

.narrow {
    max-width: 850px;
}

.center {
    text-align: center;
}


/* =========================================================
   TIPOGRAFIA
========================================================= */

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.15;
    color: #4b403c;
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
    margin: 18px 0;
}

h2 {
    font-size: clamp(36px, 5vw, 55px);
    margin: 15px 0 25px;
}

h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

p {
    font-size: 16px;
    color: #665b56;
}

.eyebrow {
    font-size: 12px;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: #a98769;
    text-transform: uppercase;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 253, 251, 0.94);

    border-bottom: 1px solid #eee6df;

    backdrop-filter: blur(12px);

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.header:hover {
    box-shadow: 0 5px 25px rgba(75, 64, 60, 0.06);
}

.nav {
    min-height: 85px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #4b403c;

    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo span {
    display: block;

    font-family: 'Montserrat', sans-serif;

    font-size: 9px;
    letter-spacing: 2px;

    text-transform: uppercase;

    color: #a98769;
}

.menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu a {
    font-size: 13px;
    color: #554a46;

    position: relative;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.menu a:not(.menu-button)::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #a98769;

    transition: width 0.3s ease;
}

.menu a:not(.menu-button):hover::after {
    width: 100%;
}

.menu a:hover {
    color: #a98769;
}

.menu-button {
    border: 1px solid #a98769;

    padding: 11px 20px;

    border-radius: 30px;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease;
}

.menu-button:hover {
    background: #a98769;
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(75, 64, 60, 0.15);
}

.menu-button:active {
    transform: translateY(1px) scale(0.97);
}


/* =========================================================
   BOTÕES
========================================================= */

.button {
    display: inline-block;

    padding: 15px 27px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    position: relative;
    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

/* brilho suave */

.button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,0.25),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.55s ease;
}

.button:hover::before {
    left: 140%;
}

.button:hover {
    transform: translateY(-4px);

    box-shadow:
        0 10px 24px rgba(75, 64, 60, 0.16);
}

.button:active {
    transform: translateY(1px) scale(0.96);

    box-shadow:
        0 3px 8px rgba(75, 64, 60, 0.12);
}

.button.primary {
    background: #a98769;
    color: white;

    border: 1px solid #a98769;
}

.button.primary:hover {
    background: #95765b;
}

.button.secondary {
    border: 1px solid #a98769;

    color: #80634d;

    background: transparent;
}

.button.secondary:hover {
    background: #a98769;
    color: white;
}

.button.white {
    background: white;
    color: #80634d;

    border: 1px solid rgba(255,255,255,0.8);
}

.button.white:hover {
    background: #f8f3ee;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #fbf5ef,
            #fffdfb
        );

    position: relative;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 70px;
}

.hero-content p {
    max-width: 650px;

    margin-bottom: 30px;

    font-size: 17px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.hero-image {
    display: flex;

    justify-content: center;
    align-items: center;
}


/* =========================================================
   FOTO
========================================================= */

.photo-placeholder {
    width: 100%;
    max-width: 420px;

    height: 520px;

    border-radius:
        220px
        220px
        20px
        20px;

    overflow: hidden;

    position: relative;

    background: #e9ddd1;

    border: 1px solid #dccabb;

    display: block;

    box-shadow:
        0 18px 45px rgba(75, 64, 60, 0.10);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease;
}

.photo-placeholder:hover {
    transform: translateY(-7px);

    box-shadow:
        0 25px 55px rgba(75, 64, 60, 0.15);
}

.photo-placeholder img {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: cover;

    object-position: center center;

    display: block;

    border-radius:
        220px
        220px
        20px
        20px;

    transition:
        transform 0.7s ease;
}

.photo-placeholder:hover img {
    transform: scale(1.025);
}

.photo-placeholder span,
.photo-placeholder small {
    display: none;
}


/* =========================================================
   SETA ANIMADA
========================================================= */

.scroll-indicator {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    margin-top: 35px;

    color: #a98769;

    border: 1px solid #d5bca7;

    border-radius: 50%;

    position: relative;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.scroll-indicator span {
    display: block;

    font-size: 25px;

    line-height: 1;

    animation:
        setaMovimento 1.7s ease-in-out infinite;
}

.scroll-indicator:hover {
    background: #a98769;

    color: #ffffff;

    transform: scale(1.1);

    box-shadow:
        0 10px 25px rgba(75, 64, 60, 0.15);
}

.scroll-indicator:active {
    transform: scale(0.92);
}

@keyframes setaMovimento {

    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(7px);
    }
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {
    padding: 100px 0;
}

.section.light {
    background: #f8f3ee;
}

.section.beige {
    background: #eee3d8;
}

.section-heading {
    max-width: 750px;

    margin:
        0
        auto
        55px;

    text-align: center;
}

.section-heading p {
    max-width: 650px;

    margin: 0 auto;
}


/* =========================================================
   LISTA
========================================================= */

.check-list {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;

    margin: 40px 0;
}

.check-list div {
    background: white;

    padding: 18px 20px;

    border-radius: 10px;

    border: 1px solid #eee2d8;

    color: #5d514c;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.check-list div:hover {
    transform:
        translateY(-4px)
        scale(1.01);

    box-shadow:
        0 10px 25px rgba(75, 64, 60, 0.08);
}

.center-text {
    text-align: center;
}


/* =========================================================
   CARDS
========================================================= */

.cards {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}

.card {
    padding: 35px;

    background: white;

    border: 1px solid #eee4dc;

    border-radius: 15px;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: #a98769;

    transition: width 0.4s ease;
}

.card:hover::before {
    width: 100%;
}

.card:hover {
    transform: translateY(-8px);

    border-color: #dfd0c4;

    box-shadow:
        0 18px 38px
        rgba(75, 64, 60, 0.11);
}

.icon {
    font-size: 12px;

    color: #a98769;

    letter-spacing: 2px;

    margin-bottom: 20px;

    transition:
        transform 0.3s ease;
}

.card:hover .icon {
    transform: translateX(4px);
}


/* =========================================================
   DUAS COLUNAS
========================================================= */

.two-columns {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 80px;

    align-items: center;
}

.two-columns p {
    margin-bottom: 20px;
}

.credentials {
    margin-top: 30px;

    padding-top: 25px;

    border-top:
        1px solid
        #dbcabd;

    display: flex;

    flex-direction: column;

    gap: 7px;
}

.credentials strong {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 24px;

    color: #4b403c;
}

.credentials span {
    font-size: 13px;

    color: #766962;
}

.about-image .photo-placeholder {
    max-width: 400px;

    margin: auto;
}


/* =========================================================
   COMO FUNCIONA
========================================================= */

.steps {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 30px;
}

.step {
    padding: 35px;

    background: white;

    border: 1px solid #eee4dc;

    border-radius: 15px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.step:hover {
    transform: translateY(-7px);

    box-shadow:
        0 16px 32px
        rgba(75, 64, 60, 0.10);
}

.step > span {
    font-size: 13px;

    letter-spacing: 2px;

    color: #a98769;

    transition:
        letter-spacing 0.3s ease;
}

.step:hover > span {
    letter-spacing: 4px;
}


/* =========================================================
   ONLINE
========================================================= */

.online {
    background: #4b403c;

    color: white;

    position: relative;
    overflow: hidden;
}

.online::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.08);

    top: -150px;
    right: -100px;
}

.online::after {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,0.06);

    bottom: -120px;
    left: -70px;
}

.online h2,
.online p {
    color: white;
}

.online p {
    max-width: 750px;

    margin:
        0
        auto
        30px;
}


/* =========================================================
   FAQ
========================================================= */

details {
    border-bottom:
        1px solid
        #e5dcd5;

    padding: 22px 0;
}

summary {
    cursor: pointer;

    font-weight: 600;

    color: #4b403c;

    list-style: none;

    transition:
        color 0.25s ease,
        padding-left 0.25s ease;
}

summary:hover {
    color: #a98769;

    padding-left: 5px;
}

summary::-webkit-details-marker {
    display: none;
}

details p {
    padding-top: 15px;

    animation:
        faqAbrir
        0.3s
        ease-out;
}

@keyframes faqAbrir {

    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
   CTA
========================================================= */

.cta {
    padding: 100px 0;

    background: #a98769;

    position: relative;

    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    top: -170px;
    right: -80px;
}

.cta h2,
.cta p,
.cta .eyebrow {
    color: white;
}

.cta p {
    max-width: 650px;

    margin:
        0
        auto
        30px;
}


/* =========================================================
   REDES SOCIAIS
========================================================= */

.social-links {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-wrap: wrap;

    margin-top: 15px;
}

.social-links a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 9px 16px;

    border:
        1px solid
        rgba(255,255,255,0.25);

    border-radius: 30px;

    color: #ffffff;

    font-size: 12px;

    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.12);

    border-color:
        rgba(255,255,255,0.45);

    transform: translateY(-3px);
}

.social-links a:active {
    transform: scale(0.96);
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #352e2b;

    color: white;
}

.footer-content {
    padding: 50px 0;

    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.footer strong {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;
}

.footer p {
    color: #d7ccc5;

    font-size: 13px;
}

.footer-bottom {
    padding: 20px;

    text-align: center;

    border-top:
        1px solid
        rgba(255,255,255,0.1);
}


/* =========================================================
   CURSOR PERSONALIZADO
========================================================= */

/*
   Cursor discreto e elegante.
   Mantemos a seta do sistema, mas adicionamos
   um pequeno efeito de destaque nos elementos clicáveis.
*/

a,
button,
summary,
.button,
.menu-button {
    cursor: pointer;
}

a:hover,
button:hover,
summary:hover,
.button:hover,
.menu-button:hover {
    cursor: pointer;
}


/* =========================================================
   CAMPOS
========================================================= */

input,
textarea,
select {
    width: 100%;

    padding: 14px 16px;

    border:
        1px solid
        #ded1c8;

    border-radius: 10px;

    background: white;

    font-family:
        'Montserrat',
        sans-serif;

    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #a98769;

    box-shadow:
        0 0 0 3px
        rgba(169,135,105,0.10);
}

textarea {
    min-height: 130px;

    resize: vertical;
}


/* =========================================================
   ANIMAÇÕES DE ENTRADA
========================================================= */

@media (prefers-reduced-motion: no-preference) {

    .hero-content {
        animation:
            aparecerEsquerda
            0.8s
            ease-out
            both;
    }

    .hero-image {
        animation:
            aparecerDireita
            0.8s
            0.15s
            ease-out
            both;
    }
}

@keyframes aparecerEsquerda {

    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes aparecerDireita {

    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* =========================================================
   RESPONSIVO - TABLET
========================================================= */

@media (max-width: 850px) {

    .menu {
        display: none;
    }

    .hero-grid,
    .two-columns {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-image {
        order: -1;
    }

    .cards {
        grid-template-columns:
            1fr 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .two-columns {
        gap: 40px;
    }

    .photo-placeholder {
        max-width: 380px;
    }
}


/* =========================================================
   RESPONSIVO - CELULAR
========================================================= */

@media (max-width: 600px) {

    .container {
        width: 88%;
    }

    .section {
        padding: 70px 0;
    }

    h1 {
        font-size: 43px;
    }

    h2 {
        font-size: 38px;
    }

    .check-list,
    .cards {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }

    .button {
        text-align: center;

        width: 100%;
    }

    .photo-placeholder {
        width: 100%;

        max-width: 340px;

        height: 430px;

        border-radius:
            180px
            180px
            18px
            18px;
    }

    .photo-placeholder img {
        border-radius:
            180px
            180px
            18px
            18px;
    }

    .scroll-indicator {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-content {
        flex-direction: column;
    }

    .social-links {
        flex-direction: column;

        align-items: stretch;
    }

    .social-links a {
        width: 100%;

        text-align: center;
    }
}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline:
        2px solid
        #a98769;

    outline-offset: 4px;
}


/* =========================================================
   REDUÇÃO DE MOVIMENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}