/* RESET & BASE */
.pp-wrap {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    line-height: 1.5;
    overflow-x: hidden;

    /* Quebra o container restritivo do tema para forçar 100vw */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.pp-wrap * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.pp-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.pp-hero {
    position: relative;
    width: 100%;
    background-color: #928f8d;
    /* Cor de fundo aproximada do design */
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.pp-hero-container {
    width: 100%;
    max-width: 1440px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px 0 40px;
}

.pp-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding-right: 40px;
    z-index: 2;
}

.pp-hero-text h1 {
    color: #fff;
    font-size: 70px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 40px;
    text-transform: lowercase;
}

.pp-hero-btn {
    display: inline-block;
    padding: 16px 32px;
    border: 3px solid #BAC100;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pp-hero-btn:hover {
    background: #BAC100;
    color: #000;
    transform: translateY(3px);
}

.pp-hero-img-col {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-left: 20px;
}

.pp-hero-img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 850px;
    object-position: bottom;
}

/* ─── SECTION 1 (ACADEMY) ────────────────────────────────────────── */
.pp-section-academy {
    padding: 120px 0;
    background: #fff;
    width: 100%;
}

.pp-academy-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.pp-academy-left {
    flex: 1;
}

.pp-academy-left h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    z-index: 5;
}

.pp-cursive {
    font-family: 'La Belle Aurore', cursive;
    font-size: 64px;
    font-weight: 400;
    transform: translateY(2px);
}

.pp-academy-desc {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.pp-academy-highlight {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    letter-spacing: -0.5px;
}

.pp-academy-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.pp-yellow-box {
    width: 100%;
    aspect-ratio: 16/9;
}

/* ─── SECTION 2 (RESULTS) ────────────────────────────────────────── */
.pp-section-results {
    padding: 0;
    background: #fff;
    width: 100%;
}

.pp-results-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

.pp-results-left {
    flex: 0 0 38%;
}

.pp-results-left h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 35px;
    color: #000;
}

.pp-results-left p {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 45px;
}

.pp-results-btn {
    display: inline-block;
    padding: 20px 40px;
    background: #BAC100;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
}

.pp-results-btn:hover {
    background: #BAC100;
    transform: translateY(3px);
}

.pp-results-right {
    flex: 1;
}

.pp-box-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-box {
    border: 3px solid #BAC100;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    aspect-ratio: 1;
    background: #fff;
    transition: transform 0.3s ease;
}

.pp-box:hover {
    transform: translateY(-5px);
}

.pp-box strong {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    font-weight: 700;
}

/* ─── SECTION 3 (METHOD) ─────────────────────────────────────────── */
.pp-section-method {
    padding: 0;
    background: #fff;
    width: 100%;
}

.pp-method-header {
    text-align: left;
    margin-bottom: 60px;
}

.pp-method-header h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1.5px;
    color: #000;
    margin-bottom: 10px;
    line-height: 1;
}

.pp-method-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 5px;
    letter-spacing: -0.5px;
}

.pp-method-header p {
    font-size: 18px;
    color: #000;
}

.pp-method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pp-method-card {
    border: 3px solid #BAC100;
    border-radius: 24px;
    padding: 40px 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.pp-method-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
}

.pp-card-subtitle {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
    margin-bottom: 30px;
}

.pp-method-card p:not(.pp-card-subtitle) {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
}

.pp-method-footer {
    text-align: center;
}

.pp-method-btn {
    display: inline-block;
    padding: 20px 60px;
    background: #BAC100;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pp-method-btn:hover {
    background: #BAC100;
    transform: translateY(3px);
    /* Efeito SINK do CTA */
}

/* ─── SECTION 3.5 (MOVIMENTO) ───────────────────────────────────── */
.pp-section-movimento {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.pp-movimento-header {
    margin-bottom: 50px;
}

.pp-movimento-pretitle {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.pp-movimento-logo {
    height: 1.7em;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.pp-movimento-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-movimento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.pp-movimento-card {
    background: linear-gradient(135deg, #cf016b, #860045);
    color: #fff;
    padding: 30px 35px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-radius: 4px;
    transition: transform 0.25s ease;
}

.pp-movimento-card:hover {
    transform: translateY(-4px);
}

.pp-movimento-num {
    font-size: 28px;
    font-weight: 800;
    display: inline-flex;
    align-items: baseline;
    flex-shrink: 0;
    line-height: 1;
}

.pp-movimento-num .pp-square-dot {
    background-color: #fff;
}

.pp-movimento-card-body {
    flex: 1;
}

.pp-movimento-card-body h4 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.pp-movimento-card-body p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    opacity: 0.9;
}

.pp-movimento-footer {
    text-align: center;
}

.pp-movimento-btn {
    display: inline-block;
    padding: 20px 80px;
    background: #BAC100;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pp-movimento-btn:hover {
    background: #a5ab00;
    transform: translateY(3px);
}

/* ─── SECTION 4 (ECOSSISTEMA) ────────────────────────────────────── */
.pp-section-eco {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.pp-eco-header {
    text-align: left;
    margin-bottom: 60px;
}

.pp-eco-header h2 {
    font-size: 46px;
    font-weight: 700;
    letter-spacing: -2px;
    color: #000;
    margin-bottom: 15px;
    line-height: 1;
}

.pp-eco-header p {
    font-size: 18px;
    color: #000;
}

.pp-eco-grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: column;
    gap: 20px;
    margin-bottom: 60px;
}

.pp-eco-card {
    background: linear-gradient(135deg, #cf016b, #860045);
    /* Gradient Magenta */
    color: #fff;
    padding: 30px 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}

.pp-eco-num {
    font-size: 24px;
    font-weight: 700;
    display: inline-flex;
    align-items: baseline;
    margin-right: 8px;
}

.pp-square-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #fff;
    margin-left: 2px;
}

.pp-eco-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.pp-eco-text p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    margin-left: 28px;

}

.pp-eco-footer {
    text-align: center;
}

.pp-eco-btn {
    display: inline-block;
    padding: 20px 60px;
    background: #BAC100;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pp-eco-btn:hover {
    background: #BAC100;
    transform: translateY(3px);
    /* SINK */
}

/* ─── SECTION 5 (JORNADA) ────────────────────────────────────────── */
.pp-section-jornada {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.pp-jornada-grid {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.pp-jornada-left {
    flex: 0 0 20%;
    display: flex;
    flex-direction: column;
}

.pp-jornada-img {
    width: 300px;
    height: auto;
    object-fit: cover;
}

.pp-jornada-left h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #000;
    margin-bottom: 20px;
}

.pp-jornada-left p {
    font-size: 18px;
    line-height: 1.4;
    color: #000;
}

.pp-jornada-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pp-jornada-right h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #000;
    margin-bottom: 30px;
}

.pp-jornada-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pp-jornada-card {
    background: linear-gradient(135deg, #cf016b, #860045);
    border-radius: 20px;
    padding: 40px 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.pp-jornada-card .pp-eco-num {
    font-size: 48px;
    margin-bottom: 20px;
}

.pp-jornada-card-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.pp-jornada-card-header .pp-eco-num {
    margin-bottom: 10px;
}

.pp-jornada-card h4 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.3;
}

.pp-jornada-card p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
}

/* ─── SECTION 6 (FORÇA DE VENDAS) ────────────────────────────────── */
.pp-section-forcavendas {
    width: 100%;
    position: relative;
    background: #fff;
}

.pp-fv-magenta-bg {
    background: linear-gradient(135deg, #cf016b, #860045);
    width: 100%;
    padding: 80px 0;
}

.pp-fv-magenta-container {
    display: flex;
    align-items: center;
    position: relative;
}

.pp-fv-left {
    width: 55%;
    color: #fff;
    padding-right: 40px;
}

.pp-fv-logo-img {
    max-width: 280px;
    height: auto;
    margin-bottom: 25px;
    display: block;
}

.pp-fv-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.pp-fv-left p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 500;
}

.pp-fv-btn-outline {
    display: inline-block;
    padding: 16px 66px;
    border: 2px solid #BAC100;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.pp-fv-btn-outline:hover {
    background: #BAC100;
    transform: translateY(3px);
}

.pp-fv-right {
    width: 45%;
    position: relative;
    display: flex;
    justify-content: center;
}

.pp-fv-phone {
    position: absolute;
    top: -65px;
    transform: translateY(-48%);
    max-width: 580px;
    height: 1050px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    z-index: 2;
}

.pp-fv-phone-mobile {
    display: none;
}

.pp-fv-bottom {
    padding: 180px 0 100px 0;
    background: #fff;
}

.pp-fv-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pp-fv-bottom-left {
    width: 65%;
    padding-right: 240px;
}

.pp-fv-bottom h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-fv-bottom-left p {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
}

.pp-fv-bottom-right {
    width: 35%;
    display: flex;
    align-items: left;
}

.pp-fv-btn-solid {
    display: inline-block;
    padding: 20px 40px;
    background: #BAC100;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.pp-fv-btn-solid:hover {
    background: #BAC100;
    transform: translateY(3px);
}

/* ─── SECTION 7 (EXPERIÊNCIA) ────────────────────────────────────── */
.pp-section-experiencia {
    background: #fff;
    width: 100%;
}

.pp-experiencia-top {
    display: flex;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 20px;
}

.pp-experiencia-img-col {
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
}

.pp-experiencia-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: -20px;
}

.pp-experiencia-text-col {
    flex: 1;
    padding-bottom: 40px;
}

.pp-experiencia-text-col h2 {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-experiencia-text-col p {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 25px;
}

.pp-experiencia-cards {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    margin-left: 75px;
}

.pp-experiencia-cards::-webkit-scrollbar {
    height: 6px;
}

.pp-experiencia-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pp-experiencia-cards::-webkit-scrollbar-thumb {
    background: #BAC100;
    border-radius: 10px;
}

.pp-exp-card {
    border: 3px solid #BAC100;
    border-radius: 20px;
    padding: 40px 30px;
    background: #fff;
    position: relative;
    z-index: 2;
    flex: 1;
    min-height: 390px;
    scroll-snap-align: center;
}

.pp-exp-card h4 {
    font-size: 18px;
    font-weight: 800;
    color: #000;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pp-exp-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pp-exp-card ul li {
    font-size: 14px;
    line-height: 1;
    color: #000;
    margin-bottom: 15px;
    position: relative;
}

.pp-carousel-nav {
    display: none;
    text-align: center;
    margin-top: 20px;
}

.pp-carousel-nav button {
    background: transparent;
    border: 2px solid #BAC100;
    color: #BAC100;
    font-size: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pp-carousel-nav button:hover {
    background: #BAC100;
    color: #fff;
    transform: scale(1.05);
}

/* ─── SECTION 8 (CONFIANÇA) ──────────────────────────────────────── */
.pp-section-confianca {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.pp-confianca-header {
    text-align: left;
    margin-bottom: 50px;
}

.pp-confianca-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-confianca-header p {
    font-size: 18px;
    color: #000;
}

.pp-confianca-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 60px;
    max-width: 700px;
}

.pp-logo-item {
    width: calc(15% - 24px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.pp-logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* Inner track para marquee mobile */
.pp-logos-inner {
    display: contents;
    /* transparente no desktop */
}

.pp-logo-clone {
    display: none;
    /* oculto no desktop */
}

.pp-confianca-footer {
    text-align: center;
}

.pp-confianca-btn {
    display: inline-block;
    width: 100%;
    max-width: 800px;
    padding: 20px 40px;
    background: #BAC100;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.pp-confianca-btn:hover {
    background: #a5ab00;
    transform: translateY(3px);
}

/* ─── SECTION 9 (HISTÓRIAS) ──────────────────────────────────────── */
.pp-section-historias {
    padding: 0;
    background: #fff;
    width: 100%;
}

.pp-historias-header {
    margin-bottom: 50px;
    text-align: left;
}

.pp-historias-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-historias-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.pp-historias-cards::-webkit-scrollbar {
    height: 6px;
}

.pp-historias-cards::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pp-historias-cards::-webkit-scrollbar-thumb {
    background: #BAC100;
    border-radius: 10px;
}

.pp-historia-card {
    border-radius: 20px;
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex: 0 0 320px;
    scroll-snap-align: center;
}

.pp-historia-video {
    flex: 1;
    display: flex;
    aspect-ratio: 9 / 16;
    border-radius: 20px;
    overflow: hidden;
}

.pp-historia-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.pp-historia-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin: 10px 0 0 0;
    line-height: 1.4;
    text-align: left;
}

.pp-historia-title span {
    font-weight: 400;
}

/* ─── SECTION 10 (DEPOIMENTOS) ───────────────────────────────────── */
.pp-section-depoimentos {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.pp-depoimentos-header {
    margin-bottom: 50px;
    text-align: left;
}

.pp-depoimentos-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: #000;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-depoimentos-grid {
    display: flex;
    gap: 40px;
}

.pp-depoimentos-col {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pp-depoimentos-col:first-child {
    width: 50%;
}

.pp-depoimentos-col:last-child {
    width: calc(35% - 140px);
}

.pp-depoimento-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ─── SECTION 11 (FINAL) ─────────────────────────────────────────── */
.pp-section-final {
    padding: 100px 0;
    background: #fff;
    width: 100%;
}

.pp-final-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.pp-final-left {
    flex: 0 0 55%;
}

.pp-final-left h2 {
    font-size: 38px;
    font-weight: 600;
    color: #000;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.pp-final-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 25px;
}

.pp-final-btn {
    display: inline-block;
    padding: 20px 40px;
    background: #BAC100;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
    margin-top: 10px;
}

.pp-final-btn:hover {
    background: #a5ab00;
    transform: translateY(3px);
}

.pp-final-right {
    flex: 1;
}

.pp-final-right h2 {
    font-size: 54px;
    font-weight: 700;
    color: #cf016b;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* ─── RESPONSIVO ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .pp-hero-container {
        flex-direction: column;
        padding-top: 60px;
    }

    .pp-hero-text {
        text-align: center;
        align-items: center;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .pp-hero-text h1 {
        font-size: 60px;
    }

    .pp-hero-img-col {
        padding-left: 0;
        justify-content: center;
    }

    .pp-academy-grid {
        flex-direction: column;
        gap: 60px;
    }

    .pp-academy-left h2 {
        font-size: 36px;
        justify-content: center;
        text-align: center;
    }

    .pp-academy-desc,
    .pp-academy-highlight {
        text-align: center;
    }

    .pp-academy-right {
        justify-content: center;
        width: 100%;
    }

    .pp-results-grid {
        flex-direction: column;
    }

    .pp-box-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pp-method-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pp-eco-grid {
        grid-template-rows: auto;
        grid-auto-flow: row;
        grid-template-columns: 1fr;
    }

    .pp-jornada-grid {
        flex-direction: column;
    }

    .pp-fv-magenta-container {
        flex-direction: column;
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .pp-fv-left {
        width: 100%;
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .pp-fv-right {
        width: 100%;
    }

    .pp-fv-phone {
        position: relative;
        top: auto;
        transform: none;
        max-width: 280px;
        margin-top: 20px;
    }

    .pp-fv-bottom-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .pp-fv-bottom-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 40px;
    }

    .pp-fv-bottom-right {
        width: 100%;
        justify-content: center;
    }

    .pp-experiencia-top {
        flex-direction: column;
        align-items: center;
    }

    .pp-experiencia-img-col {
        width: 100%;
        margin-bottom: 40px;
    }

    .pp-experiencia-text-col {
        padding-bottom: 0;
        text-align: center;
    }

    .pp-experiencia-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .pp-logo-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {

    .pp-fv-bottom-left p {
        font-size: 16px;
    }

    /* Logos: carrossel vitrine com marquee CSS */
    .pp-confianca-logos {
        overflow: hidden;
        flex-wrap: nowrap;
        max-width: 100%;
        margin-bottom: 30px;
        gap: 0;
        padding-bottom: 0;
    }

    .pp-logos-inner {
        display: flex;
        gap: 20px;
        width: max-content;
        animation: pp-logo-marquee 22s linear infinite;
        will-change: transform;
    }

    .pp-logos-inner:hover {
        animation-play-state: paused;
    }

    .pp-logo-clone {
        display: flex;
        /* visível no mobile */
    }

    @keyframes pp-logo-marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    .pp-logo-item {
        flex: 0 0 90px;
        width: 90px !important;
    }

    .pp-logo-item img {
        max-width: 70px;
    }

    .pp-exp-card ul li {
        font-size: 14px;
    }

    .pp-hero-btn {
        padding: 7px 4px;
        font-size: 10px;
    }

    .pp-section-academy {
        padding: 0px;
    }

    .pp-hero-container {
        padding: 80px 30px 0 30px;
        flex-direction: row;
        align-items: flex-end;
        overflow: hidden;
        position: relative;
    }

    .pp-hero-text {
        text-align: left;
        align-items: flex-start;
        flex: 1;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }

    .pp-hero-text h1 {
        font-size: 36px;
        text-align: right;
    }

    .pp-hero-img-col {
        position: absolute;
        right: 0;
        bottom: 0;
        width: 65%;
        margin-right: 0;
        z-index: 1;
        pointer-events: none;
    }

    .pp-hero-img {
        width: 100%;
        max-width: none;
        display: block;
    }

    .pp-box-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        margin: 0;
    }

    .pp-method-cards {
        grid-template-columns: 1fr;
    }

    .pp-method-header h2 {
        font-size: 22px;
    }

    .pp-method-header h3 {
        font-size: 18px;
    }

    .pp-method-header p {
        font-size: 16px;
    }

    .pp-method-card h4 {
        font-size: 18px;
        margin-bottom: 0px;

    }

    .pp-method-card h4 br {
        display: none;
    }

    .pp-eco-header h2 {
        font-size: 22px;
    }

    .pp-eco-header h2 br {
        display: none;
    }

    .pp-eco-header p {
        font-size: 18px;
    }

    .pp-eco-text h4 {
        font-size: 17px;
    }

    .pp-eco-text p {
        font-size: 14px;
        margin-left: 28px;
    }

    .pp-fv-logo-img {
        max-width: 200px;
    }

    .pp-section-forcavendas .pp-fv-magenta-bg {
        padding: 30px 0;
    }

    .pp-fv-left h2 br,
    .pp-fv-left p br {
        display: none;
    }

    .pp-fv-left h2 {
        font-size: 22px;
    }

    .pp-fv-left {
        text-align: left;
    }

    .pp-fv-right {
        /* display: none; */
    }

    .pp-fv-phone {
        position: relative;
        top: auto;
        transform: none;
        max-width: 460px;
        margin-top: 20px;
        max-height: 580px;
    }

    .pp-fv-phone-mobile {
        display: block;
        margin: 20px auto 30px auto;
    }

    .pp-fv-phone-desktop {
        display: none;
    }

    .pp-fv-bottom {
        padding: 30px 0;
    }

    .pp-fv-bottom h2 {
        font-size: 22px;
    }

    .pp-fv-bottom-container {
        text-align: left;
    }

    .pp-fv-bottom-right {
        display: none;
    }

    .pp-experiencia-img-col {
        margin: 0 !important;
    }


    .pp-section-eco {
        padding: 30px 0;
    }

    .pp-experiencia-top {
        gap: 30px;

    }

    .pp-experiencia-text-col h2 {
        font-size: 22px;
        text-align: left;
    }

    .pp-confianca-header h2 {
        font-size: 22px;
    }

    .pp-confianca-header p {
        font-size: 16px;
    }

    .pp-experiencia-text-col p {
        font-size: 16px;
        text-align: left;
    }

    .pp-experiencia-text-col p br {
        display: none;
    }

    .pp-experiencia-top {
        gap: 30px;
    }


    .pp-eco-card {
        padding: 30px 30px;
        gap: 15px;
    }

    .pp-jornada-cards {
        grid-template-columns: 1fr;
    }

    .pp-jornada-left h2 {
        font-size: 32px;
    }

    .pp-experiencia-cards {
        margin-left: 0;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 10px;
    }

    .pp-exp-card {
        padding: 25px 20px;
        flex: 0 0 260px;
    }

    .pp-exp-card h4 {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .pp-exp-card ul li {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .pp-exp-card ul li br {
        display: none;
    }

    .pp-carousel-nav.pp-exp-nav {
        display: block;
    }

    .pp-logo-item {
        width: calc(50% - 15px);
    }

    .pp-confianca-btn {
        font-size: 10px;
        padding: 20px;
    }

    .pp-section-depoimentos,
    .pp-section-confianca,
    .pp-section-historias {
        padding: 30px 0;

    }

    .pp-depoimentos-header h2,
    .pp-historias-header h2,
    .pp-final-left h2 {
        font-size: 22px;
    }

    .pp-depoimentos-header h2 br,
    .pp-final-left h2 br {
        display: none;
    }

    .pp-final-left p {
        font-size: 16px;

    }

    .pp-final-left {
        text-align: left !important;
    }

    .pp-historias-header {
        margin-bottom: 20px;
    }



    .pp-depoimentos-grid {
        flex-direction: column;
        gap: 20px;
    }

    .pp-depoimentos-col {
        gap: 20px;
    }

    .pp-depoimentos-col:first-child {
        width: 100%;
    }

    .pp-depoimentos-col:last-child {
        width: 100%;
    }

    .pp-final-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .pp-final-left {
        display: contents;
    }

    .pp-final-left h2 {
        order: 1;
        width: 100%;
    }

    .pp-final-left p {
        order: 3;
        width: 100%;
    }

    .pp-final-right {
        order: 2;
        width: 100%;
        text-align: center !important;
        margin: 20px 0;
    }

    .pp-final-right h2 {
        font-size: 22px;
        text-align: center;
    }

    .pp-final-btn {
        order: 4;
        width: fit-content;
    }

    .pp-container {
        padding: 0 3%;
    }

    .pp-academy-desc {
        font-size: 16px;
        text-align: left;
    }

    .pp-academy-highlight {
        text-align: left;
    }

    .pp-academy-left h2 {
        font-size: 22px;
        text-align: left;
        justify-content: start;
        margin-top: 20px;
    }

    .pp-method-btn {
        display: inline-block;
        padding: 20px 40px;
    }

    .pp-section-final {
        padding: 30px 0;
    }

    .pp-cursive {
        font-size: 54px;
    }

    .pp-section-results {
        padding: 30px 0;
    }

    .pp-results-left h2 {
        font-size: 22px;
    }

    .pp-results-left p {
        font-size: 16px;
    }

    .pp-box {
        height: 165px;
        padding: 15px;
    }

    .pp-jornada-left {
        display: none;
    }

    .pp-method-card p:not(.pp-card-subtitle) {
        font-size: 14px;
    }

    .pp-box strong {
        font-size: 16px;
        line-height: 1.3;
        color: #000;
        font-weight: 600;
    }

    .pp-section-jornada {
        padding: 30px 0;
    }

    .pp-jornada-left p {
        font-size: 16px;
        margin-top: 20px;
    }

    .pp-jornada-right h2 {
        font-size: 22px;
    }

    .pp-jornada-right h2 br {
        display: none;
    }

    .pp-jornada-card {
        min-height: 220px;
        flex-direction: column;
    }

    .pp-jornada-card .pp-eco-num {
        font-size: 28px;
        margin-bottom: 0;
        align-self: flex-start;
        flex-shrink: 0;
    }

    .pp-jornada-card-header {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

    .pp-jornada-card-header .pp-eco-num {
        margin-bottom: 0;
    }

    .pp-jornada-card h4 {
        margin-bottom: 0;
    }

    .pp-section-method {
        padding: 20px 0;
    }

    /* Movimento mobile */
    .pp-section-movimento {
        padding: 60px 0;
    }

    .pp-movimento-header h2 {
        font-size: 28px;
        letter-spacing: -1px;
    }

    .pp-movimento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pp-movimento-btn {
        padding: 18px 40px;
        width: 100%;
        text-align: center;
    }

}