@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

.fv-wrap {
    font-family: 'Inter', sans-serif;
    color: #000;
    background: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

.fv-wrap * {
    box-sizing: border-box;
}

.fv-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.fv-logo-vendas {
    height: 130px;
    object-fit: contain;
}

.fv-logo-cdl {
    height: 50px;
    object-fit: contain;
}

.fv-hero {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.fv-hero-video {
    flex: 0 0 500px;
    width: 500px;
    height: 330px;
    border-radius: 4px;
    overflow: hidden;
}

.fv-hero-video-wrapper {
    width: 100%;
    height: 100%;
}

.fv-hero-video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.fv-hero-content {
    flex: 1;
}

.fv-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.fv-hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    line-height: 1.6;
    color: #333;
}

.fv-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 2px solid #fce268;
    background: #fff;
    color: #000;
    font-weight: 800;
    text-transform: lowercase;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.fv-btn:hover {
    background: #fce268;
}

.fv-dificuldade {
    margin-bottom: 100px;
}

.fv-dificuldade h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
}

.fv-dificuldade ul {
    list-style: none;
    padding: 0;
}

.fv-dificuldade li {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fv-x {
    color: #ef4444;
    /* Red X */
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.fv-oq-e {
    margin-bottom: 100px;
}

.fv-oq-e h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.fv-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: #333;
}

.fv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fv-card {
    background: #facc15;
    border-radius: 24px;
    padding: 40px 15px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.fv-card-active {
    /* border: 3px solid #9333ea; */
}

.fv-icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.fv-card p {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.fv-pq-aderir {
    margin-bottom: 100px;
}

.fv-pq-aderir h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.fv-pq-grid {
    display: flex;
    gap: 60px;
}

.fv-pq-text {
    flex: 1;
    font-size: 20px;
    line-height: 1.6;
    color: #000;
}

.fv-pq-text p {
    margin-bottom: 30px;
}

.fv-pq-list {
    flex: 1;
}

.fv-pq-list ul {
    list-style: none;
    padding: 0;
}

.fv-pq-list li {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.fv-check {
    background: #84cc16;
    /* Green background */
    color: white;
    border-radius: 4px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
    flex-shrink: 0;
}

.fv-para-quem {
    margin-bottom: 80px;
}

.fv-para-quem h2 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
}

.fv-para-box {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.fv-para-box p {
    margin-bottom: 25px;
}

.fv-para-box p strong {
    color: #000;
}

@media (max-width: 900px) {
    .fv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fv-hero,
    .fv-pq-grid {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .fv-btn-red {
        font-size: 14px !important;
    }

    .fv-pvm-right h3 {
        font-size: 22px !important;
    }

    .fv-pvm-right li {
        font-size: 16px !important;
    }

    .fv-pvm-right ul {
        gap: 20px;

    }

    .fv-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .fv-logo-vendas {
        height: 100px;
        width: auto;
    }

    .fv-hero-video {
        flex: 0 0 auto;
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
        border: 2px solid #fff;
        border-radius: 4px;
        overflow: hidden;
        box-sizing: border-box;
    }

    .fv-hero-video-wrapper {
        width: 100%;
        height: 100%;
    }

    .fv-hero-video-wrapper iframe {
        width: 100%;
        height: 100%;
        display: block;
    }

    .fv-logo-cdl {
        height: 35px;
        width: auto;
    }

    .fv-grid {
        grid-template-columns: 1fr;
    }

    .fv-hero-content h1 {
        font-size: 18px;
    }

    .fv-dificuldade h2 {
        font-size: 18px;
    }

    .fv-hero-content p {
        font-size: 16px;
    }

    .fv-dificuldade li {
        font-size: 16px;
        margin: 0;
        padding-bottom: 5px;
        /* Adding a bit of padding to prevent them from sticking together since margin is 0 */
    }

    .fv-oq-e h2 {
        font-size: 18px;
    }

    .fv-subtitle {
        font-size: 16px;
    }

    .fv-pq-aderir h2 {
        font-size: 18px;
    }

    .fv-pq-text {
        font-size: 16px;
    }

    .fv-pq-text p {
        font-size: 16px;
    }

    .fv-pq-list li {
        font-size: 16px;
        margin: 0;
        padding-bottom: 10px;
    }

    .fv-para-quem h2 {
        font-size: 18px;
    }

    .fv-para-box p {
        font-size: 16px;
    }

    .fv-card {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        min-height: auto;
        padding: 2px 25px;
        border-radius: 50px;
        gap: 15px;
        text-align: left;
    }

    .fv-icon {
        margin-bottom: 0;
        font-size: 24px;
    }

    .fv-card p {
        font-size: 16px;
    }

    .fv-grid {
        gap: 10px;
    }

    .fv-planos {
        padding: 40px 0 20px 0;
    }

    .fv-planos h2 {
        font-size: 18px !important;
        margin-bottom: 30px;
    }

    .fv-sobre-box p {
        font-size: 15px !important;
    }

}

/* --- NOVA SEÇÃO: O QUE VOCÊ LEVA --- */
.fv-oq-leva {
    background-color: #facc15;
    padding: 80px 20px;
    color: #fff;

    /* Força 100% do viewport quebrando o limite do container pai */
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.fv-oq-leva-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.fv-leva-left {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fv-leva-left h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 40px;
    text-align: left;
    color: #fff;
    letter-spacing: -1px;
}

/* Phone Mockup */
.fv-phone-mockup {
    width: 280px;
    height: 580px;
    background-color: #111;
    border-radius: 40px;
    padding: 10px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.fv-phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background-color: #111;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    z-index: 10;
}

.fv-phone-screen {
    background-color: #fff;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    color: #000;
}

.fv-phone-top {
    padding: 40px 15px 15px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.fv-phone-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.fv-phone-logo-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    line-height: 1;
}

.fv-phone-center p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}

.fv-phone-bottom {
    padding: 15px;
    background-color: #fafafa;
}

.fv-phone-bubbles {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    white-space: nowrap;
}

.fv-phone-bubbles .bubble {
    background-color: #eee;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 10px;
    color: #333;
    font-weight: 600;
}

.fv-phone-input {
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 10px 15px;
    font-size: 11px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fv-phone-input .plus {
    background-color: #ccc;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.fv-phone-input .mic {
    margin-left: auto;
    font-size: 14px;
}

/* Right Side - Cards */
.fv-leva-right {
    flex: 1;
    padding-top: 15px;
}

.fv-agente-block {
    margin-bottom: 30px;
}

.fv-agente-logo-img {
    height: 50px;
    object-fit: contain;
    margin-bottom: 15px;
}

.fv-acelerador-cards {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.fv-agente-card {
    border: 2px solid #fff;
    border-radius: 20px;
    padding: 25px 30px;
    flex: 1;
}

.fv-border-purple {
    /* border-color: #9333ea;*/
}

.fv-agente-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.fv-agente-card p {
    font-size: 16px;
    line-height: 1.5;
}

.fv-simulador-wrapper {
    flex: 1.3;
    display: flex;
    flex-direction: column;
}

.fv-simulador-list {
    margin-top: 15px;
    padding-left: 0px;
}

.fv-simulador-list li {
    list-style: none;
    color: #000;
    font-size: 15px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.fv-vendasx-card {
    width: 100%;
}

.fv-vendasx-cols {
    display: flex;
    gap: 30px;
}

.fv-vendasx-col-left {
    flex: 1;
}

.fv-vendasx-col-right {
    flex: 1.2;
}

.fv-vendasx-col-right ul {
    list-style: none;
    padding: 0;
}

.fv-vendasx-col-right li {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.fv-cta-container {
    text-align: center;
    margin-top: 80px;
}

.fv-btn-red {
    display: inline-block;
    background-color: #fb3f4c;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    padding: 20px 60px;
    border-radius: 40px;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(251, 63, 76, 0.4);
}

.fv-btn-red:hover {
    background-color: #e5323e;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 63, 76, 0.6);
}

@media (max-width: 900px) {
    .fv-oq-leva-container {
        flex-direction: column;
        align-items: center;
    }

    .fv-leva-left {
        flex: 0 0 auto;
        margin-bottom: 40px;
    }

    .fv-acelerador-cards {
        flex-direction: column;
    }

    .fv-vendasx-cols {
        flex-direction: column;
    }
}

/* --- NOVA SEÇÃO: POR QUE VENDE MAIS --- */
.fv-pq-vende-mais {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: 'Inter', sans-serif;
}

.fv-pq-vende-mais h2 {
    font-size: 32px;
    font-weight: 800;
    text-align: left;
    margin-bottom: 40px;
    letter-spacing: -1px;
    color: #000;
}

.fv-pvm-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.fv-pvm-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fv-pvm-card {
    display: flex;
    align-items: center;
    padding: 20px 30px;
    border: 2px solid #facc15;
    border-radius: 30px;
    background-color: #fff;
    gap: 20px;
}

.fv-pvm-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.fv-pvm-text h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
    color: #000;
}

.fv-pvm-text p {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin: 0;
}

.fv-pvm-right {
    background-color: #facc15;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fv-pvm-right h3 {
    font-size: 26px;
    font-weight: 800;
    color: #000;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.fv-pvm-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fv-pvm-right li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.fv-pvm-right .fv-check {
    flex-shrink: 0;
    margin-top: 3px;
}

@media (max-width: 900px) {
    .fv-header {
        margin-bottom: 20px;
    }

    .fv-pvm-grid {
        grid-template-columns: 1fr;
    }

    .fv-pq-vende-mais h2 {
        font-size: 24px;
    }

    .fv-pvm-card {
        padding: 15px 20px;
    }

    .fv-pvm-right {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        padding: 40px 25px;
    }

    .fv-depoimentos {
        padding: 0 !important;
    }

    .fv-sobre-michelline {
        margin: 0 !important;
    }
}

/* --- NOVA SEÇÃO: PLANOS --- */
.fv-planos {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.fv-planos h2 {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.fv-planos-carousel {
    display: flex;
    gap: 30px;
    padding: 55px 40px 60px;
    /* Padding top para não cortar badges posicionadas acima do card */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fv-planos-carousel::-webkit-scrollbar {
    display: none;
}

.fv-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.fv-nav-prev,
.fv-nav-next {
    background: #facc15;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fv-nav-prev:hover,
.fv-nav-next:hover {
    background: #eab308;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.fv-plano-card {
    flex: 0 0 350px;
    scroll-snap-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.fv-plano-header {
    background: #facc15;
    color: #fff;
    font-weight: 800;
    padding: 12px 20px;
    font-size: 14px;
    border-radius: 0;
    text-transform: uppercase;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: left;
}

.fv-plano-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #fff;
    border: 3px solid #facc15;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.fv-plano-price-area {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
    color: #000;
    height: 170px;
}

.fv-de {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    font-weight: 600;
    text-align: left;
    margin-left: 54px;
}

.fv-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 5px;
}

.fv-parcelas {
    font-size: 20px;
    font-weight: 800;
    margin-top: 5px;
}

.fv-valor {
    font-size: 55px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.fv-valor small {
    font-size: 14px;
    vertical-align: top;
    letter-spacing: 0;
}

.fv-avista {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    text-align: right;
    margin-right: 92px;
}

.fv-por-membro {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.fv-membros-title {
    font-size: 18px;
    font-weight: 800;
}

.fv-img-badge-gold {
    position: absolute;
    top: -25px;
    right: -25px;
    width: 140px;
    height: auto;
    z-index: 10;
}

.fv-img-badge-gold[alt="22 Membros"] {
    width: 160px;
    top: -47px;
}

.fv-img-badge-desconto {
    position: absolute;
    top: 55px;
    right: 5px;
    width: 90px;
    height: auto;
    z-index: 10;
}

.fv-btn-comprar {
    display: block;
    background-color: #fb3f4c;
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 16px;
    transition: background 0.3s;
}

.fv-btn-comprar:hover {
    background-color: #e5323e;
    color: #fff;
}

.fv-plano-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
    flex: 1;
}

.fv-plano-features li {
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: #333;
    line-height: 1.4;
}

.fv-check-small {
    width: 16px !important;
    height: 16px !important;
    font-size: 10px !important;
    margin-top: 1px;
}

.fv-plano-footer {
    text-align: center;
}

.fv-btn-falar {
    display: inline-block;
    background-color: #facc15;
    color: #fff;
    text-align: center;
    padding: 15px 20px;
    border-radius: 30px;
    font-weight: 800;
    text-decoration: none;
    font-size: 13px;
    transition: background 0.3s;
    width: 100%;
}

.fv-btn-falar:hover {
    background-color: #eab308;
    color: #fff;
}

.fv-plano-exclusivo {}

.fv-plano-exclusivo .fv-plano-body {
    background-color: #facc15;
    border-radius: 20px;
    color: #000;
    justify-content: center;
    text-align: left;
}

.fv-exc-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #000;
}

.fv-exc-subtitle {
    font-size: 24px;
    margin-bottom: 5px;
    color: #fff;
}

.fv-exc-text {
    font-size: 16px;
    color: #fff;
    margin-bottom: 40px;
}

/* --- NOVA SEÇÃO: DEPOIMENTOS --- */
.fv-depoimentos {
    padding: 80px 0;
    background: #fff;
    color: #000;
}

.fv-dep-header {
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.fv-dep-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.fv-dep-header p {
    font-size: 18px;
    color: #666;
}

.fv-depoimentos-carousel {
    display: flex;
    gap: 30px;
    padding: 0 40px 40px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.fv-depoimentos-carousel::-webkit-scrollbar {
    display: none;
}

.fv-dep-card {
    flex: 0 0 260px;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
}

.fv-dep-box {
    background-color: #FFFFFF;
    width: 100%;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    transition: border 0.3s;
}

.fv-dep-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.fv-dep-box:hover .fv-play-btn {
    background-color: rgba(147, 51, 234, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.fv-play-btn::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 16px;
    border-color: transparent transparent transparent #fff;
    margin-left: 5px;
}

.fv-dep-placeholder {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

.fv-dep-nome {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.fv-btn-conhecer {
    display: inline-block;
    background-color: #fff;
    color: #000;
    border: 2px solid #fce268;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s;
    align-self: flex-start;
}

.fv-btn-conhecer:hover {
    background-color: #fce268;
}

/* --- NOVA SEÇÃO: SOBRE MICHELLINE --- */
.fv-sobre-michelline {
    position: relative;
    max-width: 1000px;
    margin: 80px auto 40px auto;
    padding: 0 20px;
}

.fv-sobre-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

.fv-sobre-box {
    background-color: #FACC15;
    /* Laranja conforme solicitado */
    border-radius: 20px;
    padding: 50px 60px 50px 380px;
    color: #fff;
    margin-left: 20px;
    width: 100%;
}

.fv-sobre-box p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: 400;
}

.fv-sobre-box p strong {
    font-weight: 800;
}

.fv-sobre-box p:last-child {
    margin-bottom: 0;
}

.fv-michelline-img {
    position: absolute;
    left: -20px;
    width: 420px;
    height: auto;
    max-height: 130%;
    object-fit: contain;
    z-index: 2;
}

@media (max-width: 900px) {
    .fv-sobre-container {
        flex-direction: column;
        padding-top: 0;
        position: relative;
    }

    .fv-michelline-img {
        position: relative;
        left: auto;
        bottom: auto;
        transform: none;
        top: auto;
        width: 100%;
        max-width: 100%;
        z-index: 1;
        display: block;
    }

    .fv-sobre-box {
        margin-left: 0;
        margin-top: -850px;
        padding: 40px 25px;
        text-align: center;
        position: relative;
        z-index: 2;
        width: 100%;
        box-sizing: border-box;
    }
}

/* --- NOVA SEÇÃO: WHATSAPP BANNER (100% VIEWPORT) --- */
.fv-whatsapp-banner {
    background-color: #FACC15;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: center;
    margin-top: 70px;
    padding: 20px 0;
}

.fv-whatsapp-link {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    text-decoration: none;
    position: relative;
    transition: transform 0.3s ease;
    padding-right: 120px;
}

.fv-whatsapp-link:hover {
    transform: scale(1.05);
}

.fv-whatsapp-icon-wrapper {
    position: absolute;
    right: 0;
    top: -45px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.15));
    margin: 0;
}

.fv-whatsapp-icon-wrapper svg {
    border-radius: 20%;
}

.fv-whatsapp-content {
    color: #fff;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    text-align: right;
}

.fv-whatsapp-icon-wrapper svg path[fill="#facc15"] {
    fill: #FACC15;
}

.fv-whatsapp-content strong {
    font-weight: 800;
}