/* CSS Base - Mobile First */
@import 'paleta_de_cores.css';

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Tipografia e Utilitários */
h1,
h2,
h3,
h4,
strong {
    font-weight: 700;
}

.handwritten {
    font-family: 'Caveat', cursive;
    font-weight: 700;
}

.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-cta {
    color: var(--color-cta);
}

.text-white {
    color: var(--color-white);
}

.text-light {
    color: var(--color-text-light);
}

.text-sec {
    color: var(--color-secondary);
}

.text-sec-light {
    color: var(--color-secondary);
    opacity: 0.9;
}

.text-success {
    color: var(--color-success);
}

.text-center {
    text-align: center;
}

.text-upper {
    text-transform: uppercase;
}

.underline-cta {
    border-bottom: 3px solid var(--color-cta);
}

.bg-dark {
    background-color: var(--color-background-dark);
}

.bg-soft {
    background-color: var(--color-background-soft);
}

.divider-cta,
.divider-sec {
    height: 4px;
    margin: 1rem auto;
}

.divider-cta.short {
    width: 150px;
    max-width: 80%;
    height: 5px;
    background-color: var(--color-cta);
    border-radius: 50%;
    margin: 0.2rem auto 1.5rem;
}

.divider-sec.short {
    width: 60px;
    background-color: var(--color-secondary);
    margin: 1rem 0;
}

.divider-border {
    border-bottom: 1px solid var(--color-border);
    margin: 1.5rem 0;
}

@keyframes pulse-cta {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 10px 20px rgba(249, 115, 22, 0.6);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
    }
}

.btn-cta {
    display: block;
    margin: 0 auto;
    background-color: var(--color-cta);
    color: var(--color-cta-text);
    text-decoration: none;
    font-weight: 800;
    text-align: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    padding: 1.2rem;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
    animation: pulse-cta 2s infinite;
}

.btn-cta:hover {
    background-color: var(--color-cta-hover);
    transform: scale(1.05);
    animation-play-state: paused;
}

.btn-subtext {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.bg-dark {
    background-color: var(--color-background-dark);
}

.text-light {
    color: var(--color-text-light);
}

.text-sec-light {
    color: #A7F3D0;
    /* A light green that contrasts well on dark backgrounds */
    font-weight: 600;
}

.badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.badge-secondary {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.badge-cta {
    background-color: var(--color-cta);
    color: var(--color-white);
}

.badge-outline-sec {
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
}

.badge-outline-cta {
    border: 2px solid var(--color-cta);
    color: var(--color-cta);
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.grid-2 {
    display: grid;
    gap: 2rem;
}

.grid-3 {
    display: grid;
    gap: 2rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Dobra 1 */
.top-bar {
    background-color: var(--color-background-dark);
}

.top-bar-container {
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 45px;
}

.tagline {
    border-left: 1.5px solid var(--color-cta);
    padding-left: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: left;
}

.dobra-1 h1 {
    font-size: 30px;
    line-height: 1.2;
    text-align: center;
    color: var(--color-text);
}

.dobra-1 .subtitulo {
    text-align: center;
    color: var(--color-text-secondary);
    margin: 1.5rem 0;
}

.card-heroi {
    background-color: var(--color-background-dark);
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 380px;
    justify-content: center;
}

.card-heroi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/corpo-humano.jpeg');
    background-size: cover;
    background-position: right center;
    opacity: 0.35;
    z-index: 1;
}

.card-heroi::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(9, 9, 11, 1) 0%, rgba(9, 9, 11, 0.7) 55%, rgba(9, 9, 11, 0) 100%);
    z-index: 2;
}

.card-heroi-text {
    padding: 2.5rem;
    position: relative;
    z-index: 3;
    max-width: 90%;
}

.card-heroi-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.card-heroi-anat img {
    width: 100%;
    object-fit: cover;
}

.card-heroi-anat {
    position: relative;
    background: #0c242e;
}

.label-anat {
    position: absolute;
    color: var(--color-white);
    background: var(--color-cta);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.label-quadril {
    top: 30%;
    right: 10%;
}

.label-joelho {
    top: 60%;
    right: 10%;
}

.label-tornozelo {
    bottom: 15%;
    right: 10%;
}

.apoio-cta {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--color-text-secondary);
}

.barra-confianca {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    background-color: var(--color-background-soft);
    padding: 2rem;
    border-radius: 12px;
}

.item-confianca {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.item-confianca .icon-circle {
    background-color: var(--color-background-dark);
    color: var(--color-cta);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-confianca strong {
    color: var(--color-text);
    display: block;
}

.item-confianca p {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Dobra 2 */
.dobra-2 {
    text-align: center;
}

.d2-superior {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    margin-top: 1rem;
}

.d2-text h2 {
    font-size: 2rem;
    line-height: 1.2;
}

.d2-text p {
    margin-bottom: 1rem;
}

.chamada-compensacao {
    font-weight: 700;
    margin-top: 2rem;
}

.d2-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.glow-red {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.6) 0%, rgba(255, 0, 0, 0) 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.d2-inferior {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.card-compensacao {
    background: #ffffff;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-text);
}

.icon-circle-cta {
    background: #FF6B50;
    /* Matches the soft red/orange from the image */
    color: var(--color-white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.d2-anat {
    position: relative;
    /* background: #f8f9fa; */
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border-radius: 12px;
}

.d2-anat img {
    /* max-height: 400px; */
    margin: 0 auto;
}

.anat-labels {
    margin-top: 1rem;
    text-align: left;
    font-size: 0.9rem;
}

.anat-label {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    border-left: 3px solid var(--color-cta);
}

.faixa-encerramento-d2 {
    background: #F4F9F8;
    padding: 1.5rem 2.5rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    border-radius: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
}

.faixa-texto {
    font-weight: 500;
}

.faixa-icone {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

/* Dobra 3 */
.d3-content {
    margin-bottom: 2rem;
}

.manchete-d3 {
    font-size: 2.2rem;
    line-height: 1.1;
    margin: 1rem 0;
}

.subtitulo-d3 {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.header-bloco-d3 {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.highlight-d3 {
    color: var(--color-cta);
}

.beneficios-d3 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-beneficio {
    background: #ffffff;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.icon-square-dark {
    background: var(--color-primary);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-check-small {
    background: #e6f4ea;
    color: var(--color-secondary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.d3-img img {
    border-radius: 12px;
    object-fit: cover;
}

.faixa-encerramento-d3 {
    background: #F4F9F8;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.faixa-d3-esquerda {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-runner-large {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
}

.frase-principal {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
    margin: 0;
}

.muda-estilo {
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: var(--color-cta);
    position: relative;
    display: inline-block;
    line-height: 0.8;
    margin-top: 5px;
}

.underline-muda {
    height: 4px;
    background: var(--color-cta);
    width: 100%;
    margin-top: 2px;
    border-radius: 2px;
    transform: rotate(-2deg);
}

.d3-divider {
    width: 100%;
    height: 1px;
    background: #D1D5DB;
}

.mini-itens-d3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: 100%;
    text-align: center;
}

.item-d3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-primary);
}

.item-d3 p {
    margin: 0;
    line-height: 1.2;
}

.icon-d3 {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
}

/* Dobra 4 */
.d4-superior {
    position: relative;
    padding: 3rem 0 6rem;
    overflow: hidden;
}

.d4-center-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.linha-abertura {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.d4-logo {
    max-width: 100%;
    width: 350px;
    margin-bottom: 2rem;
    display: block;
}

.d4-missao {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.d4-missao-icon {
    width: 48px;
    height: 48px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.d4-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.d4-inferior {
    background: #F4F9F8;
    padding: 2rem 0 4rem;
}

.intro-d4 {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.d4-cards-container {
    background: white;
    border: 1px solid var(--color-secondary);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.card-atributo {
    text-align: center;
    position: relative;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: var(--color-secondary);
    display: block;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.card-desc {
    font-size: 0.85rem;
    color: #4B5563;
    line-height: 1.4;
    margin: 0;
}

.faixa-encerramento-d4 {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faixa-d4-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.frase-d4 {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.icon-check-circle {
    width: 48px;
    height: 48px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.frase-texto-linhas {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.divider-faixa {
    display: none;
}

.assinatura-d4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.assinatura-logo {
    height: 100px;
    display: none;
}

.assinatura-texto {
    color: var(--color-secondary);
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 600;
    margin: 0;
}

/* Dobra 5 */
.dobra-5 {
    padding: 4rem 0 0 0;
    background: #f9f9f9;
}

.d5-topo {
    text-align: center;
    margin-bottom: 2rem;
}

.badge-d5 {
    margin-bottom: 1rem;
    display: inline-block;
}

.manchete-d5 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.d5-logo-text {
    font-size: 2.5rem;
    display: block;
    margin-top: 0.5rem;
}

.subtitulo-d5 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.underline-d5 {
    text-decoration: underline;
    text-decoration-color: var(--color-cta);
    text-decoration-thickness: 3px;
    text-underline-offset: 4px;
}

.d5-topo-img img {
    border-radius: 12px;
    width: 100%;
}

.grid-etapas {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.card-etapa {
    border-radius: 16px;
    padding: 1.5rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.card-verde {
    background: #f4f9f8;
    border: 1px solid #cce3de;
}

.card-laranja {
    background: #fff7ed;
    border: 1px solid #fed7aa;
}

.etapa-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.etapa-titulos {
    display: flex;
    flex-direction: column;
}

.etapa-titulos h3 {
    font-size: 1.2rem;
    margin: 0;
    line-height: 1.1;
    color: var(--color-primary);
}

.sub-card {
    font-size: 1.5rem;
    margin-top: 2px;
}

.num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
}

.num-verde {
    background: #064E3B;
    /* Dark green */
}

.num-laranja {
    background: var(--color-cta);
}

.text-card-d5 {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.lista-exercicios {
    list-style: none;
    margin-bottom: 1.5rem;
}

.lista-exercicios li {
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faixa-fotos {
    display: grid;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.fotos-3 {
    grid-template-columns: repeat(3, 1fr);
}

.faixa-fotos img,
.foto-unica img {
    border-radius: 8px;
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.foto-unica img {
    height: auto;
    max-height: 200px;
    margin-bottom: 1.5rem;
}

.selo-frequencia {
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    line-height: 1.3;
}

.selo-verde {
    background: #064E3B;
    color: white;
}

.selo-laranja {
    background: var(--color-cta);
    color: white;
}

.icon-cal {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.bloco-recursos {
    padding: 0;
    margin-bottom: 3rem;
}

.titulo-recursos {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.grid-recursos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.divider-top {
    border-top: 1px solid #ccc;
    padding-top: 1.5rem;
}

.item-recurso {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.icon-recurso {
    background: #f4f9f8;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.titulo-item {
    font-size: 0.95rem;
    color: var(--color-primary);
}

.desc-item {
    font-size: 0.85rem;
    color: var(--color-text);
}

.faixa-pratica-full {
    position: relative;
    padding: 3rem 0;
    background-color: var(--color-pratica-bg, #FCF8F5);
    overflow: hidden;
}

.brush-stroke-divider-container {
    display: none;
}

.d5-faixa-grid {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.fluxo-pratica-box {
    border-radius: 24px;
    padding: 2.5rem 1.5rem;
    box-shadow: 0 10px 25px rgba(2, 43, 41, 0.15);
    background: #033330;
    /* Highly elegant dark teal-green card */
    color: white;
}

.titulo-fluxo-wrapper {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo-fluxo {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.brush-underline-teal {
    width: 140px;
    height: 8px;
    opacity: 0.8;
}

.passos-fluxo {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: stretch;
}

.passo-item {
    display: flex;
    flex-direction: row;
    /* Horizontal flow for step items on mobile */
    align-items: center;
    text-align: left;
    gap: 20px;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.passo-item:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
}

.passo-circulo-container {
    position: relative;
    width: 68px;
    height: 68px;
    margin: 0;
    flex-shrink: 0;
}

.passo-circulo-outline {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.45);
    /* Elegant white outline */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.passo-circulo-outline svg {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
}

.passo-item:hover .passo-circulo-outline {
    border-color: #FFFFFF;
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.passo-item:hover .passo-circulo-outline svg {
    transform: scale(1.1);
}

.num-circle {
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    background: var(--color-secondary, #1F6B67);
    color: white;
    border: 1.5px solid #033330;
    /* Matches the green card bg to isolate beautifully */
    transition: all 0.3s ease;
}

.passo-item:hover .num-circle {
    transform: translateX(-50%) scale(1.1) rotate(360deg);
}

.passo-desc {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    color: white;
    margin: 0;
}

.passo-seta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -2px 0;
    height: 24px;
}

.passo-seta svg {
    transform: rotate(90deg);
    /* Points down on mobile */
    width: 20px;
    height: 20px;
    stroke: var(--color-cta, #F0A90E);
    opacity: 0.8;
}

/* Script text container right side (Mobile Banner) */
.d5-faixa-right {
    position: relative;
    border-radius: 20px;
    padding: 3.5rem 1.5rem;
    margin-top: 2rem;
    background-image: url('assets/corredora-por-do-sol.jpeg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
}

.d5-faixa-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(252, 248, 245, 0.92);
    /* Soft cream overlay for 100% contrast */
    z-index: 1;
}

.frase-manuscrita-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
}

.frase-manuscrita-title {
    font-size: 1.8rem;
    color: var(--color-primary, #0F2D3A);
    line-height: 1.1;
    margin: 0;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.frase-manuscrita-cta {
    font-size: 2.5rem;
    color: #ea580c;
    /* Vibrant orange */
    line-height: 1;
    margin: 0;
    font-weight: 800;
}

.frase-manuscrita-highlight-container {
    position: relative;
    display: inline-block;
    width: max-content;
}

.highlight-sem-travar {
    position: relative;
    z-index: 2;
}

.brush-underline-orange {
    position: absolute;
    bottom: -8px;
    left: 5%;
    width: 90%;
    height: 10px;
    z-index: 1;
    opacity: 0.95;
}

/* Dobra 6 */
/* Dobra 6 - Top Header */
.d6-topo {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    /* Center text on mobile */
    overflow: hidden;
}

.bg-oferta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-position: center;
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 45, 58, 0.85);
    /* Solid high contrast dark overlay for centered text */
    z-index: 2;
}

.topo-content {
    position: relative;
    z-index: 3;
    width: 90%;
    margin: 0 auto;
}

.d6-topo-text-center {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
}

.manchete-d6 {
    font-size: 1.8rem;
    line-height: 1.25;
    color: var(--color-white);
    margin-bottom: 1.2rem;
    font-weight: 850;
    letter-spacing: 0.5px;
}

.d6-manchete-script {
    display: inline-block;
    font-size: 2.3rem;
    margin-top: 0.3rem;
    color: #ea580c;
    /* High contrast orange script */
}

.submanchete-d6 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.45;
}

.d6-corrigir-wrapper {
    position: relative;
    display: inline-block;
}

.d6-corrigir-script {
    font-family: 'Caveat', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ea580c;
    line-height: 1;
    vertical-align: middle;
}

.brush-underline-orange-mini {
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: 1;
    opacity: 0.95;
}

/* Redesigned Modules Cards */
.d6-modulos {
    padding: 4rem 0 2rem 0;
    background: #FFFFFF;
}

/* Beautiful Line Header Dividers */
.d6-header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.5rem;
    width: 100%;
}

.d6-header-divider .line {
    flex: 1;
    height: 1px;
    background: rgba(15, 45, 58, 0.12);
}

.d6-header-divider .header-bloco {
    margin-bottom: 0;
    font-weight: 850;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    color: var(--color-primary);
}

.grid-3-modulos {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-modulo {
    background: #FFFFFF;
    border: 1px solid rgba(15, 45, 58, 0.08);
    border-radius: 20px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(15, 45, 58, 0.03);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-modulo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 45, 58, 0.08);
    border-color: rgba(15, 45, 58, 0.15);
}

.card-modulo-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
}

.card-modulo-titles {
    display: flex;
    flex-direction: column;
}

.modulo-sub {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.modulo-title {
    font-size: 1.1rem;
    font-weight: 850;
    margin: 0;
    line-height: 1.1;
}

/* Custom Module Colors */
.sub-estabilizacao {
    color: #0D9488;
}

.title-estabilizacao {
    color: #0E625F;
}

.icon-estabilizacao {
    background: #0E625F;
    color: white;
}

.sub-fortalecimento {
    color: #ea580c;
}

.title-fortalecimento {
    color: #ea580c;
}

.icon-fortalecimento {
    background: #ea580c;
    color: white;
}

.sub-core {
    color: #7C3AED;
}

.title-core {
    color: #6D28D9;
}

.icon-core {
    background: #6D28D9;
    color: white;
}

.icon-modulo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.icon-modulo svg {
    width: 36px;
    height: 36px;
}

.modulo-desc {
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--color-text-secondary);
    margin: 0;
}

/* Redesigned Checklist Section */
.d6-alem {
    background-color: #F8FAFC;
    /* Light gray-soft bg */
    padding: 3.5rem 0;
}

.checklist-2cols {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 1rem;
}

.checklist-col {
    display: flex;
    flex-direction: column;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(15, 45, 58, 0.08);
    width: 100%;
}

.checklist-item:last-child {
    border-bottom: none;
}

.checklist-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 45, 58, 0.15);
    transition: all 0.3s ease;
}

.checklist-icon-circle svg {
    width: 24px;
    height: 24px;
}

.checklist-text {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--color-text);
    margin: 0;
}

.text-primary-bold {
    font-weight: 700;
    color: var(--color-primary);
}

/* Pricing Card and Trust Badges Section */
.d6-oferta-secao {
    background-color: #FFFFFF;
    /* Pure white bg under the pricing box */
    padding: 5rem 0 3rem 0;
    position: relative;
}

.d6-oferta-container {
    width: 90%;
    margin: 0 auto;
}

.d6-oferta-box {
    background: #033330;
    /* Solid highly elegant dark teal-green card */
    border-radius: 28px;
    padding: 3.5rem 1.5rem 3rem 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 45px rgba(2, 43, 41, 0.35);
}

.d6-oferta-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ea580c;
    /* Vibrant orange */
    color: white;
    font-size: 1rem;
    font-weight: 850;
    letter-spacing: 1px;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.4);
    z-index: 10;
    white-space: nowrap;
}

.d6-preco-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 2.2rem;
    margin-top: 1rem;
}

.d6-spark-left,
.d6-spark-right {
    width: 48px;
    height: 30px;
    display: inline-block;
    vertical-align: middle;
}

.d6-preco-text-glow {
    display: flex;
    align-items: flex-start;
    color: white;
}

.preco-moeda {
    font-size: 1.8rem;
    font-weight: 800;
    margin-top: 0.6rem;
    margin-right: 2px;
}

.preco-valor {
    font-size: 5.5rem;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -2px;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.d6-btn-oferta-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #ea580c;
    /* Vibrant orange button */
    color: white;
    text-decoration: none;
    border-radius: 20px;
    padding: 1.2rem 2.2rem;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(234, 88, 12, 0.45);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.d6-btn-oferta-action:hover {
    transform: scale(1.02) translateY(-2px);
    background: #f97316;
    box-shadow: 0 14px 35px rgba(234, 88, 12, 0.55);
}

.d6-btn-cta-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    color: #ea580c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.d6-btn-cta-circle svg {
    width: 22px;
    height: 22px;
}

.d6-btn-text-container {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.d6-btn-title {
    font-size: 1.3rem;
    font-weight: 850;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.d6-btn-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.95;
    margin-top: 3px;
    letter-spacing: 0.5px;
}

/* Trust Badges inside the pricing box card */
.d6-trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    max-width: 100%;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    /* Clean white divider inside green card */
}

.trust-badge-item {
    display: flex;
    flex-direction: row;
    /* Horizontal alignment is way more readable! */
    align-items: center;
    gap: 12px;
    text-align: left;
    color: rgba(255, 255, 255, 0.9);
    padding-bottom: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.trust-badge-item svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
    flex-shrink: 0;
}

.trust-badge-item span {
    font-size: 0.85rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
}

.trust-badge-item strong {
    color: #ffffff;
    font-weight: 700;
}

/* Dobra 7 */
.dobra-7 {
    padding: 5rem 0;
    background-color: #000c0e;
    /* Even darker teal-black background for maximum premium grade! */
}

/* Dobra 7 - Banner Header */
.d7-topo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 4rem 1.5rem;
    text-align: center;
    margin-bottom: 3.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 163, 150, 0.15);
}

.bg-parceria {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    background-position: center;
}

.overlay-d7-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 23, 27, 0.85);
    /* Solid overlay to make white text highly visible */
    z-index: 2;
}

.d7-topo-content {
    position: relative;
    z-index: 3;
    max-width: 100%;
}

.manchete-d7 {
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 850;
    letter-spacing: 0.5px;
}

.d7-script-large {
    font-size: 2.6rem;
    display: inline-block;
    margin-top: 0.2rem;
    line-height: 1.1;
}

/* Floating circle constellation on mobile */
.d7-floating-circles {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

.floating-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px dashed rgba(0, 163, 150, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(1, 30, 34, 0.6);
    box-shadow: 0 0 12px rgba(0, 163, 150, 0.3);
}

.floating-circle svg {
    width: 22px;
    height: 22px;
}

/* Cards Autoridade - Mobile styling */
.cards-autoridade {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.card-autoridade {
    background: #011e22;
    /* Very deep dark teal background */
    border-radius: 24px;
    position: relative;
    overflow: visible;
    /* Let cutout overlap at the top! */
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    margin-top: 40px;
    /* Space for the top head overflow */
}

.card-adria {
    border: 1.5px solid rgba(0, 163, 150, 0.25);
    /* Teal border matching mockup! */
}

.card-matheus {
    border: 1.5px solid rgba(234, 88, 12, 0.25);
    /* Orange border matching mockup! */
}

.foto-autoridade {
    position: relative;
    overflow: visible;
    /* Let it overflow! */
    height: 320px;
    /* Fixed height for cutout on mobile */
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.adria-cutout {
    background: radial-gradient(circle at center, rgba(0, 163, 150, 0.22) 0%, transparent 70%);
}

.matheus-cutout {
    background: radial-gradient(circle at center, rgba(234, 88, 12, 0.2) 0%, transparent 70%);
}

.foto-autoridade img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 112%;
    /* Exceeds card height to pop out of the top! */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    object-position: bottom center;
    z-index: 10;
    filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.5));
}

.info-autoridade {
    padding: 2rem 1.5rem;
}

.nome-badge {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.nome-badge h3 {
    font-size: 2.8rem;
    margin: 0;
    line-height: 1;
}

.text-sec-script {
    color: #00E5D3;
    /* Elegant vibrant neon teal script! */
    font-family: 'Caveat', cursive;
    text-shadow: 0 0 15px rgba(0, 229, 211, 0.25);
}

.text-cta-script {
    color: #FF7A00;
    /* Elegant vibrant neon orange script! */
    font-family: 'Caveat', cursive;
    text-shadow: 0 0 15px rgba(255, 122, 0, 0.25);
}

/* Badges next to titles */
.badge-autoridade {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.badge-teal {
    border: 1.5px solid rgba(0, 229, 211, 0.4);
    color: #00E5D3;
    background: rgba(0, 229, 211, 0.05);
}

.badge-orange {
    border: 1.5px solid rgba(255, 122, 0, 0.4);
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.05);
}

.badge-autoridade svg {
    width: 14px;
    height: 14px;
}

/* Highlights */
.text-highlight-teal {
    color: #00A396;
    font-weight: 700;
}

.text-highlight-orange {
    color: #ea580c;
    font-weight: 700;
}

.bio-intro {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    color: #ffffff;
}

.bio-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Bônus List on Adria's card - mobile */
.autoridade-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
    background: rgba(1, 30, 34, 0.4);
    border-top: 1.5px solid rgba(0, 163, 150, 0.12);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-icon {
    width: 32px;
    height: 32px;
    color: #00A396;
    flex-shrink: 0;
}

.sidebar-item span {
    font-size: 0.85rem;
    font-weight: 750;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.3px;
}

/* Bullets on Matheus's card - mobile */
.bullets-matheus-mockup {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 1.8rem;
    padding-top: 1.8rem;
    border-top: 1.5px solid rgba(234, 88, 12, 0.12);
}

.bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.circle-orange {
    background: #ea580c;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.35);
}

.bullet-item p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Bottom Nossa Missão Banner Bar - mobile */
.faixa-missao {
    background: #011e22;
    /* Same deep teal-blue */
    border: 1.5px solid rgba(0, 163, 150, 0.25);
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.missao-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.missao-icon-target {
    width: 32px;
    height: 32px;
    color: #00A396;
}

.missao-left h4 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 850;
    letter-spacing: 1.5px;
    color: #ffffff;
}

.missao-divider {
    width: 100%;
    height: 1.5px;
    background: rgba(0, 163, 150, 0.15);
}

.missao-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.missao-right p {
    font-size: 0.95rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.missao-icon-heart {
    width: 28px;
    height: 28px;
    color: #ea580c;
}

/* Dobra 8 */
.dobra-8 {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.d8-topo {
    margin-bottom: 4rem;
}

.d8-topo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(0, 229, 211, 0.3);
    border-radius: 50px;
    padding: 0.6rem 1.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #00E5D3;
    background: rgba(0, 229, 211, 0.05);
    margin-bottom: 2rem;
}

.d8-badge-chat-icon {
    width: 18px;
    height: 18px;
    color: #00E5D3;
}

.manchete-d8 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.italic-brand {
    font-style: italic;
    color: #FF7A00;
    font-weight: 900;
}

.d8-subtitulo-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
}

.d8-subtitulo-line {
    width: 60px;
    height: 3px;
    background: #00E5D3;
    border-radius: 2px;
}

.subtitulo-d8 {
    font-size: 1.15rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.faq-list {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-card {
    background: #012428;
    /* Premium deep teal container! */
    border: 1.5px solid rgba(0, 229, 211, 0.15);
    border-radius: 14px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 211, 0.3);
}

.faq-question-side {
    display: flex;
    align-items: center;
    gap: 16px;
}

.faq-card-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid #00a396;
    background: rgba(0, 163, 150, 0.15);
    color: #00E5D3;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.faq-icon-holder {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-svg-icon {
    width: 36px;
    height: 36px;
    color: #00E5D3;
}

.faq-question-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.25;
}

.faq-q-l1 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
}

.faq-q-l2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #00E5D3;
}

.faq-card-divider {
    height: 1.5px;
    background: rgba(0, 229, 211, 0.15);
    width: 100%;
}

.faq-response-side {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.faq-response-check-holder {
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-response-check-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #00a396;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-response-check-circle svg {
    width: 14px;
    height: 14px;
}

.faq-response-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-response-label {
    font-weight: 800;
    color: #00E5D3;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}

.faq-response-p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.55;
}

/* Faixa de Fechamento */
.d8-faixa-conversoes {
    border: 1.5px solid #FF7A00;
    background: #011e22;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    box-shadow: 0 20px 45px rgba(255, 122, 0, 0.12);
}

.d8-preco-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.d8-oferta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.05);
    letter-spacing: 0.05em;
}

.d8-lightning-svg {
    width: 14px;
    height: 14px;
    color: #FF7A00;
}

.d8-preco-value-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 0.5rem 0;
}

.d8-price-r {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-start;
    margin-top: 0.8rem;
}

.d8-price-val {
    font-size: 4.5rem;
    font-weight: 900;
    color: #FF7A00;
    line-height: 1;
    text-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.d8-price-sub {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #00E5D3;
}

.d8-preco-divider {
    height: 1.5px;
    background: rgba(255, 122, 0, 0.2);
    width: 100%;
}

.d8-preco-right {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.d8-preco-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.d8-preco-btn {
    background: #FF7A00;
    color: #011e22 !important;
    border-radius: 35px !important;
    /* Highly rounded corners matching mockup! */
    padding: 1.2rem 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.3);
    width: 100%;
}

.d8-preco-btn:hover {
    background: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.4);
}

.d8-preco-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.d8-btn-t1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #011e22;
}

.d8-btn-t2,
.d8-btn-t3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #011e22;
    letter-spacing: 0.02em;
}

.d8-preco-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #011e22;
}

.d8-preco-btn-arrow svg {
    width: 32px;
    height: 32px;
}

.d8-preco-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.d8-preco-security svg {
    width: 34px;
    height: 34px;
    color: rgba(255, 255, 255, 0.55);
}

.d8-security-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.d8-security-text span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
}

/* Dobra 9 */
.dobra-9 {
    padding: 6rem 0 4rem 0;
    position: relative;
    overflow: hidden;
}

.d9-topo {
    margin-bottom: 4rem;
}

.manchete-d9 {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.d9-topo-divider {
    width: 60px;
    height: 3px;
    background: #00E5D3;
    border-radius: 2px;
    margin: 1.5rem auto;
}

.d9-topo-desc {
    font-size: 1.15rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto 1.2rem auto;
}

.d9-logo {
    margin: 4.5rem 0;
}

.logo-gigante-d9 {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.d9-cursive-large {
    font-size: 3.5rem;
}

.d9-logo-underline-holder {
    margin-top: -12px;
    margin-bottom: 2.2rem;
    display: flex;
    justify-content: center;
}

.d9-brush-svg {
    width: 250px;
    height: 20px;
}

.subtitulo-d9 {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.d9-content-wrapper {
    margin: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.d9-grid-recursos {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.d9-card {
    background: #012428;
    /* Premium deep teal container! */
    border: 1.5px solid rgba(0, 229, 211, 0.15);
    border-radius: 14px;
    padding: 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.d9-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 229, 211, 0.3);
}

.d9-card-outline-holder {
    width: 52px;
    height: 52px;
    border: 1.5px solid rgba(0, 229, 211, 0.3);
    border-radius: 12px;
    background: rgba(0, 229, 211, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 229, 211, 0.1);
}

.d9-outline-svg {
    width: 32px;
    height: 32px;
    color: #00E5D3;
}

.d9-card-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.d9-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.d9-card-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #00a396;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.d9-card-check svg {
    width: 12px;
    height: 12px;
}

.d9-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #00E5D3;
    letter-spacing: 0.02em;
}

.d9-card-desc {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.d9-bonus-card {
    border: 2px solid #FF7A00;
    background: rgba(255, 122, 0, 0.05);
    padding: 1.5rem 1.8rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.08);
}

.d9-bonus-icon-holder {
    width: 44px;
    height: 44px;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #FF7A00;
}

.d9-bonus-gift-svg {
    width: 26px;
    height: 26px;
}

.d9-bonus-text-content {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    text-align: left;
}

.d9-bonus-span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Faixa de Oferta Final */
.d9-faixa-preco {
    border: 1.5px solid #FF7A00;
    background: #011e22;
    border-radius: 20px;
    padding: 2.2rem 1.8rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    box-shadow: 0 20px 45px rgba(255, 122, 0, 0.12);
}

.d9-preco-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.d9-oferta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1.5px solid rgba(255, 122, 0, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #FF7A00;
    background: rgba(255, 122, 0, 0.05);
    letter-spacing: 0.05em;
}

.d9-lightning-svg {
    width: 14px;
    height: 14px;
    color: #FF7A00;
}

.d9-preco-value-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin: 0.5rem 0;
}

.d9-price-r {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    align-self: flex-start;
    margin-top: 0.8rem;
}

.d9-price-val {
    font-size: 4.5rem;
    font-weight: 900;
    color: #FF7A00;
    line-height: 1;
    text-shadow: 0 0 25px rgba(255, 122, 0, 0.2);
}

.d9-price-sub {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #00E5D3;
}

.d9-preco-divider {
    height: 1.5px;
    background: rgba(255, 122, 0, 0.2);
    width: 100%;
}

.d9-preco-right {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.d9-preco-btn-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.d9-preco-btn {
    background: #FF7A00;
    color: #011e22 !important;
    border-radius: 35px !important;
    /* Highly rounded corners matching mockup! */
    padding: 1.2rem 2rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(255, 122, 0, 0.3);
    width: 100%;
}

.d9-preco-btn:hover {
    background: #e66e00;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(255, 122, 0, 0.4);
}

.d9-preco-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.15;
}

.d9-btn-t1 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #011e22;
}

.d9-btn-t2,
.d9-btn-t3 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #011e22;
    letter-spacing: 0.02em;
}

.d9-preco-btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    color: #011e22;
}

.d9-preco-btn-arrow svg {
    width: 32px;
    height: 32px;
}

.d9-preco-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 0.5rem;
}

.d9-preco-security svg {
    width: 34px;
    height: 34px;
    color: rgba(255, 255, 255, 0.55);
}

.d9-security-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.d9-security-text span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.55);
}

/* Garantias Section */
.barra-garantias-d9 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 4.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3.5rem;
}

.garantia-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(1, 36, 40, 0.4);
    border: 1.5px solid rgba(0, 229, 211, 0.08);
    padding: 1.6rem;
    border-radius: 12px;
}

.garantia-icon-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 229, 211, 0.1);
    color: #00E5D3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.d9-garantia-svg {
    width: 26px;
    height: 26px;
}

.garantia-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.garantia-text strong {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 800;
}

.garantia-text p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Rodapé */
.d9-rodape {
    margin-top: 4.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.d9-heart-wrapper {
    width: 44px;
    height: 44px;
    color: #FF7A00;
    display: flex;
    align-items: center;
    justify-content: center;
}

.d9-footer-heart-svg {
    width: 28px;
    height: 28px;
    fill: none;
}

.frase-rodape {
    font-size: 1.8rem;
    margin-top: 2rem;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
    .top-bar-container {
        justify-content: flex-start;
    }

    .dobra-1 h1 {
        font-size: 3rem;
    }

    .card-heroi {
        min-height: 480px;
    }

    .card-heroi::before {
        background-position: right center;
    }

    .card-heroi-text {
        max-width: 55%;
        padding: 4rem;
    }

    .card-heroi-anat {
        flex: 1;
    }

    .barra-confianca {
        grid-template-columns: repeat(4, 1fr);
    }

    .btn-cta {
        width: max-content;
        min-width: 400px;
    }

    .d2-superior {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .d2-text {
        flex: 1.2;
    }

    .d2-text h2 {
        font-size: 2.8rem;
    }

    .d2-text p {
        font-size: 1.1rem;
    }

    .d2-img {
        flex: 0.8;
    }

    .d2-inferior {
        flex-direction: row;
        align-items: flex-start;
    }

    .d2-cards {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding-right: 2rem;
        align-self: center;
    }

    .d2-anat {
        flex: 1;
    }

    .card-compensacao {
        margin-bottom: 0;
    }

    .anat-labels {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .anat-label {
        border-left: none;
        border-bottom: 3px solid var(--color-cta);
        padding-left: 0;
        padding-bottom: 5px;
    }

    .d3-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: stretch;
    }

    .d3-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .faixa-encerramento-d3 {
        flex-direction: row;
        justify-content: space-between;
        padding: 2rem 3rem;
    }

    .d3-divider {
        width: 1px;
        height: 80px;
        background: #D1D5DB;
    }

    .mini-itens-d3 {
        flex: 1;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }

    .d4-center-container {
        padding-top: 2rem;
    }

    .d4-logo {
        width: 450px;
    }

    .d4-missao-icon {
        width: 64px;
        height: 64px;
    }

    .d4-cards-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 2rem;
        padding: 3rem 2rem;
    }

    .faixa-d4-flex {
        flex-direction: row;
        justify-content: center;
        gap: 4rem;
        text-align: left;
    }

    .divider-faixa {
        display: block;
        width: 1px;
        height: 70px;
        background: rgba(255, 255, 255, 0.2);
    }

    .assinatura-d4 {
        align-items: center;
    }

    .assinatura-logo {
        display: block;
    }



    .d5-topo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 4rem;
        width: 100%;
    }

    .manchete-d5 {
        font-size: 2.2rem;
    }

    .d5-logo-text {
        font-size: 3.5rem;
    }

    .grid-etapas {
        flex-direction: row;
        align-items: stretch;
    }

    .card-etapa {
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .selo-frequencia {
        margin-top: auto;
    }

    .grid-recursos {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .item-recurso {
        flex: 1;
    }

    .faixa-pratica-full {
        padding: 5rem 0;
        background-color: var(--color-pratica-bg, #FCF8F5);
        background-image: none;
        /* Remove runner background from section container */
    }

    /* Absolute runner photo positioned on the right half */
    .faixa-pratica-full::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 48%;
        /* Covers the right 48% of the screen */
        /* background-image: url('assets/corredora-por-do-sol.jpeg');
        background-size: cover;
        background-position: center; */
        z-index: 1;
    }

    /* Vertical paint-brush-stroke divider container */
    .brush-stroke-divider-container {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 52%;
        /* Border starting just to the left of the image */
        width: 140px;
        height: 101%;
        /* Avoid tiny gaps */
        transform: translateX(-100%);
        z-index: 2;
        pointer-events: none;
    }

    .brush-stroke-divider {
        width: 100%;
        height: 100%;
    }

    .d5-faixa-grid {
        display: grid;
        grid-template-columns: 1.35fr 1fr;
        gap: 5rem;
        align-items: center;
        position: relative;
        z-index: 3;
        /* Floating on top of backgrounds */
    }

    .fluxo-pratica-box {
        padding: 3.5rem 2.5rem;
        background: #033330;
        /* Solid highly elegant dark teal-green card */
        border-radius: 28px;
        box-shadow: 0 15px 40px rgba(2, 43, 41, 0.25);
    }

    .titulo-fluxo-wrapper {
        margin-bottom: 3rem;
    }

    .titulo-fluxo {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .brush-underline-teal {
        width: 200px;
        height: 10px;
    }

    .passos-fluxo {
        flex-direction: row;
        /* Horizontal flow on desktop */
        justify-content: space-between;
        align-items: flex-start;
        gap: 0;
        margin-bottom: 0;
    }

    .passo-item {
        flex: 1;
        flex-direction: column;
        /* Stacks circle & text vertically on desktop */
        align-items: center;
        text-align: center;
        background: none;
        border: none;
        padding: 0;
        gap: 15px;
    }

    .passo-item:hover {
        transform: translateY(-8px);
        /* Elevates vertically on desktop */
        background: none;
    }

    .passo-circulo-container {
        width: 76px;
        height: 76px;
        margin-bottom: 5px;
    }

    .passo-circulo-outline {
        border-width: 2.5px;
    }

    .num-circle {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: -6px;
    }

    .passo-desc {
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.35;
    }

    .passo-seta {
        display: flex;
        align-items: center;
        justify-content: center;
        transform: none;
        /* Points horizontally on desktop */
        margin: 0;
        margin-top: 1.6rem;
        width: auto;
        height: auto;
        flex-shrink: 0;
    }

    .passo-seta svg {
        transform: none;
        /* Pointing right */
        width: 24px;
        height: 24px;
    }

    /* Right column styles (Handwritten phrase over sunset runner) */
    .d5-faixa-right {
        margin-top: 0;
        padding: 0;
        background: none;
        /* Remove mobile card background */
        box-shadow: none;
        position: relative;
        z-index: 4;
        display: flex;
        justify-content: center;
    }

    .d5-faixa-right::before {
        display: none;
        /* Remove mobile overlay */
    }

    .frase-manuscrita-wrapper {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 380px;
    }

    .frase-manuscrita-title {
        font-size: 2.4rem;
        color: var(--color-primary, #0F2D3A);
        line-height: 1.1;
        margin: 0;
        margin-bottom: 0.3rem;
        font-weight: 700;
    }

    .frase-manuscrita-cta {
        font-size: 3.4rem;
        color: #ea580c;
        /* Vibrant orange */
        line-height: 1;
        margin: 0;
        font-weight: 800;
    }

    .frase-manuscrita-highlight-container {
        position: relative;
        display: inline-block;
        width: max-content;
    }

    .highlight-sem-travar {
        position: relative;
        z-index: 2;
    }

    .brush-underline-orange {
        position: absolute;
        bottom: -12px;
        left: 5%;
        width: 90%;
        height: 14px;
        z-index: 1;
        opacity: 0.95;
    }

    .d6-topo {
        padding: 6rem 0;
        text-align: center;
    }

    .d6-topo-text-center {
        max-width: 800px;
        text-align: center;
        margin: 0 auto;
    }

    .manchete-d6 {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .d6-manchete-script {
        font-size: 3.5rem;
    }

    .d6-corrigir-script {
        font-size: 2.3rem;
    }

    .brush-underline-orange-mini {
        height: 8px;
        bottom: -8px;
    }

    .submanchete-d6 {
        font-size: 1.3rem;
    }

    .d6-header-divider .header-bloco {
        font-size: 1.5rem;
    }

    .grid-3-modulos {
        flex-direction: row;
        gap: 2rem;
    }

    .card-modulo {
        flex: 1;
        padding: 2.2rem 2rem;
    }

    .checklist-2cols {
        flex-direction: row;
        gap: 4rem;
        justify-content: center;
    }

    .checklist-col {
        flex: 1;
    }

    .checklist-item {
        padding: 1.4rem 0;
    }

    .d6-oferta-box {
        max-width: 980px;
        /* Wider card to fit horizontal trust badges */
        padding: 4.5rem 3.5rem 3.5rem 3.5rem;
    }

    .d6-btn-oferta-action {
        padding: 1.3rem 2.8rem;
        max-width: 520px;
    }

    .d6-btn-title {
        font-size: 1.4rem;
    }

    .d6-btn-subtitle {
        font-size: 0.8rem;
    }

    .d6-trust-badges {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
        margin-top: 3.5rem;
        padding-top: 2.5rem;
    }

    .trust-badge-item {
        border-bottom: none;
        padding: 0;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        text-align: left;
    }

    .trust-badge-item svg {
        width: 38px;
        height: 38px;
        margin-bottom: 0;
        color: #ffffff;
    }

    .trust-badge-item span {
        font-size: 0.8rem;
    }

    .d7-topo {
        display: block;
        /* Banner block instead of grid! */
        padding: 5.5rem 4rem;
        text-align: left;
        position: relative;
    }

    .d7-topo-content {
        max-width: 65%;
        /* Keeps text on the left half */
    }

    .manchete-d7 {
        font-size: 2.8rem;
        line-height: 1.15;
    }

    .d7-script-large {
        font-size: 3.8rem;
        display: inline-block;
        margin-top: 0.3rem;
        line-height: 1;
    }

    /* Floating Constellation Circles on Desktop */
    .d7-floating-circles {
        display: block;
        /* Show as absolute positioned! */
        position: static;
        /* Let absolute circles position relative to .d7-topo */
    }

    .floating-circle {
        width: 58px;
        height: 58px;
        position: absolute;
        z-index: 5;
    }

    .circle-foot {
        top: 20%;
        left: 55%;
        animation: float-gently-1 5s ease-in-out infinite;
    }

    .circle-heart {
        top: 50%;
        left: 63%;
        animation: float-gently-2 6s ease-in-out infinite;
    }

    .circle-dumbbell {
        top: 70%;
        left: 53%;
        animation: float-gently-3 7s ease-in-out infinite;
    }

    /* Floating animations */
    @keyframes float-gently-1 {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-8px) scale(1.02);
        }
    }

    @keyframes float-gently-2 {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(8px) scale(0.98);
        }
    }

    @keyframes float-gently-3 {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-6px) scale(1.02);
        }
    }

    /* Cards Autoridade - Desktop 3-column & 2-column styles! */
    .cards-autoridade {
        display: flex;
        flex-direction: column;
        gap: 3.5rem;
    }

    .card-adria {
        display: grid !important;
        grid-template-columns: 32% 43% 25% !important;
        align-items: stretch;
    }

    .card-matheus {
        display: grid !important;
        grid-template-columns: 65% 35% !important;
        align-items: stretch;
    }

    .card-matheus .info-autoridade {
        grid-column: 1 / 2;
        grid-row: 1 !important;
    }

    .card-matheus .foto-autoridade {
        grid-column: 2 / 3;
        grid-row: 1 !important;
    }

    .card-autoridade {
        margin-top: 60px;
        /* Space at top to allow cutout head overflow sutilmente! */
    }

    .foto-autoridade {
        height: 100% !important;
        /* Full card height on desktop */
        width: 100% !important;
        overflow: visible !important;
        /* Let image pop out of card at the top! */
        position: relative;
    }

    .adria-cutout img {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 114% !important;
        /* Overflows top of card! */
        object-fit: contain !important;
        object-position: bottom left !important;
        transform: none !important;
        z-index: 10;
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.55));
    }

    .matheus-cutout img {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: auto !important;
        width: 100% !important;
        height: 114% !important;
        /* Overflows top of card! */
        object-fit: contain !important;
        object-position: bottom center !important;
        transform: none !important;
        z-index: 10;
        filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.55));
    }

    .info-autoridade {
        padding: 3.5rem 3rem !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .nome-badge {
        flex-direction: row;
        align-items: center;
        gap: 18px;
    }

    .nome-badge h3 {
        font-size: 3.6rem !important;
    }

    /* Right sidebar on Adria's card */
    .autoridade-sidebar-list {
        border-top: none !important;
        border-left: 1.5px solid rgba(0, 163, 150, 0.15) !important;
        padding: 3rem 2rem !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.8rem !important;
        background: rgba(1, 30, 34, 0.25) !important;
    }

    .sidebar-icon {
        width: 36px !important;
        height: 36px !important;
    }

    .sidebar-item span {
        font-size: 0.9rem !important;
    }

    /* Bullets on Matheus's card */
    .bullets-matheus-mockup {
        margin-top: 2rem;
        padding-top: 2rem;
        gap: 1.5rem !important;
    }

    .bullet-item p {
        font-size: 0.98rem !important;
    }

    /* Bottom Nossa Missão Banner Bar - desktop inline layout! */
    .faixa-missao {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        text-align: left !important;
        padding: 2rem 3rem !important;
        gap: 0 !important;
    }

    .missao-left {
        flex-shrink: 0;
        width: 25%;
        border-right: 1.5px solid rgba(0, 163, 150, 0.15);
        padding-right: 1.5rem;
    }

    .missao-left h4 {
        font-size: 1.35rem !important;
    }

    .missao-divider {
        display: none !important;
        /* Hide vertical line in desktop, border-right does it */
    }

    .missao-right {
        flex-direction: row !important;
        align-items: center;
        justify-content: space-between;
        width: 72%;
        gap: 2rem !important;
    }

    .missao-right p {
        font-size: 1rem !important;
        max-width: 85%;
    }

    .missao-icon-heart {
        flex-shrink: 0;
        width: 32px !important;
        height: 32px !important;
    }

    .d8-topo {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 5rem;
    }

    .manchete-d8 {
        font-size: 3.5rem !important;
        max-width: 950px;
        margin: 2rem auto !important;
    }

    /* FAQ Card Desktop Grid layout */
    .faq-card {
        display: grid !important;
        grid-template-columns: 42% auto 54% !important;
        align-items: center !important;
        gap: 1.8rem !important;
        padding: 2.2rem 3rem !important;
    }

    .faq-card-divider {
        width: 1.5px !important;
        height: 100% !important;
        background: rgba(0, 229, 211, 0.15) !important;
        align-self: stretch !important;
    }

    /* Faixa de Fechamento Desktop Horizontal Layout */
    .d8-faixa-conversoes {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 2.5rem 3.5rem !important;
        gap: 0 !important;
    }

    .d8-preco-left {
        width: 35% !important;
        border-right: 1.5px solid rgba(255, 122, 0, 0.2) !important;
        padding-right: 2rem !important;
        align-items: flex-start !important;
        gap: 8px !important;
        flex-shrink: 0;
    }

    .d8-preco-value-block {
        justify-content: flex-start !important;
        margin: 0.2rem 0 !important;
    }

    .d8-preco-divider {
        display: none !important;
    }

    .d8-preco-right {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 62% !important;
        gap: 2rem !important;
    }

    .d8-preco-btn-wrapper {
        width: 100% !important;
        align-items: center !important;
    }

    .d8-preco-btn {
        padding: 1.25rem 2.5rem !important;
        max-width: 480px !important;
    }

    .d9-topo {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 5rem;
    }

    .manchete-d9 {
        font-size: 3.5rem !important;
        max-width: 950px;
        margin: 0 auto 1.5rem auto !important;
    }

    .logo-gigante-d9 {
        font-size: 3.5rem !important;
    }

    .d9-cursive-large {
        font-size: 5rem !important;
    }

    .d9-brush-svg {
        width: 320px !important;
        height: 25px !important;
    }

    .subtitulo-d9 {
        font-size: 1.35rem !important;
    }

    /* Recursos card grid - 2 columns on desktop */
    .d9-grid-recursos {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 1.8rem !important;
    }

    /* Faixa de Preço Final Horizontal Layout */
    .d9-faixa-preco {
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 2.5rem 3.5rem !important;
        gap: 0 !important;
    }

    .d9-preco-left {
        width: 35% !important;
        border-right: 1.5px solid rgba(255, 122, 0, 0.2) !important;
        padding-right: 2rem !important;
        align-items: flex-start !important;
        gap: 8px !important;
        flex-shrink: 0;
    }

    .d9-preco-value-block {
        justify-content: flex-start !important;
        margin: 0.2rem 0 !important;
    }

    .d9-preco-divider {
        display: none !important;
    }

    .d9-preco-right {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 62% !important;
        gap: 2rem !important;
    }

    .d9-preco-btn-wrapper {
        width: 100% !important;
        align-items: center !important;
    }

    .d9-preco-btn {
        padding: 1.25rem 2.5rem !important;
        max-width: 480px !important;
    }

    /* Garantias inline columns - desktop */
    .barra-garantias-d9 {
        flex-direction: row !important;
        justify-content: space-between !important;
        gap: 1.8rem !important;
    }

    .garantia-card {
        flex: 1 !important;
    }
}