/* ------------------- */
/* RESET & VARIAVEIS   */
/* ------------------- */
:root {
    --primary-color: #0a0493;
    --dark-color: #111827;
    --text-color: #374151;
    --light-text-color: #6b7280;
    --bg-color: #ffffff;
    --muted-bg-color: #f9fafb;
    --border-color: #e5e7eb;
    --whatsapp-color: #25d366;

    --font-family: 'Work Sans', system-ui, -apple-system, sans-serif;
    --container-width: 1200px;
    --radius: 8px;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --transition: all 0.3s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    color: var(--dark-color);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
    font-size: 1.25rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover,
button:hover {
    opacity: 0.85;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* ------------------- */
/* CLASSES UTILITÁRIAS */
/* ------------------- */
.container {
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

/* Ajuste específico para a seção de demandas */
#demandas.section {
    padding-bottom: 3rem;
}

.section--muted {
    background-color: var(--muted-bg-color);
}

.section__title {
    margin-bottom: 2rem;
}

.section__title--center {
    text-align: center;
    margin-bottom: 3rem;
}

.cta {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 100px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.cta--primary {
    background-color: #31D079;
    color: var(--bg-color);
}

.cta--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 208, 121, 0.15);
    opacity: 0.95;
}

.cta--secondary {
    background-color: var(--bg-color);
    color: #31D079;
    border: 2px solid #31D079;
}

.cta--secondary:hover {
    background-color: #31D079;
    color: var(--bg-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 208, 121, 0.15);
    opacity: 0.95;
}

.cta--large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

/* Removendo .cta--pill já que todos os botões agora são arredondados */

:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* ------------------- */
/* HEADER & NAVEGAÇÃO  */
/* ------------------- */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.header__logo img {
    height: 35px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav__link:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    position: relative;
    transition: transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--dark-color);
    left: 0;
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-open .hamburger {
    background-color: transparent;
}

.nav-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

.cta--header {
    padding: 0.6rem 1.2rem;
    background-color: #31D079;
    color: var(--bg-color);
    border: none;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
}

.cta--header:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(49, 208, 121, 0.15);
}

/* ------------------- */
/* SEÇÃO: HERO         */
/* ------------------- */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('img/hero2.jpg') no-repeat center center/cover;
    margin-bottom: 0;
}

.hero__container {
    position: relative;
    z-index: 2;
    text-align: left;
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.hero__content {
    max-width: 550px;
    text-align: left;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero__title {
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    text-align: left;
}

.hero__subtitle {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2.2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    opacity: 0.95;
    text-align: left;
}

@media (max-width: 768px) {
    .hero__content {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero__container {
        text-align: left;
        justify-content: flex-start;
    }

    .hero__title,
    .hero__subtitle {
        text-align: left;
    }
}

/* ------------------- */
/* SEÇÃO: SOBRE        */
/* ------------------- */

.cta--miniblog {
    background-color: var(--bg-color);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    margin-top: 2.5rem;
    display: inline-block;
}

.cta--miniblog:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(10, 4, 147, 0.15);
    opacity: 0.95;
}

.sobre-slider {
    position: relative;
    overflow: hidden;
    padding-bottom: 3rem;
    /* Adiciona espaço extra para os controles */
}

.sobre-slider__container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%;
    margin-bottom: 1rem;
    /* Espaço entre o conteúdo e os controles */
}

.sobre-slide {
    width: 50%;
    flex-shrink: 0;
    padding: 0 1rem;
    overflow: visible;
    /* Permite que o conteúdo ultrapasse se necessário */
}

.section__container--split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.section__image-placeholder {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--border-color);
    border-radius: var(--radius);
    background: url('img/perfil3.jpg') no-repeat center center/cover;
    transition: transform 0.3s ease;
}

.section__image-placeholder--personal {
    background: url('img/sobremim.jpg') no-repeat center bottom/cover;
}

.credentials-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: '✓  ';
}

.credentials-list li {
    padding-left: 0.5rem;
    margin-bottom: 0.5rem;
}

.sobre-slider__controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
}

.sobre-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
    position: relative;
    z-index: 2;
}

.sobre-slider__dot--active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .section__container--split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sobre-slider__container {
        width: 200%;
    }

    .sobre-slide {
        padding: 0 0.5rem;
    }
}

.section__informal {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.section__subtitle {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.section__text--informal {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .section__container--split {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .section__informal {
        padding: 1.5rem;
    }
}

/* ------------------- */
/* SEÇÃO EMOCIONAL     */
/* ------------------- */
.emotional-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(246, 247, 249, 0.5) 100%);
    overflow: hidden;
}

.emotional-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

.emotional-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.emotional-text {
    margin-bottom: 4rem;
}

.highlight-text {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--dark-color);
    line-height: 1.4;
    margin-bottom: 2rem;
    position: relative;
    font-weight: 500;
}

.emotional-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light-text-color);
}

.emotional-circle-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.emotional-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* --- ALTERADO PARA GRADIENTE AZUL E CINZA --- */
    background: linear-gradient(135deg, var(--primary-color), var(--light-text-color));
    position: relative;
    transition: transform 0.3s ease;
}

.emotional-circle:hover {
    transform: translateY(-10px);
}

.emotional-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    /* --- EFEITO DE BRILHO COM O MESMO GRADIENTE --- */
    background: linear-gradient(135deg, var(--primary-color), var(--light-text-color));
    opacity: 0.2;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.emotional-circle:hover::before {
    opacity: 0.4;
}

.circle-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 768px) {
    .emotional-circle {
        width: 120px;
        height: 120px;
    }

    .emotional-circle-container {
        gap: 2rem;
    }

    .emotional-description {
        padding: 0 1rem;
        font-size: 1.1rem;
    }
}

/* ------------------- */
/* SEÇÃO: DEMANDAS     */
/* ------------------- */
.demand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.demand-item {
    background-color: var(--bg-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.demand-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.demand-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

/* --- DEMANDAS MODERNA --- */
.demand-grid--modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 2.5rem;
    position: relative;
}

@media (min-width: 1024px) {
    .demand-grid--modern {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        position: relative;
        overflow: visible;
        max-width: 1200px;
        margin: 2.5rem auto;
    }

    .demand-grid--modern::before {
        content: '';
        position: absolute;
        top: 0;
        left: 33.33%;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom,
                transparent 0%,
                var(--primary-color) 5%,
                var(--primary-color) 95%,
                transparent 100%);
        opacity: 0.15;
    }

    .demand-grid--modern::after {
        content: '';
        position: absolute;
        top: 0;
        left: 66.66%;
        width: 1px;
        height: 100%;
        background: linear-gradient(to bottom,
                transparent 0%,
                var(--primary-color) 5%,
                var(--primary-color) 95%,
                transparent 100%);
        opacity: 0.15;
    }
}

@keyframes pulsePoints {

    0%,
    100% {
        opacity: 0.1;
    }

    50% {
        opacity: 0.2;
    }
}

.demand-card {
    background: var(--bg-color);
    border-radius: 16px;
    box-shadow: 0 4px 20px 0 rgba(10, 4, 147, 0.05);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 160px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    z-index: 2;
}

@media (min-width: 1024px) {
    .demand-card {
        background: var(--bg-color);
    }

    .demand-grid--modern .demand-card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -2.5rem;
        width: 2.5rem;
        height: 1px;
        background: linear-gradient(to right, transparent, var(--primary-color));
        opacity: 0.15;
        transform: translateY(-50%);
    }

    .demand-grid--modern .demand-card:nth-child(-n+3) {
        margin-bottom: 1.5rem;
    }

    .demand-grid--modern .demand-card:nth-child(n+4):nth-child(-n+6) {
        margin-bottom: 1.5rem;
    }
}

.demand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4338ca 100%);
    opacity: 0.12;
    border-radius: 24px 24px 0 0;
}

@media (min-width: 1024px) {
    .demand-card:hover {
        box-shadow: 0 8px 30px 0 rgba(10, 4, 147, 0.08);
        border-color: var(--primary-color);
        transform: translateY(-4px);
    }

    .demand-grid--modern .demand-card:hover::after {
        opacity: 0.3;
        width: 3rem;
        right: -3rem;
    }
}

@media (max-width: 1023px) {
    .demand-card:hover {
        box-shadow: 0 8px 20px 0 rgba(10, 4, 147, 0.08);
        border-color: var(--primary-color);
        transform: translateY(-4px);
    }

    .demand-grid--modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.demand-card__content {
    z-index: 2;
    width: 100%;
    text-align: left;
}

.demand-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
    text-align: center;
}

.demand-card p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .demand-grid--modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem 0.5rem;
    }

    .demand-card {
        padding: 2rem 1.2rem 1.5rem 1.2rem;
    }

    .demand-grid--modern::before {
        left: 20px;
        right: 20px;
        height: 100%;
        width: 2px;
        transform: none;
    }
}

/* ------------------- */
/* SEÇÃO: COMO FUNCIONA */
/* ------------------- */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 2rem;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 10%;
    width: 80%;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step__number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: var(--bg-color);
}

.step__title {
    margin-bottom: 0.5rem;
}

/* ------------------- */
/* NOVA SEÇÃO: DEPOIMENTOS */
/* ------------------- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-card blockquote {
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    flex-grow: 1;
    border-left: 3px solid var(--primary-color);
    padding-left: 1rem;
}

.testimonial-card cite {
    font-weight: 600;
    color: var(--dark-color);
    font-style: normal;
}

/* ------------------- */
/* SEÇÃO: FAQ          */
/* ------------------- */
.faq-item {
    border: 1px solid var(--primary-color);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-question[aria-expanded="true"]::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

/* ------------------- */
/* SEÇÃO: CTA FINAL    */
/* ------------------- */
.cta-final {
    background-color: var(--dark-color);
    color: var(--bg-color);
    padding: 5rem 0;
}

.cta-final__title {
    color: var(--bg-color);
    margin-bottom: 1rem;
}

.cta-final__subtitle {
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ------------------- */
/* WHATSAPP FLUTUANTE  */
/* ------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--whatsapp-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 99;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    opacity: 1;
}

/* ------------------- */
/* NOTIFICAÇÃO COOKIES */
/* ------------------- */
.cookie-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(46, 42, 43, 0.98);
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-notification .cookie-text {
    max-width: 800px;
    text-align: center;
}

.cookie-notification a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-btn {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .cookie-notification {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .cookie-btn {
        margin-left: 0;
    }
}

/* ------------------- */
/* RODAPÉ              */
/* ------------------- */
.footer {
    background-color: var(--muted-bg-color);
    color: var(--light-text-color);
    padding: 2rem 0;
    font-size: 0.9rem;
    border-top: 1px solid var(--border-color);
}

.footer__container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    text-align: center;
}

.footer a {
    color: var(--light-text-color);
    font-weight: 600;
}

.footer a:hover {
    color: var(--primary-color);
}

/* ------------------- */
/* ANIMAÇÕES DE SCROLL */
/* ------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
    }
}

/* ------------------- */
/* RESPONSIVIDADE      */
/* ------------------- */
@media (max-width: 1024px) {
    .section__container--split {
        grid-template-columns: 1fr;
    }

    .section__image-placeholder {
        max-width: 400px;
        margin: 0 auto;
    }

    .section__content {
        text-align: center;
    }

    .credentials-list {
        text-align: left;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .cta--header {
        display: none;
    }

    .nav__toggle {
        display: block;
    }

    .nav__list {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .nav__list.is-active {
        max-height: 500px;
        padding-bottom: 1rem;
    }

    .nav__link {
        padding: 1rem 0;
    }

    .footer__container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer__separator {
        display: none;
    }

    .demand-grid {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 30px;
        padding-top: 0;
    }

    .steps-timeline::before {
        top: 0;
        left: 30px;
        width: 2px;
        height: 100%;
    }

    .step {
        text-align: left;
        padding-left: 3.5rem;
        padding-bottom: 2.5rem;
    }

    .step:last-child {
        padding-bottom: 0;
    }

    .step__number {
        position: absolute;
        left: 0;
        top: -8px;
    }
}

/* --- PROCESSO TERAPÊUTICO MODERNO --- */
.process-flow {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    flex-wrap: wrap;
}

.process-step {
    background: var(--bg-color);
    border-radius: 20px;
    box-shadow: 0 6px 32px 0 rgba(10, 4, 147, 0.07), 0 1.5px 6px 0 rgba(0, 0, 0, 0.03);
    border: 1.5px solid var(--border-color);
    padding: 2.2rem 1.5rem 1.5rem 1.5rem;
    min-width: 260px;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.3s, border 0.3s, transform 0.3s;
    z-index: 1;
    text-align: center;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.25rem;
    width: 2.5rem;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #4338ca 100%);
    opacity: 0.13;
    border-radius: 2px;
    transform: translateY(-50%);
    z-index: 0;
}

.process-step__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 60%, #4338ca 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 1.2rem;
    font-size: 2rem;
    box-shadow: 0 2px 8px 0 rgba(10, 4, 147, 0.10);
    transition: background 0.3s, box-shadow 0.3s;
}

.process-step__icon svg {
    width: 36px;
    height: 36px;
    display: block;
}

.process-step__title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: 0.01em;
}

.process-step__text {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

.process-step:hover {
    box-shadow: 0 12px 36px 0 rgba(10, 4, 147, 0.13), 0 2px 8px 0 rgba(0, 0, 0, 0.06);
    border: 1.5px solid var(--primary-color);
    transform: translateY(-6px) scale(1.025);
}

.process-step:hover .process-step__icon {
    background: linear-gradient(135deg, #4338ca 0%, var(--primary-color) 100%);
    box-shadow: 0 4px 16px 0 rgba(10, 4, 147, 0.13);
}

@media (max-width: 1024px) {
    .process-flow {
        flex-direction: column;
        gap: 2rem;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}