:root {
    --bg-main: #dbe4dc;
    --bg-soft: #e3ebe4;
    --text-main: #2f3430;
    --text-soft: #5c645f;
    --line: rgba(47, 52, 48, 0.14);

    --accent: #f587a3;
    --accent-hover: #ef7595;
    --white: #ffffff;

    --shadow-soft: 0 12px 30px rgba(47, 52, 48, 0.08);
    --shadow-accent: 0 14px 28px rgba(245, 135, 163, 0.28);

    --radius-pill: 999px;
    --transition: 0.35s ease;

    --hero-image: url("./src/Assets/Imagem_Principal.webp");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    position: relative;
    font-family: "Nunito", sans-serif;
    background: var(--bg-main);
    color: var(--text-main);
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

@supports (overflow: clip) {
    html,
    body {
        overflow-x: clip;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

header[id],
section[id],
.anchor-materiais[id] {
    scroll-margin-top: 110px;
}

/* NAVBAR */
nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(219, 228, 220, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    animation: slideDown 0.8s ease;
}

.logo {
    min-width: 190px;
}

.logo a {
    display: inline-block;
}

.logo h1 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.95rem, 1.25vw, 1.18rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.1;
    color: #111;
}

.logo p {
    margin-top: 0.15rem;
    font-size: 0.72rem;
    font-weight: 500;
    color: #2f3430;
    line-height: 1.2;
}

.navbar {
    flex: 1;
    display: flex;
    justify-content: center;
}

.navbar ul {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 1.7vw, 2rem);
}

.navbar ul li a {
    position: relative;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #444b46;
    transition: color var(--transition);
}

.navbar ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 0;
    height: 1.5px;
    background: var(--accent);
    transition: width var(--transition);
}

.navbar ul li a:hover {
    color: #1f2421;
}

.navbar ul li a:hover::after {
    width: 100%;
}

.nav-cta {
    flex-shrink: 0;
    background: var(--accent);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.nav-cta a {
    display: block;
    padding: 0.95rem 1.6rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    transform: translateY(-2px);
    background: var(--accent-hover);
    box-shadow: 0 12px 24px rgba(245, 135, 163, 0.28);
}

/* MENU MOBILE */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: 1px solid rgba(47, 52, 48, 0.12);
    transition: background var(--transition), transform var(--transition), border-color var(--transition);
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: scale(1.02);
    border-color: rgba(47, 52, 48, 0.2);
}

.menu-toggle span {
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: #232323;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100dvh;
    background: rgba(20, 22, 20, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1190;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(88vw, 360px);
    max-width: calc(100vw - 18px);
    height: 100vh;
    height: 100dvh;
    padding: 1.1rem 1rem 1.3rem;
    background: #edf3ed;
    box-shadow: -18px 0 45px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    transform: translate3d(110%, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    will-change: transform;
    transition:
        transform 0.38s ease,
        opacity 0.25s ease,
        visibility 0s linear 0.38s;
    z-index: 1200;
}

.mobile-menu-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(47, 52, 48, 0.1);
}

.mobile-menu-brand h3 {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #111;
    line-height: 1.1;
}

.mobile-menu-brand p {
    margin-top: 0.2rem;
    font-size: 0.74rem;
    font-weight: 500;
    color: #2f3430;
    line-height: 1.3;
}

.menu-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 1.8rem;
    line-height: 1;
    color: #2d332f;
    transition: background var(--transition), transform var(--transition);
}

.menu-close:hover {
    background: rgba(47, 52, 48, 0.06);
    transform: scale(1.04);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.mobile-menu-list li a {
    display: block;
    padding: 0.9rem 0.85rem;
    border-radius: 14px;
    font-family: "Poppins", sans-serif;
    font-size: 0.96rem;
    font-weight: 600;
    color: #37403a;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.mobile-menu-list li a:hover {
    background: rgba(245, 135, 163, 0.1);
    color: #1f2421;
    transform: translateX(4px);
}

.mobile-menu-button {
    margin-top: auto;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f587a3, #f27e9a);
    box-shadow: 0 16px 30px rgba(245, 135, 163, 0.28);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.mobile-menu-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 34px rgba(245, 135, 163, 0.34);
    filter: brightness(1.03);
}

body.menu-open {
    overflow-x: hidden;
    overscroll-behavior-x: none;
}

@supports (overflow: clip) {
    body.menu-open {
        overflow-x: clip;
    }
}

body.menu-open .mobile-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.menu-open .mobile-menu {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        transform 0.38s ease,
        opacity 0.25s ease,
        visibility 0s linear 0s;
}

/* HERO */
header {
    width: 100%;
    min-height: calc(100vh - 78px);
    background: var(--bg-main);
    border-bottom: 0.1px solid rgb(204, 204, 204);
}

.container {
    display: grid;
    grid-template-columns: minmax(0, 45%) minmax(0, 55%);
    min-height: calc(100vh - 78px);
}

.container-left,
.container-right {
    min-width: 0;
}

.container-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: clamp(0.8rem, 1.6vw, 2.4rem) clamp(0.8rem, 2.2vw, 2.4rem) clamp(1.8rem, 3vw, 2.4rem);
    background: var(--bg-main);
}

.container-left > img {
    width: clamp(48px, 4vw, 58px);
    height: clamp(48px, 4vw, 58px);
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s ease both 0.15s;
    background-color: white;
}

.titulo h1 {
    max-width: 600px;
    font-family: "Cormorant Infant", serif;
    font-size: clamp(3rem, 4.2vw, 4rem);
    font-weight: 500;
    line-height: 0.96;
    text-transform: uppercase;
    color: #202320;
    animation: fadeUp 0.85s ease both 0.25s;
}

.titulo p {
    max-width: 530px;
    margin-top: 1.45rem;
    font-family: "Nunito", sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.14rem);
    font-weight: 500;
    line-height: 1.9;
    color: var(--text-soft);
    animation: fadeUp 0.85s ease both 0.35s;
}

.checklist {
    margin-top: 2.2rem;
}

.checklist ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.92rem, 1vw, 1rem);
    font-weight: 500;
    color: #3a403b;
}

.checklist li:nth-child(1) { animation: fadeUp 0.85s ease both 0.45s; }
.checklist li:nth-child(2) { animation: fadeUp 0.85s ease both 0.55s; }
.checklist li:nth-child(3) { animation: fadeUp 0.85s ease both 0.65s; }

.checklist li img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    animation: floatIcon 3s ease-in-out infinite;
}

.checklist li:nth-child(2) img { animation-delay: 0.2s; }
.checklist li:nth-child(3) img { animation-delay: 0.4s; }

.container-left > .Hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2.5rem;
    margin-top: 2.3rem;
    padding: 0.5rem 0rem 0.5rem 1.8rem;
    min-width: 300px;
    border-radius: var(--radius-pill);
    background: var(--accent);
    box-shadow: var(--shadow-accent);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
    animation: fadeUp 0.9s ease both 0.75s;
}

.container-left > .Hero-button span {
    font-family: "Poppins", sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.container-left > .Hero-button img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.1rem;
    border: 2px solid rgba(255, 255, 255, 0.85);
}

.container-left > .Hero-button:hover {
    transform: translateY(-4px);
    background: var(--accent-hover);
    box-shadow: 0 18px 32px rgba(245, 135, 163, 0.32);
}

.container-right {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    background: url("./src/Assets/Imagem_Principal.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 20%;
    animation: zoomSoft 1s ease both 0.1s;
}

.container-right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.14) 28%,
        rgba(0, 0, 0, 0.05) 58%,
        rgba(0, 0, 0, 0.02) 100%
    );
}

.text-image {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    z-index: 1;
    width: calc(100% - 2rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.text-image h3 {
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.45;
}

.text-image h3::after {
    content: " – Nutricionista materno-infantil";
    font-weight: 400;
}

.text-image p {
    margin-top: 0.45rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    line-height: 1.4;
}

/* ANIMAÇÕES */
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes zoomSoft {
    from { opacity: 0; transform: scale(1.04); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes aboutFadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes aboutFadeLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes aboutArrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

@keyframes servicoFadeUp {
    from { opacity: 0; transform: translateY(36px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes servicoIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes servicoArrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(4px); }
}

@keyframes servicoShine {
    0% { transform: translateX(-140%); }
    100% { transform: translateX(140%); }
}

/* SECTION ABOUT */
.Section-about {
    position: relative;
    overflow: hidden;
    background: #dbe4dc;
    padding: clamp(10rem, 7vw, 7rem) 0;
}

.Section-about::before,
.Section-about::after {
    content: none;
}

.Container-about {
    position: relative;
    z-index: 1;
    width: min(1200px, calc(100% - 2rem));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(340px, 440px) minmax(0, 1fr);
    grid-template-areas:
        "about-left about-title"
        "about-left text-about";
    gap: 1.8rem 4rem;
    align-items: start;
    isolation: isolate;
}

.about-title,
.about-left,
.text-about {
    position: relative;
    z-index: 2;
}

.about-title {
    grid-area: about-title;
    animation: aboutFadeUp 0.8s ease both;
}

.about-mini-title {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-bottom: 0.45rem;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f587a3;
}

.about-mini-title img {
    width: 42px;
    height: 42px;
    padding: 0rem;
    object-fit: cover;
    background-color: #ffffff;
    border-radius: 100%;
}

.about-title h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: #111111;
}

.about-title p {
    margin-top: 0.35rem;
    font-family: "Nunito", sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2e2e2e;
}

.about-left {
    grid-area: about-left;
    animation: aboutFadeLeft 0.9s ease both 0.15s;
}

.about-image-card {
    flex: 1;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 420px;
    border: 4px solid #f587a3;
    border-radius: 2rem;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 20px 45px rgba(47, 52, 48, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 55px rgba(47, 52, 48, 0.18);
}

.about-image-card > img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
    display: block;
}

.about-instagram {
    position: absolute;
    left: 0.9rem;
    bottom: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.62rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 22px rgba(47, 52, 48, 0.12);
    font-family: "Poppins", sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: #444;
    transition: transform 0.3s ease, background 0.3s ease;
}

.about-instagram:hover {
    transform: translateY(-3px);
    background: #ffffff;
}

.about-instagram-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #f587a3;
    flex-shrink: 0;
}

.about-instagram-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.text-about {
    grid-area: text-about;
    animation: aboutFadeUp 0.85s ease both 0.3s;
}

.text-about p {
    font-family: "Nunito", sans-serif;
    font-size: 1.08rem;
    line-height: 1.95;
    color: #363636;
}

.text-about .about-text-strong {
    margin-bottom: 1rem;
    font-weight: 800;
    color: #141414;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1rem;
    margin-top: 2rem;
}

.about-card {
    min-height: 60px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(47, 52, 48, 0.08);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #2f3430;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(47, 52, 48, 0.12);
}

.about-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #f587a3;
}

.about-card-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-button {
    margin-top: 1.7rem;
    width: fit-content;
    min-width: 420px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.4rem 0.95rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f587a3, #f27e9a);
    box-shadow: 0 16px 30px rgba(245, 135, 163, 0.28);
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
    animation: aboutFadeUp 0.9s ease both 0.45s;
}

.about-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 38px rgba(245, 135, 163, 0.34);
    filter: brightness(1.03);
}

.about-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    animation: aboutArrowMove 1.8s ease-in-out infinite;
}

.about-button-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (min-width: 769px) {
    .Container-about::before,
    .Container-about::after,
    .about-left::before {
        content: none;
    }
}

/* SECTION SERVIÇOS */
.Section-servicos {
    position: relative;
    overflow: hidden;
    padding: clamp(5rem, 8vw, 7rem) 0;
    background: #c2cdbf;
    isolation: isolate;
}

.Section-servicos::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.12), transparent 38%),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.06), transparent 35%);
    pointer-events: none;
    z-index: 0;
}

.Container-servicos {
    position: relative;
    z-index: 1;
    width: min(1160px, calc(100% - 2rem));
    margin: 0 auto;
}

.servicos-header {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    animation: servicoFadeUp 0.8s ease both;
}

.servicos-kicker {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.95rem, 1vw, 1rem);
    font-weight: 500;
    color: #2f3430;
    margin-bottom: 0.45rem;
}

.servicos-header h2 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(2.3rem, 3.6vw, 3.5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #111111;
}

.servicos-header p {
    margin-top: 1rem;
    font-family: "Nunito", sans-serif;
    font-size: clamp(1rem, 1.15vw, 1.12rem);
    line-height: 1.8;
    color: #414743;
}

.servicos-grid {
    margin-top: clamp(2.5rem, 5vw, 3.5rem);
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 500px));
    justify-content: center;
    gap: 1.45rem 1.45rem;
    align-items: stretch;
}

.card-servico {
    position: relative;
    min-height: 420px;
    padding: 1.55rem;
    border-radius: 1.85rem;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 18px 35px rgba(47, 52, 48, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    animation: servicoFadeUp 0.85s ease both;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
}

.card-servico::before {
    content: "";
    position: absolute;
    top: 0;
    left: -35%;
    width: 32%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.card-servico:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(47, 52, 48, 0.12);
    border-color: rgba(245, 135, 163, 0.2);
}

.card-servico:hover::before {
    opacity: 1;
    animation: servicoShine 1s ease;
}

.card-servico01 { animation-delay: 0.10s; }
.card-servico02 { animation-delay: 0.18s; }
.card-servico03 { animation-delay: 0.26s; }
.card-servico04 { animation-delay: 0.34s; }
.card-servico05 { animation-delay: 0.42s; }

.card-servico05 {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 500px);
}

.servico-icone {
    width: 54px;
    height: 54px;
    border-radius: 0.8rem;
    background: rgba(245, 135, 163, 0.28);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: servicoIconFloat 3s ease-in-out infinite;
}

.card-servico02 .servico-icone { animation-delay: 0.2s; }
.card-servico03 .servico-icone { animation-delay: 0.4s; }
.card-servico04 .servico-icone { animation-delay: 0.6s; }
.card-servico05 .servico-icone { animation-delay: 0.8s; }

.servico-icone img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.servico-conteudo {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.servico-conteudo h3 {
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 1.9vw, 2rem);
    line-height: 1.15;
    font-weight: 700;
    color: #171717;
    max-width: 92%;
}

.servico-conteudo p {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.98rem, 2.2vw, 1.6rem);
    letter-spacing: 5%;
    line-height: 1.78;
    color: #4e544f;
    max-width: 96%;
}

.servico-botao {
    position: relative;
    min-height: 58px;
    margin-top: auto;
    padding: 1rem 1.2rem 1rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #f587a3, #f27e9a);
    box-shadow: 0 14px 28px rgba(245, 135, 163, 0.24);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    overflow: hidden;
}

.servico-botao::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: translateX(-140%);
    transition: transform 0.6s ease;
}

.servico-botao:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(245, 135, 163, 0.32);
    filter: brightness(1.03);
}

.servico-botao:hover::after {
    transform: translateX(140%);
}

.servico-botao span {
    position: relative;
    z-index: 1;
}

.servico-botao-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    animation: servicoArrowMove 1.8s ease-in-out infinite;
}

.servico-botao-icone svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}


@media (max-width: 1180px) {
    .navbar ul {
        gap: 1rem;
    }

    .navbar ul li a {
        font-size: 0.88rem;
    }

    .nav-cta a {
        padding: 0.9rem 1.2rem;
        font-size: 0.86rem;
    }

    .servicos-grid {
        grid-template-columns: repeat(2, minmax(300px, 440px));
        gap: 1.35rem;
    }

    .card-servico {
        min-height: 390px;
    }

    .servico-conteudo h3 {
        max-width: 100%;
    }

    .servico-conteudo p {
        max-width: 100%;
    }
}

@media (max-width: 980px) {
    .Container-about {
        gap: 1.5rem 2.2rem;
        grid-template-columns: minmax(290px, 390px) minmax(0, 1fr);
    }

    .text-about p {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-card {
        font-size: 0.9rem;
    }

    .about-image-card {
        max-width: 380px;
    }

    .about-image-card > img {
        min-height: 560px;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }

    .card-servico {
        min-height: 360px;
    }

    .card-servico05 {
        grid-column: auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 0.7rem 0.9rem;
    }

    .navbar,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .logo {
        min-width: auto;
    }

    .logo h1 {
        font-size: 0.96rem;
        letter-spacing: 0.08em;
    }

    .logo p {
        font-size: 0.62rem;
    }

    header {
        min-height: auto;
    }

    .container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .container-left,
    .container-right {
        width: 100%;
    }

    .container-left {
        justify-content: flex-start;
        padding: 1.85rem 1rem 2.1rem;
    }

    .titulo h1 {
        max-width: 100%;
        font-size: clamp(2.3rem, 9.5vw, 3.6rem);
        line-height: 1.05;
    }

    .titulo p {
        max-width: 100%;
        margin-top: 1rem;
        font-size: 0.98rem;
        line-height: 1.72;
    }

    .checklist {
        width: 100%;
        margin-top: 1.7rem;
    }

    .checklist li {
        align-items: flex-start;
        gap: 0.78rem;
    }

    .container-left > img {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .container-left > .Hero-button {
        width: 100%;
        max-width: 320px;
        min-width: 0;
        gap: 1rem;
        justify-content: space-between;
        padding: 0.68rem 0.68rem 0.68rem 1.35rem;
    }

    .container-right {
        min-height: 90vh;
        height: auto;
        background-position: center 18%;
    }

    .text-image {
        bottom: 1rem;
        width: calc(100% - 1.5rem);
    }

    .text-image h3 {
        font-size: 0.72rem;
        letter-spacing: 0.05em;
        line-height: 1.4;
    }

    .text-image h3::after {
        content: "Nutricionista materno-infantil";
        display: block;
        margin-top: 0.14rem;
        font-weight: 400;
    }

    .text-image p {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
        margin-top: 0.32rem;
    }

    .Section-about {
        padding: 3.5rem 0;
    }

    .Container-about {
        grid-template-columns: 1fr;
        grid-template-areas:
            "about-title"
            "about-left"
            "text-about";
        gap: 1.4rem;
    }

    .Container-about::before,
    .Container-about::after,
    .about-left::before {
        content: none;
    }

    .about-title {
        text-align: center;
    }

    .about-title h2 {
        font-size: 2rem;
    }

    .about-title p {
        font-size: 0.98rem;
    }

    .about-left {
        display: flex;
        justify-content: center;
    }

    .about-image-card {
        max-width: 360px;
    }

    .about-image-card > img {
        min-height: 500px;
    }

    .text-about {
        text-align: left;
    }

    .text-about p {
        font-size: 0.96rem;
        line-height: 1.75;
    }

    .about-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.8rem;
    }

    .about-card {
        min-height: 58px;
        padding: 0.75rem 0.8rem;
        font-size: 0.72rem;
        line-height: 1.35;
        border-radius: 1rem;
    }

    .about-button {
        width: 100%;
        min-width: unset;
    }

    .Section-servicos {
        padding: 3.9rem 0;
    }

    .Container-servicos {
        width: min(100% - 1rem, 680px);
    }

    .servicos-header h2 {
        font-size: 2.8rem;
    }

    .card-servico {
        padding: 1.2rem;
        min-height: 340px;
    }

    
}

@media (max-width: 560px) {
    .container-left {
        padding: 1.55rem 1rem 1.15rem;
    }

    .titulo h1 {
        font-size: clamp(2.1rem, 10.5vw, 2.95rem);
        line-height: 1.08;
    }

    .titulo p {
        font-size: 0.94rem;
        line-height: 1.68;
    }

    .container-left > .Hero-button {
        max-width: 280px;
        min-height: 50px;
        margin-top: 1.3rem;
        display: flex;
        justify-content: center;
        gap: 42px;
        box-shadow: 0 12px 24px rgba(245, 135, 163, 0.22);
    }

    .container-left > .Hero-button span {
        font-size: 0.84rem;
        line-height: 1.15;
    }

    .container-left > .Hero-button img {
        width: 42px;
        height: 42px;
        border-width: 1.5px;
    }

    .container-right {
        min-height: 80vh;
        background-position: center 7%;
    }

    .Container-servicos {
        width: min(100% - 1rem, 390px);
    }

    .servicos-kicker {
        font-size: 0.88rem;
    }

    .servicos-header h2 {
        font-size: 2.45rem;
    }

    .servicos-header p {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .card-servico {
        padding: 1rem;
        min-height: 300px;
        border-radius: 1.35rem;
    }

    .servico-icone {
        width: 44px;
        height: 44px;
    }

    .servico-icone img {
        width: 22px;
        height: 22px;
    }

    .servico-conteudo h3 {
        font-size: 1.22rem;
        max-width: 100%;
    }

    .servico-conteudo p {
        font-size: 0.88rem;
        line-height: 1.62;
        max-width: 100%;
    }

    .servico-botao {
        min-height: 52px;
        font-size: 0.8rem;
        padding: 0.9rem 1rem 0.9rem 1.1rem;
    }
}

@media (max-width: 480px) {
    .container-left {
        padding: 1.38rem 0.95rem 1rem;
    }

    .titulo h1 {
        font-size: clamp(1.95rem, 13vw, 2.7rem);
        line-height: 1.08;
    }

    .titulo p {
        font-size: 0.93rem;
        line-height: 1.62;
        margin-top: 0.95rem;
    }

    .checklist {
        margin-top: 1.45rem;
    }

    .checklist ul {
        gap: 0.85rem;
    }

    .checklist li {
        align-items: flex-start;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .checklist li img {
        width: 20px;
        height: 20px;
        margin-top: 0.08rem;
    }

    .container-left > .Hero-button {
        margin-top: 1.18rem;
        width: 100%;
        max-width: 278px;
        min-height: 48px;
        padding: 0.42rem 0.46rem 0.42rem 0.92rem;
        gap: 4rem;
    }

    .container-left > .Hero-button span {
        font-size: 0.82rem;
    }

    .container-left > .Hero-button img {
        width: 36px;
        height: 36px;
    }

    .container-right {
        min-height: 70vh;
        background-position: center 6%;
        position: relative;
    }

    .text-image {
        position: absolute;
        bottom: 0.9rem;
        width: calc(100% - 1rem);
        text-align: center;
    }

    .text-image h3 {
        font-size: 0.68rem;
        letter-spacing: 0.04em;
        line-height: 1.45;
    }

    .text-image h3::after {
        content: "Nutricionista materno-infantil";
        display: block;
        margin-top: 0.15rem;
        font-weight: 400;
    }

    .text-image p {
        font-size: 0.64rem;
        letter-spacing: 0.08em;
        line-height: 1.35;
        margin-top: 0.35rem;
    }

    .Container-about {
        width: min(100% - 1rem, 420px);
    }

    .about-mini-title {
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .about-mini-title img {
        width: 24px;
        height: 24px;
        padding: 0.18rem;
    }

    .about-title h2 {
        font-size: 1.8rem;
        line-height: 1.05;
    }

    .about-title p {
        font-size: 0.92rem;
    }

    .about-image-card {
        max-width: 300px;
        border-width: 3px;
        border-radius: 1.5rem;
    }

    .about-image-card > img {
        min-height: 420px;
    }

    .about-instagram {
        left: 0.6rem;
        bottom: 0.6rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.7rem;
    }

    .text-about p {
        font-size: 0.86rem;
        line-height: 1.72;
    }

    .about-cards {
        gap: 0.7rem;
    }

    .about-card {
        min-height: 56px;
        padding: 0.7rem;
        font-size: 0.64rem;
        gap: 0.45rem;
    }

    .about-card-icon {
        width: 16px;
        height: 16px;
    }

    .about-button {
        margin-top: 1.35rem;
        padding: 0.95rem 1.1rem;
        font-size: 0.82rem;
    }

    .servicos-header h2 {
        font-size: 2.15rem;
    }

    .card-servico {
        min-height: 280px;
    }
}


.anchor-materiais {
    width: 100%;
    height: 1px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

.section-consultas {
  --bg-consultas: #b9c5b3;
  --card-bg: #f8f6f5;
  --text-dark: #111111;
  --text-soft: #4f5652;
  --icon-bg: #dbe4db;
  --icon-color: #4a554e;
  --check-color: #17a17b;
  --button-bg: #f283a1;
  --button-hover: #ec7394;
  --white: #ffffff;
  --shadow-card: 0 20px 50px rgba(28, 39, 29, 0.08);
  --shadow-card-hover: 0 28px 70px rgba(28, 39, 29, 0.16);

  width: 100%;
  min-height: 100vh;
  padding: 150px 20px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-consultas);
  overflow: hidden;
}

.container-consultas {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.topo-consultas {
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
  animation: fadeUp 0.8s ease both;
}

.titulo-consultas {
  color: var(--text-dark);
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  font-family: Poppins, sans-serif;
}

.descricao-topo-consultas {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: clamp(1.4rem, 1.2vw, 1.2rem);
  line-height: 1.75;
  font-weight: 400;
}

.cards-consultas {
  display: grid;
  grid-template-columns: repeat(2, minmax(420px, 500px));
  justify-content: center;
  align-items: stretch;
  gap: 42px;
}

.card-consultas {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 24px 30px 24px;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease,
    border-color 0.45s ease;
  opacity: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.35);
  will-change: transform;
}

.card-consultas::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.26) 0%,
    rgba(255, 255, 255, 0) 42%,
    rgba(242, 131, 161, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.card-consultas::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, 0.34) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  opacity: 0;
  pointer-events: none;
}

.card-consultas1 {
  animation: fadeUp 0.8s ease 0.12s forwards;
}

.card-consultas2 {
  animation: fadeUp 0.8s ease 0.24s forwards;
}

.card-consultas:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(242, 131, 161, 0.22);
}

.card-consultas:hover::before {
  opacity: 1;
}

.card-consultas:hover::after {
  left: 140%;
  opacity: 1;
  transition:
    left 0.95s ease,
    opacity 0.2s ease;
}

.card-consultas:hover .icone-consulta {
  transform: translateY(-4px) scale(1.05);
}

.card-consultas:hover .titulo-card-consulta {
  transform: translateX(2px);
}

.card-consultas:hover .botao-consulta {
  box-shadow: 0 18px 34px rgba(242, 131, 161, 0.3);
}

.icone-consulta {
  width: 58px;
  height: 58px;
  border-radius: 15px;
  background: var(--icon-bg);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  animation: floatingIcon 4s ease-in-out infinite;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 2;
}

.icone-consulta svg {
  width: 24px;
  height: 24px;
}

.titulo-card-consulta {
  color: var(--text-dark);
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  transition: transform 0.35s ease;
  position: relative;
  z-index: 2;
}

.texto-card-consulta {
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.95;
  font-weight: 400;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}

.lista-consultas {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.item-consulta {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2d342f;
  font-size: 1rem;
  line-height: 1.5;
}

.check-consulta {
  width: 21px;
  height: 21px;
  min-width: 21px;
  border-radius: 50%;
  background: rgba(23, 161, 123, 0.08);
  color: var(--check-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.check-consulta svg {
  width: 14px;
  height: 14px;
}

.botao-consulta {
  margin-top: auto;
  width: 100%;
  min-height: 56px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--white);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(242, 131, 161, 0.22);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.botao-consulta:hover {
  background: var(--button-hover);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(242, 131, 161, 0.28);
}

.botao-consulta:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.icone-seta {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icone-seta svg {
  width: 18px;
  height: 18px;
}

.botao-consulta:hover .icone-seta {
  transform: translateX(4px);
}

/* ANIMAÇÕES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatingIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

/* DESKTOP MENOR / TABLET */
@media (max-width: 1100px) {
  .section-consultas {
    padding: 46px 18px 60px;
  }

  .topo-consultas {
    margin-bottom: 34px;
  }

  .cards-consultas {
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 24px;
  }

  .card-consultas {
    min-height: auto;
    padding: 28px 24px 22px;
  }

  .titulo-card-consulta {
    font-size: 1.85rem;
  }

  .texto-card-consulta {
    font-size: 0.98rem;
  }

  .item-consulta {
    font-size: 0.97rem;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-consultas {
    min-height: auto;
    padding: 130px 16px 54px;
    align-items: flex-start;
  }

  .topo-consultas {
    margin-bottom: 28px;
  }

  .titulo-consultas {
    font-size: clamp(1.5rem, 6vw, 2.9rem);
    line-height: 1.16;
    margin-bottom: 12px;
  }

  .descricao-topo-consultas {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .cards-consultas {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-consultas {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 24px 20px 20px;
    border-radius: 20px;
  }

  .card-consultas:hover {
    transform: translateY(-4px);
  }

  .icone-consulta {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }

  .titulo-card-consulta {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .texto-card-consulta {
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 24px;
  }

  .lista-consultas {
    gap: 14px;
    margin-bottom: 24px;
  }

  .item-consulta {
    font-size: 0.96rem;
  }

  .botao-consulta {
    min-height: 50px;
    padding: 12px 16px;
    font-size: 0.93rem;
  }
}


@media (max-width: 480px) {
  .section-consultas {
    padding: 36px 12px 48px;
  }

  .topo-consultas {
    margin-bottom: 24px;
  }

  .titulo-consultas {
    font-size: 1.9rem;
  }

  .card-consultas {
    padding: 22px 18px 18px;
  }

  .titulo-card-consulta {
    font-size: 1.55rem;
  }

  .texto-card-consulta {
    font-size: 0.95rem;
  }

  .item-consulta {
    font-size: 0.94rem;
    align-items: flex-start;
  }

  .botao-consulta {
    min-height: 48px;
    font-size: 0.9rem;
    gap: 8px;
  }
}

/* ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {
  .topo-consultas,
  .card-consultas,
  .icone-consulta,
  .botao-consulta,
  .icone-seta,
  .titulo-card-consulta {
    animation: none !important;
    transition: none !important;
  }

  .card-consultas:hover {
    transform: none;
  }

  .card-consultas:hover::before,
  .card-consultas:hover::after {
    opacity: 0;
  }
}

.Section-Acompanhamento {
    width: 100%;
    padding: clamp(4.4rem, 7vw, 7rem) 1.2rem;
    background: linear-gradient(180deg, #f4dec5 0%, #f1d9bc 100%);
    overflow: hidden;
    position: relative;
}

.Section-Acompanhamento::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top center, rgba(255, 255, 255, 0.18), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 28%);
    pointer-events: none;
}

.Container-Acompanhamento {
    position: relative;
    z-index: 1;
    width: min(100%, 1120px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(2rem, 3vw, 3rem);
}


.title-acompanhamento {
    width: 100%;
    max-width: 760px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.52rem;
}

.mini-title-acompanhamento {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.82rem, 1.2vw, 0.96rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #f07f9b;
}

.title-acompanhamento h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.05;
    font-weight: 800;
    color: #171717;
}

.title-acompanhamento p {
    margin: 0;
    max-width: 720px;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.96rem, 1.45vw, 1.05rem);
    line-height: 1.7;
    color: #64594d;
}

.timeline-acompanhamento {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.line-acompanhamento {
    width: 2px;
    height: 72px;
    margin: 0.55rem 0;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(240, 127, 155, 0.06) 0%, rgba(164, 132, 103, 0.5) 50%, rgba(240, 127, 155, 0.06) 100%);
}

/* Cards */
.card-acompanhamento {
    width: 100%;
    max-width: 950px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(185px, 24vw, 265px);
    align-items: center;
    gap: clamp(1rem, 2.4vw, 2rem);
    padding: clamp(1.25rem, 2.5vw, 1.9rem);
    border-radius: 28px;
    background: linear-gradient(180deg, #d7e4c2 0%, #d3e0be 100%);
    box-shadow:
        0 18px 42px rgba(94, 78, 61, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(150, 174, 126, 0.18);
    position: relative;
    overflow: hidden;
    transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
    isolation: isolate;
}

.card-acompanhamento::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.card-acompanhamento::after {
    content: "";
    position: absolute;
    top: 0;
    left: -32%;
    width: 28%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: skewX(-18deg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
    z-index: 0;
}

.card-acompanhamento:hover {
    transform: translateY(-8px);
    box-shadow:
        0 26px 58px rgba(94, 78, 61, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.58);
    border-color: rgba(240, 127, 155, 0.22);
}

.card-acompanhamento:hover::after {
    opacity: 1;
    animation: acompanhamentoShine 0.95s ease;
}

.card-Acompanhamento01.reveal-up {
    transition-delay: 0.04s;
}

.card-Acompanhamento02.reveal-up {
    transition-delay: 0.12s;
}

.card-Acompanhamento03.reveal-up {
    transition-delay: 0.2s;
}

.acompanhamento-conteudo {
    min-width: 0;
    position: relative;
    z-index: 1;
}

.tag-etapa {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 100%;
    padding: 0.72rem 1rem;
    margin: 0 0 1rem 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f7dbe5 0%, #f2d0dd 100%);
    border: 1.5px solid rgba(240, 127, 155, 0.4);
    box-shadow: 0 10px 24px rgba(240, 127, 155, 0.12);
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.86rem, 1.16vw, 0.98rem);
    line-height: 1.35;
    font-weight: 800;
    color: #e96991;
    letter-spacing: 0.01em;
    transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
}

.card-acompanhamento:hover .tag-etapa {
    transform: translateY(-2px);
    border-color: rgba(240, 127, 155, 0.55);
    box-shadow: 0 14px 28px rgba(240, 127, 155, 0.16);
}

.texto-introducao {
    margin: 0 0 0.5rem 0;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.97rem, 1.25vw, 1rem);
    line-height: 1.62;
    color: #495146;
    font-weight: 700;
}

.card-acompanhamento h3 {
    margin: 0 0 1rem 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 1.45vw, 1.08rem);
    font-weight: 700;
    color: #2b2722;
}

.lista-acompanhamento {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.72rem;
}

.lista-acompanhamento li {
    display: flex;
    align-items: flex-start;
    gap: 0.62rem;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.card-acompanhamento:hover .lista-acompanhamento li {
    opacity: 0.98;
}

.card-acompanhamento:hover .lista-acompanhamento li:hover {
    transform: translateX(4px);
}

.lista-acompanhamento li img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 0.22rem;
    filter: drop-shadow(0 3px 6px rgba(70, 155, 92, 0.14));
    transition: transform 0.28s ease;
}

.card-acompanhamento:hover .lista-acompanhamento li img {
    transform: scale(1.04);
}

.lista-acompanhamento li span {
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.94rem, 1.18vw, 0.98rem);
    line-height: 1.58;
    color: #40503f;
}

.item-acompanhamento-destaque {
    padding-top: 0.12rem;
}

.item-acompanhamento-destaque span {
    font-size: clamp(0.88rem, 1.1vw, 0.94rem);
    color: #4a4d33;
    font-weight: 700;
}

.acompanhamento-midia {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.acompanhamento-imagem {
    width: 100%;
    margin: 0;
    border-radius: 22px;
    background: #ffffff;
    padding: 0.15rem;
    border: 2px solid #f08aa5;
    box-shadow: 0 16px 36px rgba(240, 127, 155, 0.12);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card-acompanhamento:hover .acompanhamento-imagem {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(240, 127, 155, 0.18);
}

.acompanhamento-imagem img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.45s ease;
}

.card-acompanhamento:hover .acompanhamento-imagem img {
    transform: scale(1.04);
}

/* CTA */
.cta-acompanhamento {
    width: 100%;
    max-width: 780px;
    margin-top: 0.15rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.cta-acompanhamento h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.65rem, 3vw, 2.4rem);
    line-height: 1.12;
    color: #1d1b19;
    font-weight: 800;
}

.cta-acompanhamento p {
    margin: 0;
    max-width: 640px;
    font-family: "Nunito", sans-serif;
    font-size: clamp(0.98rem, 1.35vw, 1.04rem);
    line-height: 1.7;
    color: #65594c;
}

.btn-acompanhamento {
    margin-top: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    min-height: 58px;
    padding: 0.78rem 0.86rem 0.78rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #f58ba6 0%, #ef7f9c 100%);
    box-shadow: 0 16px 35px rgba(241, 127, 157, 0.28);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.btn-acompanhamento::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transition: left 0.65s ease;
}

.btn-acompanhamento:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 22px 45px rgba(241, 127, 157, 0.34);
    filter: saturate(1.05);
}

.btn-acompanhamento:hover::before {
    left: 130%;
}

.btn-acompanhamento-text {
    position: relative;
    z-index: 1;
    font-family: "Poppins", sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
}

.btn-acompanhamento-icon {
    position: relative;
    z-index: 1;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.88),
        0 8px 18px rgba(163, 67, 99, 0.16);
}

.btn-acompanhamento-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

/* Animações de entrada */
@keyframes acompanhamentoShine {
    0% {
        transform: translateX(0) skewX(-18deg);
    }
    100% {
        transform: translateX(420%) skewX(-18deg);
    }
}

.reveal-up,
.reveal-line {
    opacity: 0;
    transform: translateY(42px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.reveal-line {
    transform: scaleY(0.18);
    transform-origin: top center;
}

.reveal-up.is-visible,
.reveal-line.is-visible {
    opacity: 1;
    transform: translateY(0) scaleY(1);
}


@media (max-width: 992px) {
    .Section-Acompanhamento {
        padding: 4.4rem 1rem;
    }

    .card-acompanhamento {
        max-width: 900px;
        grid-template-columns: minmax(0, 1fr) 215px;
        gap: 1.15rem;
        border-radius: 24px;
    }

    .tag-etapa {
        font-size: 0.88rem;
        padding: 0.7rem 0.95rem;
    }

    .acompanhamento-imagem {
        border-radius: 20px;
    }

    .acompanhamento-imagem img {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .Section-Acompanhamento {
        padding: 4rem 0.95rem;
    }

    .Container-Acompanhamento {
        gap: 1.8rem;
    }

    .title-acompanhamento p {
        max-width: 95%;
    }

    .card-acompanhamento {
        grid-template-columns: minmax(0, 1fr) 210px;
        gap: 1rem;
        padding: 1.15rem 1rem 1.2rem;
        border-radius: 22px;
    }

    .tag-etapa {
        font-size: 0.82rem;
        line-height: 1.42;
    }

    .line-acompanhamento {
        height: 52px;
        margin: 0.42rem 0;
    }

    .cta-acompanhamento {
        gap: 0.8rem;
    }

    .btn-acompanhamento {
        padding: 0.82rem 0.82rem 0.82rem 1.1rem;
        gap: 0.75rem;
    }

    .btn-acompanhamento-text {
        font-size: 0.88rem;
    }

    .btn-acompanhamento-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .btn-acompanhamento-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 560px) {
    .Section-Acompanhamento {
        padding: 3.5rem 0.85rem;
    }

    .title-acompanhamento {
        gap: 0.45rem;
    }

    .title-acompanhamento h2 {
        font-size: clamp(1.8rem, 9vw, 2.3rem);
    }

    .title-acompanhamento p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .card-acompanhamento {
        grid-template-columns: 1fr;
        padding: 1.45rem 1.15rem 1.35rem;
        background: linear-gradient(180deg, #f6f3f1 0%, #f3eeea 100%);
        border: 1px solid rgba(240, 127, 155, 0.24);
        box-shadow:
            0 14px 30px rgba(94, 78, 61, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .card-acompanhamento::before {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 42%);
    }

    .card-acompanhamento:hover {
        transform: translateY(-5px);
        box-shadow:
            0 18px 34px rgba(94, 78, 61, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.82);
        border-color: rgba(240, 127, 155, 0.34);
    }

    .acompanhamento-midia {
        display: none;
    }

    .tag-etapa {
        padding: 0.88rem 0.95rem;
        margin-bottom: 1.1rem;
        font-size: 0.86rem;
        line-height: 1.42;
        border-width: 1px;
        box-shadow: 0 8px 18px rgba(240, 127, 155, 0.12);
    }

    .texto-introducao {
        font-size: 1rem;
        line-height: 1.65;
        color: #7a7067;
        font-weight: 700;
        margin-bottom: 0.7rem;
    }

    .card-acompanhamento h3 {
        font-size: 0.98rem;
        margin-bottom: 0.9rem;
    }

    .lista-acompanhamento {
        gap: 0.82rem;
    }

    .lista-acompanhamento li span {
        font-size: 0.98rem;
        line-height: 1.52;
        color: #7e746d;
    }

    .line-acompanhamento {
        height: 44px;
        margin: 0.34rem 0;
        background: linear-gradient(180deg, rgba(240, 127, 155, 0.1) 0%, rgba(164, 132, 103, 0.36) 50%, rgba(240, 127, 155, 0.1) 100%);
    }

    .cta-acompanhamento h3 {
        max-width: 92%;
    }

    .cta-acompanhamento p {
        font-size: 0.93rem;
        max-width: 95%;
    }

    .btn-acompanhamento {
        width: 100%;
        max-width: 330px;
        min-height: 56px;
        padding: 0.82rem 0.82rem 0.82rem 1rem;
        gap: 0.65rem;
    }

    .btn-acompanhamento-text {
        font-size: 0.82rem;
        white-space: normal;
        text-align: center;
        line-height: 1.3;
    }

    .btn-acompanhamento-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .btn-acompanhamento-icon img {
        width: 25px;
        height: 25px;
    }
}


.Secao-Depoimentos {
  --bg-depoimentos: #f4e1e5;
  --card-bg: #f8f8f7;
  --text-dark: #181818;
  --text-soft: #6d6568;
  --text-card: #4c4749;
  --pink-main: #f383a2;
  --pink-hover: #eb7092;
  --pink-soft: #f2b9c9;
  --star-color: #f4c533;
  --border-card: rgba(255, 255, 255, 0.72);
  --shadow-card: 0 12px 28px rgba(44, 29, 35, 0.07);
  --shadow-card-hover: 0 18px 38px rgba(44, 29, 35, 0.11);

  width: 100%;
  overflow: hidden;
  background: var(--bg-depoimentos);
  padding: 96px 20px 110px;
  font-family: "Poppins", sans-serif;
  position: relative;
}

.Container-Depoimentos {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.topo-depoimentos {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
  animation: fadeUp 0.9s ease both;
}

.mini-titulo-depoimentos {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.titulo-depoimentos {
  color: var(--text-dark);
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 14px;
}

.descricao-depoimentos {
  color: var(--text-soft);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.8;
  font-weight: 500;
}

.Area-Depoimentos-Desktop {
  display: block;
  animation: fadeUp 0.9s ease 0.15s both;
}

.Marquee-Depoimentos {
  --card-width: 386px;
  --gap-cards: 28px;

  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 0 18px;
}

.Marquee-Depoimentos::before,
.Marquee-Depoimentos::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 3;
  width: 90px;
  height: 100%;
  pointer-events: none;
}

.Marquee-Depoimentos::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-depoimentos), transparent);
}

.Marquee-Depoimentos::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-depoimentos), transparent);
}

.Track-Depoimentos {
  display: flex;
  gap: var(--gap-cards);
  width: max-content;
  will-change: transform;
  animation: deslizarDepoimentos 44s linear infinite;
}

.Marquee-Depoimentos:hover .Track-Depoimentos {
  animation-play-state: paused;
}

.Grupo-Depoimentos {
  display: flex;
  gap: var(--gap-cards);
}

.card-depoimento {
  width: var(--card-width);
  min-height: 280px;
  background: var(--card-bg);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  padding: 28px 28px 30px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
  animation: cardEntrance 0.8s ease both;
}

.card-depoimento01 {
  animation-delay: 0.12s;
  cursor: pointer;
}

.card-depoimento02 {
  animation-delay: 0.24s;
  cursor: pointer;
}

.card-depoimento03 {
  animation-delay: 0.36s;
  cursor: pointer;
}

.card-depoimento04 {
  animation-delay: 0.48s;
  cursor: pointer;
}

.card-depoimento::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0) 48%,
    rgba(243, 131, 162, 0.04) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card-depoimento:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(243, 131, 162, 0.22);
}

.card-depoimento:hover::before {
  opacity: 1;
}

.topo-card-depoimento {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.topo-card-depoimento h3 {
  color: var(--text-dark);
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.avatar-depoimento {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 1.55rem;
  font-weight: 700;
}

.estrelas-depoimento {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.estrelas-depoimento span {
  color: var(--star-color);
  font-size: 1.22rem;
  line-height: 1;
}

.card-depoimento p {
  color: var(--text-card);
  font-size: 1.02rem;
  line-height: 1.95;
  font-weight: 500;
}

.Area-Depoimentos-Mobile {
  display: none;
}

.cta-depoimentos {
  display: flex;
  justify-content: flex-end;
  margin-top: 56px;
  animation: fadeUp 0.9s ease 0.25s both;
}

.box-cta-depoimentos {
  max-width: 430px;
}

.titulo-cta-depoimentos {
  color: #31292c;
  font-size: clamp(2rem, 1.4vw, 2rem);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 20px;
}

.botao-cta-depoimentos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 56px;
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  background: var(--pink-main);
  color: #ffffff;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(243, 131, 162, 0.22);
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.botao-cta-depoimentos:hover {
  background: var(--pink-hover);
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(243, 131, 162, 0.28);
}

.texto-botao-cta {
  white-space: nowrap;
}

.icone-botao-cta {
  width: 38px;
  height: 38px;
  min-width: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: white;
}

.icone-botao-cta img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
}

.viewport-slider-depoimentos {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.track-slider-depoimentos {
  display: flex;
  width: 100%;
  will-change: transform;
  transition: transform 0.45s ease;
}

.slide-depoimento {
  min-width: 100%;
  padding: 12px 10px 18px;
}

.Area-Depoimentos-Mobile .card-depoimento {
  box-shadow: 0 10px 22px rgba(44, 29, 35, 0.07);
}

.seta-slider-depoimento {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--pink-main);
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    opacity 0.25s ease;
  box-shadow: 0 10px 22px rgba(243, 131, 162, 0.2);
}

.seta-slider-depoimento:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
}

.seta-slider-depoimento:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dots-depoimentos {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.dot-depoimento {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(24, 24, 24, 0.18);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.dot-depoimento.ativo {
  background: var(--pink-main);
  transform: scale(1.15);
}

/* TABLET */
@media (max-width: 1180px) {
  .Secao-Depoimentos {
    padding: 84px 18px 96px;
  }

  .topo-depoimentos {
    margin-bottom: 48px;
  }

  .Marquee-Depoimentos {
    --card-width: 340px;
    --gap-cards: 22px;
  }

  .topo-card-depoimento h3 {
    font-size: 1.45rem;
  }

  .card-depoimento p {
    font-size: 0.97rem;
    line-height: 1.85;
  }

  .cta-depoimentos {
    justify-content: center;
    margin-top: 48px;
  }

  .box-cta-depoimentos {
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .Secao-Depoimentos {
    padding: 68px 16px 78px;
  }

  .topo-depoimentos {
    margin-bottom: 34px;
  }

  .mini-titulo-depoimentos {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .titulo-depoimentos {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .descricao-depoimentos {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .Area-Depoimentos-Desktop {
    display: none;
  }

  .Area-Depoimentos-Mobile {
    display: block;
    animation: fadeUp 0.8s ease 0.15s both;
  }

  .slider-depoimentos {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 10px;
    align-items: center;
  }

  .slide-depoimento .card-depoimento {
    width: 100%;
    min-height: auto;
    padding: 24px 20px 22px;
    border-radius: 24px;
  }

  .topo-card-depoimento h3 {
    font-size: 1.35rem;
  }

  .avatar-depoimento {
    width: 50px;
    height: 50px;
    min-width: 50px;
    font-size: 1.35rem;
  }

  .card-depoimento p {
    font-size: 0.96rem;
    line-height: 1.8;
  }

  .cta-depoimentos {
    margin-top: 36px;
  }

  .titulo-cta-depoimentos {
    font-size: 1.9rem;
    margin-bottom: 16px;
  }

  .botao-cta-depoimentos {
    width: min(100%, 340px);
    min-height: 50px;
    padding: 9px 12px 9px 12px;
    font-size: 0.85rem;
    margin: 0 auto;
  }

  .texto-botao-cta {
    white-space: normal;
    text-align: center;
  }

  .icone-botao-cta {
    width: 34px;
    height: 34px;
    min-width: 34px;
  }

  .icone-botao-cta img {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .Secao-Depoimentos {
    padding: 56px 12px 64px;
  }

  .slider-depoimentos {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .seta-slider-depoimento {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .slide-depoimento {
    padding: 10px 6px 16px;
  }

  .slide-depoimento .card-depoimento {
    padding: 22px 16px 20px;
  }

  .topo-card-depoimento {
    gap: 12px;
  }

  .topo-card-depoimento h3 {
    font-size: 1.2rem;
  }

  .avatar-depoimento {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 1.2rem;
  }

  .card-depoimento p {
    font-size: 0.93rem;
    line-height: 1.78;
  }

  .titulo-cta-depoimentos {
    font-size: 1.55rem;
  }

  .botao-cta-depoimentos {
    width: min(100%, 320px);
    min-height: 48px;
    padding: 8px 10px 8px 16px;
    font-size: 0.82rem;
    gap: 8px;
  }

  .icone-botao-cta {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }

  .icone-botao-cta img {
    width: 17px;
    height: 17px;
  }
}

/* ANIMAÇÕES */
@keyframes deslizarDepoimentos {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * ((var(--card-width) * 4) + (var(--gap-cards) * 4))));
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ACESSIBILIDADE */
@media (prefers-reduced-motion: reduce) {
  .Track-Depoimentos,
  .topo-depoimentos,
  .Area-Depoimentos-Desktop,
  .Area-Depoimentos-Mobile,
  .cta-depoimentos,
  .card-depoimento {
    animation: none !important;
    transition: none !important;
  }

  .Track-Depoimentos {
    transform: none !important;
  }

  .card-depoimento:hover,
  .botao-cta-depoimentos:hover,
  .seta-slider-depoimento:hover {
    transform: none !important;
  }
}

/* SECTION MATERIAIS */
.Section-materiais {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(5.4rem, 8vw, 7.2rem) 1rem clamp(5rem, 8vw, 6.8rem);
  background: #efd5b1;
  isolation: isolate;
}

.Section-materiais::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.Container-materiais {
  position: relative;
  z-index: 1;
  width: min(100%, 1100px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.8rem;
}

.materiais-topo {
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.materiais-kicker {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.4rem, 1.2vw, 1.04rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f28cab;
}

.materiais-topo h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #181818;
}

.materiais-topo p {
  max-width: 720px;
  font-family: "Nunito", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.7;
  font-weight: 600;
  color: #685e5d;
}

.card-material {
  width: min(100%, 370px);
  border-radius: 1.35rem;
  background: #f6f2ef;
  box-shadow: 0 18px 40px rgba(60, 38, 19, 0.10);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
  animation: fadeUp 0.9s ease both 0.15s;
}

.card-material:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 46px rgba(60, 38, 19, 0.14);
}

.material-imagem {
  position: relative;
  width: 100%;
  aspect-ratio: 1.38 / 1;
  overflow: hidden;
  border: 3px solid #32a5ff;
  border-radius: 1.4rem;
  background: #dceefb;
}

.material-imagem::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.02));
  pointer-events: none;
}

.material-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  object-position: 70% 5%;
}

.card-material:hover .material-imagem img {
  transform: scale(1.035);
}

.material-conteudo {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.material-conteudo h3 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  line-height: 1.3;
  font-weight: 700;
  color: #23201f;
}

.material-conteudo p {
  font-family: "Nunito", sans-serif;
  font-size: 0.96rem;
  line-height: 1.62;
  font-weight: 600;
  color: #68605d;
}

.botao-material {
  position: relative;
  width: fit-content;
  min-height: 46px;
  padding: 0.78rem 1.2rem 0.78rem 1rem;
  border-radius: 999px;
  background: #dde4df;
  color: #2e3530;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(48, 58, 50, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.botao-material::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: translateX(-150%);
  transition: transform 0.7s ease;
}

.botao-material:hover {
  transform: translateY(-3px);
  background: #d5ddd7;
  box-shadow: 0 14px 28px rgba(48, 58, 50, 0.12);
}

.botao-material:hover::after {
  transform: translateX(150%);
}

.botao-material span {
  position: relative;
  z-index: 1;
}

.botao-material-icone {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.botao-material-icone svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .Section-materiais {
    padding: 4.2rem 0.95rem 4.4rem;
  }

  .Container-materiais {
    gap: 2.2rem;
  }

  .materiais-topo h2 {
    font-size: clamp(1.9rem, 7vw, 2.7rem);
  }

  .materiais-topo p {
    max-width: 96%;
    font-size: 0.98rem;
  }

  .card-material {
    width: min(100%, 360px);
  }
}

@media (max-width: 560px) {
  .Section-materiais {
    padding: 3.6rem 0.85rem 3.8rem;
  }

  .Container-materiais {
    gap: 1.8rem;
  }

  .materiais-topo {
    gap: 0.5rem;
  }

  .materiais-kicker {
    font-size: 0.84rem;
  }

  .materiais-topo h2 {
    font-size: clamp(1.7rem, 9vw, 2.3rem);
    line-height: 1.14;
  }

  .materiais-topo p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .card-material {
    width: 100%;
    max-width: 340px;
    border-radius: 1.2rem;
  }

  .material-imagem {
    border-width: 2.5px;
    border-radius: 1.15rem;
  }

  .material-conteudo {
    padding: 0.9rem 0.9rem 1rem;
    gap: 0.82rem;
  }

  .material-conteudo h3 {
    font-size: 1.12rem;
  }

  .material-conteudo p {
    font-size: 0.88rem;
    line-height: 1.56;
  }

  .botao-material {
    min-height: 43px;
    padding: 0.72rem 1rem 0.72rem 0.92rem;
    font-size: 0.82rem;
  }
}

.Section-Footer {
    width: 100%;
    background: #b89a7f;
    padding: clamp(2.2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
    overflow: hidden;
}

.Container-Footer {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 330px) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

.Footer-left {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
}

.Footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.Footer-brand-copy {
    flex: 1;
    min-width: 250px;
}

.Footer-brand-copy h3 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.1rem, 1.8vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ffffff;
    line-height: 1.12;
}

.Footer-brand-copy span {
    display: block;
    margin-top: 0.28rem;
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    line-height: 1.4;
    color: #f7efe8;
}

.Footer-logo-box {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 28px rgba(84, 54, 30, 0.14);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.Footer-logo-box:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 34px rgba(84, 54, 30, 0.2);
}

.Footer-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.2rem;
}

.Footer-description {
    margin: 0;
    max-width: 70vw;
    font-family: "Poppins", sans-serif;
    font-size: 0.9rem;
    line-height: 1.72;
    color: #fffaf6;
}

.Footer-crn {
    width: fit-content;
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: #eef5ee;
    font-family: "Poppins", sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: #44514a;
    box-shadow: 0 12px 24px rgba(72, 50, 31, 0.08);
}

.Footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 0.35rem;
}

.Footer-contacts h4 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
}

.Footer-contact-card {
    width: fit-content;
    min-width: 220px;
    max-width: 100%;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(72, 50, 31, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.Footer-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 34px rgba(72, 50, 31, 0.16);
    background: #fbfffb;
}

.Footer-contact-card span:last-child {
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.35;
    color: #4a4a4a;
}

.Footer-contact-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.Footer-contact-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.instagram-card .Footer-contact-icon {
    color: #ff4f8f;
}

.whatsapp-card .Footer-contact-icon {
    color: #1db954;
}

.Footer-right {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.45rem;
}

.Footer-heading {
    max-width: 850px;
}

.Footer-heading h2 {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.18;
    color: #ffffff;
}

.Footer-heading h2 span {
    color: #9df4c7;
}

.Footer-heading p {
    margin: 0.8rem 0 0;
    max-width: 850px;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.2rem, 1.2vw, 1.2rem);
    line-height: 1.8;
    letter-spacing: 10%;
    color: #f7efe8;
}

.Footer-location-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
}

.Footer-location-box {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #e7f1ea;
    box-shadow: 0 14px 28px rgba(72, 50, 31, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.Footer-location-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(72, 50, 31, 0.18);
}

.Footer-location-box svg {
    width: 30px;
    height: 30px;
    fill: #4b5a52;
}

.Footer-address {
    min-width: 0;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1.05rem, 1.45vw, 1.5rem);
    letter-spacing: 0.02em;
    line-height: 1.45;
    color: #fff8f2;
    transition: color 0.3s ease;
}

.Footer-address:hover {
    color: #d9ffe9;
}

.Footer-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.95rem;
    padding: 1rem 1.35rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #48a56a, #5fb97d);
    text-decoration: none;
    box-shadow: 0 18px 30px rgba(43, 122, 71, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}

.Footer-cta:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 22px 38px rgba(43, 122, 71, 0.35);
    filter: brightness(1.04);
}

.Footer-cta span:first-child {
    font-family: "Poppins", sans-serif;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: #ffffff;
    white-space: nowrap;
}

.Footer-cta-icon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
}

.Footer-cta-icon svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

.Footer-map-card {
    position: relative;
    width: 100%;
    min-height: 340px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 22px 42px rgba(72, 50, 31, 0.16);
    isolation: isolate;
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.Footer-map-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(72, 50, 31, 0.22);
}

.Footer-map {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border: none;
    display: block;
    filter: saturate(0.92) contrast(1.02);
    transition: transform 0.7s ease;
}

.Footer-map-card:hover .Footer-map {
    transform: scale(1.02);
}

.Footer-map-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    cursor: pointer;
    background: transparent;
}

@keyframes footerReveal {
    from {
        opacity: 0;
        transform: translateY(32px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.reveal-footer {
    opacity: 1;
    transform: none;
    filter: none;
    animation: footerReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.delay-1 { animation-delay: 0.05s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }
.delay-4 { animation-delay: 0.34s; }

@media (max-width: 1080px) {
    .Container-Footer {
        grid-template-columns: 1fr;
        gap: 2.4rem;
    }

    .Footer-description {
        max-width: 100%;
    }

    .Footer-heading p {
        max-width: 100%;
    }
}

@media (max-width: 820px) {
    .Section-Footer {
        padding: 2rem 1rem 2.2rem;
    }

    .Container-Footer {
        gap: 2.15rem;
    }

    .Footer-location-row {
        grid-template-columns: 64px minmax(0, 1fr);
        grid-template-areas:
            "icon address"
            "cta cta";
        align-items: center;
        row-gap: 1rem;
    }

    .Footer-location-box {
        grid-area: icon;
    }

    .Footer-address {
        grid-area: address;
    }

    .Footer-cta {
        grid-area: cta;
        justify-self: start;
        width: fit-content;
    }

    .Footer-map-card,
    .Footer-map {
        min-height: 300px;
    }
}

@media (max-width: 560px) {
    .Section-Footer {
        padding: 1.6rem 1rem 0.95rem;
    }

    .Container-Footer {
        gap: 2rem;
    }

    .Footer-left {
        gap: 1.15rem;
    }

    .Footer-brand {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .Footer-brand-copy h3 {
        font-size: clamp(1.05rem, 6vw, 1.55rem);
        line-height: 1.14;
    }

    .Footer-brand-copy span {
        font-size: 0.95rem;
    }

    .Footer-logo-box {
        width: 72px;
        height: 72px;
    }

    .Footer-description {
        font-size: 0.99rem;
        line-height: 1.68;
    }

    .Footer-crn {
        padding: 0.64rem 0.9rem;
        font-size: 0.84rem;
    }

    .Footer-contacts h4 {
        font-size: 1rem;
    }

    .Footer-contact-card {
        width: 70%;
        min-width: 0;
        padding: 0.78rem 0.95rem;
        justify-content: flex-start;
    }

    .Footer-contact-card span:last-child {
        font-size: 0.94rem;
    }

    .Footer-heading h2 {
        font-size: clamp(1.2rem, 9vw, 2rem);
        line-height: 1.1;
        letter-spacing: 0.01em;
    }

    .Footer-heading h2 span {
        display: block;
    }

    .Footer-heading p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .Footer-location-row {
        grid-template-columns: 52px minmax(0, 1fr);
        column-gap: 0.85rem;
        row-gap: 1rem;
    }

    .Footer-location-box {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        box-shadow: none;
    }

    .Footer-location-box svg {
        width: 24px;
        height: 24px;
        fill: #ffffff;
    }

    .Footer-address {
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0;
    }

    .Footer-cta {
        width: 100%;
        max-width: 260px;
        min-height: 58px;
        padding: 0.84rem 0.95rem 0.84rem 1.15rem;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .Footer-cta span:first-child {
        font-size: 0.92rem;
        letter-spacing: 0.01em;
    }

    .Footer-cta-icon {
        width: 34px;
        height: 34px;
        min-width: 34px;
    }

    .Footer-cta-icon svg {
        width: 17px;
        height: 17px;
    }

    .Footer-map-card,
    .Footer-map {
        min-height: 230px;
        border-radius: 22px;
    }
}

@media (max-width: 400px) {
    .Footer-cta {
        max-width: 100%;
    }

    .Footer-brand-copy h3 {
        font-size: 1rem;
    }

    .Footer-brand-copy span {
        font-size: 0.88rem;
    }

    .Footer-logo-box {
        width: 64px;
        height: 64px;
    }

    .Footer-description,
    .Footer-heading p,
    .Footer-address {
        font-size: 0.94rem;
    }

    .Footer-map-card,
    .Footer-map {
        min-height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-footer,
    .Footer-logo-box,
    .Footer-contact-card,
    .Footer-location-box,
    .Footer-cta,
    .Footer-map-card,
    .Footer-map {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        filter: none !important;
    }
}


@media (max-width: 768px) {

    .about-mini-title img {
        width: 32px;
        height: 32px;
        padding: 0.14rem;
        object-fit: cover;
    }


    .btn-acompanhamento-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .btn-acompanhamento-icon img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }


    .icone-botao-cta {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .icone-botao-cta img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {

    .about-mini-title img {
        width: 30px;
        height: 30px;
        padding: 0;
    }


    .btn-acompanhamento-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .btn-acompanhamento-icon img {
        width: 42px;
        height: 42px;
    }


    .icone-botao-cta {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .icone-botao-cta img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 360px) {

    .Footer-heading h2 {
        font-size: 8vw;
    }
}


