/* ============================================
   JAPAGO - CSS REFINED (Fiel ao Design de ReferÃªncia)
   ============================================ */

:root {
    --japago-red: #ED1C24;
    --japago-dark: #000;
    --japago-darker: #111111;
    --japago-white: #FFFFFF;
    --japago-dark-card: rgba(45, 45, 45, 0.95);
    --japago-red-light: #FF3B3B;
    --font-concord: 'Concord', 'made_tommyregular', sans-serif;
    --font-insanibc: 'Insanibc', 'authenticsignature', cursive;
    --font-concord: 'Concord', 'made_tommyregular', sans-serif;
    --font-insanibc: 'Insanibc', 'authenticsignature', cursive;
    --font-tenshoku: 'Tenshoku', serif;
}

/* Fix: AOS animations (fade-left etc.) causam overflow horizontal no mobile */
html,
body {
    overflow-x: hidden;
}

/* UtilitÃ¡rios - Garantia de Peso */
strong,
b,
.bold {
    font-weight: 700 !important;
}

.black {
    font-weight: 900 !important;
}

.italic {
    font-style: italic !important;
}

/* Fix Fonte Insanibc - ForÃ§ando carregamento com caminho relativo correto do CSS */
@font-face {
    font-family: 'Insanibc';
    src: url('../fonts/Insanibc.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ============================================
   BOX 02 - SOBRE O JAPAGO
   ============================================ */
.japago-sobre {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(160deg, #222 0%, #2a2a2a 30%, #1a1a1a 70%, #111 100%);
    min-height: 100vh;
    /* Full Height One Page */
    display: flex;
    align-items: flex-end;
    /* Alinha tudo ao fundo por padrÃ£o, ajustado por flexbox interno */
    padding-bottom: 0;
}

.japago-sobre-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.japago-sobre-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.japago-sobre-watermark img {
    max-height: 700px;
    width: auto;
}

.japago-sobre .container {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.japago-sobre-homem {
    position: relative;
}

.japago-sobre-homem img {
    max-width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
}

.japago-sobre-texto {
    margin-bottom: 0;
}

.japago-sobre-titulo-img {
    max-width: 100%;
    height: auto;
}

.japago-sobre-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    margin-top: -140px;
}

.japago-sobre-top-text {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 50px;
    font-weight: 200;
    line-height: 3.5;
    letter-spacing: 5px;
    text-shadow: unset;
    text-align: left;
    text-indent: 155px;
    transform: skew(-8deg);
    -webkit-transform: skew(-8deg);
}

.japago-sobre-brand-1 {
    position: relative;
    font-family: var(--font-tenshoku);
    color: var(--japago-red);
    font-size: 170px;
    line-height: 0.4;
    top: 0px;
    left: 20px;
    transform: skew(-5deg);
    -webkit-transform: skew(-5deg);
}

.japago-sobre-brand-2 {
    position: relative;
    font-family: var(--font-tenshoku);
    color: var(--japago-red);
    font-size: 300px;
    line-height: 1.1;
    top: 0px;
    transform: skew(-8deg);
    -webkit-transform: skew(-8deg);
}

.japago-sobre-brand-3 {
    display: inline-block;
    color: var(--japago-red);
    font-size: 340px;
    vertical-align: bottom;
    transform: scaleX(1.2);
    -webkit-transform: scaleX(1.2);
    letter-spacing: -5px;
}

.japago-sobre-brand-4 {
    position: relative;
    display: inline-block;
    color: var(--japago-red);
    font-size: 250px;
    transform: skew(5deg);
    -webkit-transform: skew(5deg);
}

.japago-sobre-btn {
    margin-top: -80px;
}

.japago-btn-saiba {

    /* Mais compacto */

    /* Mais arredondado/pÃ­lula */
    background: var(--japago-red);
    color: var(--japago-white);
    padding: 10px 25px;
    font-size: 30px;
    font-family: var(--font-concord);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 25px 0px 25px 0px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.japago-btn-saiba:hover {
    background: var(--japago-red-light);
    color: var(--japago-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
    text-decoration: none;
}

/* WhatsApp badge (canto inferior direito de cada seÃ§Ã£o) */
.japago-whatsapp-badge {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--japago-red);
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.japago-whatsapp-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
    text-decoration: none;
}

.japago-whatsapp-badge .wpp-icon {
    width: 35px;
    height: 35px;
    background: var(--japago-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.japago-whatsapp-badge .wpp-icon i {
    color: var(--japago-red);
    font-size: 20px;
}

.japago-whatsapp-badge span {
    color: var(--japago-white);
    font-family: var(--font-concord);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-transform: uppercase;
}

/* ============================================
   BOX 03 - QUEM SOMOS / SUSHI EXPRESS / MISSÃƒO
   ============================================ */
.japago-quemsomos {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #d41920 0%, #ED1C24 50%, #d41920 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.japago-quemsomos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.japago-quemsomos-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.75;
    z-index: 1;
    pointer-events: none;
}

.japago-quemsomos-watermark img {
    max-height: 700px;
    width: auto;
}

.japago-quemsomos .container {
    position: relative;
    z-index: 1;
}

/* Cards escuros com formato orgÃ¢nico/angulado â€” clip-path diagonal */
.japago-card-dark {
    background: var(--japago-darker);
    padding: 40px 10px 20px 50px;
    margin-bottom: 18px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 100px 0px 100px 0px;
    max-width: 475px;
    min-height: 200px;
    margin-top: 35px;
    margin-left: auto;
}

.japago-card-dark:hover {
    transform: translateX(6px);
}

.japago-card-title {
    position: absolute;
    top: -20px;
    right: 120px;
    max-width: 250px;
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 5px;
    background: var(--japago-red);
    border-radius: 25px 0px 25px 0px;
    text-align: center;
}

.japago-card-title {
    position: absolute;
    top: -20px;
    right: 120px;
    max-width: 250px;
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 26px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 5px;
    background: var(--japago-red);
    border-radius: 25px 0px 25px 0px;
    text-align: center;
}

.japago-card-dark p {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.2;
    margin: 0;
}

/* Stats - "08 UNIDADES" */
.japago-stats-top {
    position: relative;
    /* display: flex; */
    /* align-items: flex-start; */
    gap: 20px;
    /* margin-left: 210px; */
    margin-bottom: 20px;
    padding-bottom: 100px;
    padding-right: 20px;
    border-right: 3px solid #fff;
    z-index: 3;
}

.japago-stats-number {
    display: inline-block;
}

.japago-big-number {
    display: block;
    font-family: var(--font-concord);
    font-size: 110px;
    font-weight: 800;
    color: var(--japago-white);
    line-height: 0.8;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
}

.japago-stats-label {
    display: block;
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 34px;
    font-weight: 800;
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left;
}

.japago-stats-cities {
    padding-left: 5px;
}

.japago-stats-cities p {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.0;
    margin: 5px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Mapa + Loja 3D â€” sobrepostos */
.japago-mapa-loja {
    position: relative;
    text-align: center;
    margin-top: -275px;
    margin-left: -10px;
}

.japago-mapa-img {
    max-height: 470px;
    height: auto;
}

.japago-loja3d {
    text-align: right;
    position: relative;
    margin-right: -125px;
    margin-top: -80px;
    z-index: 2;
}

.japago-loja3d img {
    max-width: 100%;
    max-height: 320px;
    height: auto;
}

/* ============================================
   BOX 04 - PORQUÃŠ INVESTIR
   ============================================ */
.japago-investir {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.japago-investir-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.japago-investir-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.japago-investir-watermark img {
    max-height: 600px;
    width: auto;
}

.japago-investir .container {
    position: relative;
    z-index: 1;
}

.japago-investir-sub {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 44px;
    font-weight: 100;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: 3px;
    text-shadow: unset;
    text-align: left;
    margin-left: 10px;
    transform: skew(-5deg);
    -webkit-transform: skew(-5deg);
}

.japago-investir-h2 {

    /* ExtraBold */

    /* Conforme referÃªncia */

    /* Profundidade */font-family: var(--font-insanibc);color: var(--japago-red);font-size: 100px;font-weight: normal;font-style: normal;line-height: 0.8;text-shadow: unset;text-align: left;margin: 0;letter-spacing: 0px;transform: skew(-5deg);-webkit-transform: skew(-5deg);}

/* Box vermelho orgÃ¢nico */
/* Box vermelho orgÃ¢nico (Estilo BalÃ£o "Sketch" Fiel) */
.japago-box-vermelho {
    background: var(--japago-red);
    /* Formato irregular "mÃ£o livre" para imitar o balÃ£o da referÃªncia */
    border-radius: 75px 0px 75px 0px;
    padding: 30px 30px 25px 30px;
    /* Mais espaÃ§o embaixo para o texto respirar */


    /* Mais largo */
    position: relative;

    /* InclinaÃ§Ã£o orgÃ¢nica */
    max-width: 100%;
    margin-top: 30px;
}

.japago-box-vermelho::before {
    content: none;
}

/* Ponta do balÃ£o ajustada */

.japago-box-vermelho p {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 24px;
    /* Maior */
    font-weight: 200;
    line-height: 1.0;
    /* Mais compacto */
    text-transform: uppercase;
}

.japago-box-vermelho small {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 11px;
    font-weight: 200;
}

/* Calculadora + Seta wrapper */
.japago-calculadora-wrapper {
    position: relative;
    text-align: center;
    padding: 10px;
    margin-bottom: -258px;
}

.japago-calculadora {
    display: flex;
    align-items: center;
    justify-content: center;
}

.japago-calculadora img {
    max-width: 100%;
    height: auto;
}

/* Seta vermelha curva */
.japago-seta {
    position: absolute;
    top: -70px;
    right: -230px;
    z-index: 2;
}

.japago-seta img {
    width: 300px;
    height: auto;
}

/* Vantagens - imagem do designer */
.japago-vantagens-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.japago-vantagens-img img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 20px rgba(0, 0, 0, 0.2));
}

/* ============================================
   BOX 05 - QUANTO CUSTA INVESTIR
   ============================================ */
.japago-custos {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: linear-gradient(135deg, #d41920 0%, #ED1C24 50%, #d41920 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 0;
}

.japago-custos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.japago-custos-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.japago-custos-watermark img {
    max-height: 610px;
    width: auto;
}

.japago-custos .container {
    position: relative;
    z-index: 1;
}

.japago-custos-sub {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.35;
    margin-bottom: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.japago-custos-h2 {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 72px;
    font-weight: 900;
    /* ExtraBold */
    font-style: italic;
    line-height: 0.9;
    margin: 5px 0 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
}

.japago-custos-imagem {
    text-align: left;
    margin-top: 40px;
}

.japago-custos-imagem img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
}

/* Tabela de investimento â€” barras brancas com texto escuro */
.japago-tabela {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Tabela - Linhas estilo "Faixa Cortada/Pincelada" */
.japago-linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 25px;
    background: var(--japago-white);
    /* Shape irregular "desenhado" */
    border-radius: 25px 0px 25px 0px;
    margin-bottom: 6px;
    /* Mais espaÃ§amento */

    /* Sutil */

    /* Detalhe de profundidade */
}

.japago-linha:hover {
    transform: scale(1.02) skewX(-1deg);
    z-index: 2;
    box-shadow: 5px 10px 20px rgba(0, 0, 0, 0.2);
}

.japago-linha-label {
    font-family: var(--font-concord);
    font-weight: 300;
    color: var(--japago-dark);
    font-size: 28px;
    text-transform: uppercase;
}

.japago-linha-label sup {
    color: var(--japago-dark);
    font-size: .55em;
    font-weight: normal;
    vertical-align: super;
    top: -.15em;
}

.japago-linha-valor {
    font-family: var(--font-concord);
    font-weight: 300;
    color: var(--japago-dark);
    font-size: 28px;
    text-transform: uppercase;
}

/* Total â€” fundo escuro */
.japago-linha-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 25px;
    background: var(--japago-dark);
    border-radius: 25px 0px 25px 0px;
    margin-bottom: 6px;
}

.japago-linha-total .japago-linha-label {
    color: var(--japago-red);
    font-size: 28px;
    font-weight: 800;
}

.japago-linha-total .japago-linha-valor {
    color: var(--japago-red);
    font-size: 28px;
    font-weight: 800;
}

.japago-linha-total:hover {
    background: #000;
}

/* Lucratividade â€” fundo escuro */
.japago-linha-lucro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 25px;
    background: var(--japago-dark);
    border-radius: 25px 0px 25px 0px;
    margin-bottom: 6px;
}

.japago-linha-lucro .japago-linha-label {
    color: var(--japago-red);
    font-size: 28px;
    font-weight: 800;
}

.japago-linha-lucro .japago-linha-valor {
    color: var(--japago-red);
    font-size: 28px;
    font-weight: 800;
}

.japago-linha-lucro:hover {
    background: #000;
}

/* Notas de rodapÃ© */
.japago-custos-notas {
    margin-top: 40px;
}

.japago-custos-notas p {
    font-family: var(--font-concord) !important;
    color: var(--japago-white) !important;
    font-size: 19px !important;
    font-weight: 300 !important;
    font-style: normal !important;
    line-height: 1.2 !important;
    letter-spacing: 0px !important;
    margin-left: 0 !important;
}

/* ============================================
   BOX 06 - FAÃ‡A PARTE DA FAMÃLIA
   ============================================ */
.japago-familia {
    position: relative;
    overflow: hidden;
    padding: 0px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 40%, #1a1a1a 100%);
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 0;
}

.japago-familia-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.japago-familia-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.35;
    z-index: 1;
    pointer-events: none;
}

.japago-familia-watermark img {
    max-height: 650px;
    width: auto;
}

.japago-familia .container {
    position: relative;
    z-index: 1;
}

/* Titulo "FAÃ‡A PARTE DA FAMÃLIA" */
.japago-familia-header {
    text-align: center;
    margin-bottom: 50px;
}

.japago-familia-toptext {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 37px;
    font-weight: 100;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: 3px;
    text-shadow: unset;
    text-align: center;
    margin-left: -90px;
    transform: skew(-5deg);
    -webkit-transform: skew(-5deg);
}

.japago-familia-brand {
    position: relative;
    font-family: var(--font-tenshoku);
    color: var(--japago-red);
    font-size: 180px;
    /* AUMENTADO SIGNIFICATIVAMENTE */
    line-height: 0.8;



    /* CompensaÃ§Ã£o visual */

    /* Sombra dura estilo sticker */
    top: 67px;
}

.japago-familia-subtext {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 37px;
    font-weight: 100;
    font-style: normal;
    line-height: 0.9;
    letter-spacing: 3px;
    text-shadow: unset;
    text-align: center;
    margin-top: 60px;
    margin-left: 187px;
    transform: skew(-5deg);
    -webkit-transform: skew(-5deg);
}

/* Homem centralizado */
.japago-familia-homem {
    text-align: center;
    margin-top: -10px;
}

.japago-familia-homem img {
    max-width: 100%;
    max-height: 550px;
    height: auto;
}

/* Contato â€” canto inferior esquerdo */
.japago-familia-contato {
    position: absolute;
    bottom: 40px;
    left: 15px;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.japago-contato-icons-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

/* BotÃ£o Voltar ao Topo - Estilo */
.japago-familia-voltar {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.japago-contato-icons-img {
    width: auto;
    height: 80px;
    object-fit: contain;
}

.japago-contato-texts-col {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 80px;
}

.japago-contato-text {
    font-family: var(--font-concord);
    color: var(--japago-white);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
}

/* BotÃ£o voltar â€” canto inferior direito */
.japago-familia-voltar {
    position: fixed;
    bottom: 130px;
    right: 30px;
    text-align: center;
    z-index: 5;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.japago-familia-voltar.show {
    opacity: 1;
    visibility: visible;
}

.japago-btn-voltar {
    background: var(--japago-red-light);
    color: var(--japago-white);
    padding: 15px 20px;
    font-size: 20px;
    font-family: var(--font-concord);
    font-weight: 500;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 25px 0px 25px 0px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.japago-btn-voltar:hover {
    background-color: #ff8c8c;
    color: var(--japago-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(237, 28, 36, 0.4);
    text-decoration: none;
}

/* ============================================
   RESPONSIVE â€” ReconstruÃ­do do Zero
   Baseado no Desktop, adaptando apenas o essencial.
   ============================================ */

/* === LAPTOP GRANDE (max-width: 1599px) â€” ex: 1440px, 1536px === */
@media (max-width: 1599px) {

    /* --- BOX 02 - SOBRE --- */
    .japago-sobre-top-text {
        font-size: 50px;
        text-indent: 155px;
    }

    .japago-sobre-brand-1 {
        font-size: 170px;
    }

    .japago-sobre-brand-2 {
        font-size: 300px;
    }

    .japago-sobre-brand-3 {
        font-size: 340px;
    }

    .japago-sobre-brand-4 {
        font-size: 250px;
    }

    .japago-sobre-content {
        margin-top: -100px;
    }

    .japago-sobre-btn {
        margin-top: -80px;
    }

    .japago-sobre-homem img {
        max-height: 850px !important;
    }

    /* --- BOX 03 - QUEM SOMOS --- */
    .japago-card-dark {
        max-width: 475px;
        min-height: 200px;
        padding: 40px 10px 20px 50px;
        margin-top: 35px;
    }

    .japago-card-dark p {
        font-size: 18px;
    }

    .japago-card-title {
        font-size: 26px;
        right: 120px;
    }

    .japago-big-number {
        font-size: 110px;
    }

    .japago-stats-label {
        font-size: 34px;
    }

    .japago-stats-top {
        /* margin-left: 160px; */
        padding-bottom: 100px;
    }

    .japago-stats-cities p {
        font-size: 24px;
    }

    .japago-mapa-loja {
        margin-top: -275px;
    }

    .japago-mapa-img {
        max-height: 470px;
    }

    .japago-loja3d {
        margin-right: -125px;
        margin-top: -80px;
    }

    .japago-loja3d img {
        max-height: 320px;
    }

    /* --- BOX 04 - PORQUÃŠ INVESTIR --- */
    .japago-investir-sub {
        font-size: 44px;
        margin-left: 10px !important;
    }

    .japago-investir-h2 {
        font-size: 100px;
    }

    .japago-box-vermelho {
        max-width: 100%;
        padding: 30px 30px 25px 30px;
    }

    .japago-box-vermelho p {
        font-size: 24px;
    }

    .japago-calculadora-wrapper {
        margin-bottom: -200px;
    }

    .japago-seta {
        right: -230px;
        top: -75px;
    }

    .japago-seta img {
        width: 300px;
    }

    /* --- BOX 05 - QUANTO CUSTA --- */
    .japago-custos-sub {
        font-size: 40px !important;
        margin-left: 10px !important;
    }

    .japago-custos-h2 {
        font-size: 60px !important;
    }

    .japago-linha-label {
        font-size: 28px;
    }

    .japago-linha-valor {
        font-size: 28px;
    }

    .japago-linha-total .japago-linha-label,
    .japago-linha-total .japago-linha-valor,
    .japago-linha-lucro .japago-linha-label,
    .japago-linha-lucro .japago-linha-valor {
        font-size: 28px;
    }

    .japago-custos-notas p {
        font-size: 16px !important;
    }

    .japago-custos-imagem img {
        max-height: 250px;
    }

    /* --- BOX 06 - FAÃ‡A PARTE --- */
    .japago-familia-brand {
        font-size: 180px;
        top: 67px;
    }

    .japago-familia-toptext {
        font-size: 37px;
    }

    .japago-familia-subtext {
        font-size: 37px;
        margin-left: 187px;
    }

    .japago-familia-homem img {
        max-height: 550px;
    }

    /* --- BOX 06 - Contato Redes Sociais --- */
    .japago-familia-contato img {
        height: 40px;
        width: auto !important;
        margin-right: 12px !important;
    }

    /* --- WhatsApp Float --- */
    #whatsapp-float {
        bottom: 15px;
        right: 20px;
    }

    #whatsapp-float img {
        width: 250px !important;
    }

    /* --- Watermarks menores --- */
    .japago-sobre-watermark img,
    .japago-quemsomos-watermark img {
        max-height: 550px;
    }

    .japago-investir-watermark img,
    .japago-custos-watermark img,
    .japago-familia-watermark img {
        max-height: 500px;
    }
}

/* === LAPTOP MÃ‰DIO (max-width: 1399px) â€” ex: 1280px, 1366px === */
@media (max-width: 1399px) {

    /* --- BOX 02 - SOBRE --- */
    .japago-sobre-top-text {
        font-size: 50px;
        text-indent: 155px;
    }

    .japago-sobre-brand-1 {
        font-size: 170px;
    }

    .japago-sobre-brand-2 {
        font-size: 300px;
    }

    .japago-sobre-brand-3 {
        font-size: 340px;
    }

    .japago-sobre-brand-4 {
        font-size: 250px;
    }

    .japago-sobre-content {
        margin-top: -100px;
    }

    .japago-sobre-btn {
        margin-top: -80px;
    }

    .japago-btn-saiba {
        font-size: 30px;
        padding: 10px 25px;
    }

    .japago-sobre-homem img {
        max-height: 850px !important;
    }

    /* --- BOX 03 - QUEM SOMOS --- */
    .japago-card-dark {
        max-width: 475px;
        min-height: 200px;
        padding: 40px 10px 20px 50px;
        margin-top: 35px;
    }

    .japago-card-dark p {
        font-size: 18px;
    }

    .japago-card-title {
        font-size: 26px;
        right: 120px;
    }

    .japago-big-number {
        font-size: 110px;
    }

    .japago-stats-label {
        font-size: 34px;
    }

    .japago-stats-top {
        /* margin-left: 165px; */
        padding-bottom: 100px;
    }

    .japago-stats-cities p {
        font-size: 24px;
    }

    .japago-mapa-loja {
        margin-top: -275px;
    }

    .japago-mapa-img {
        max-height: 470px;
    }

    .japago-loja3d {
        margin-right: -125px;
        margin-top: -80px;
    }

    .japago-loja3d img {
        max-height: 320px;
    }

    /* --- BOX 04 - PORQUÃŠ INVESTIR --- */
    .japago-investir-sub {
        font-size: 44px;
        margin-left: 10px !important;
    }

    .japago-investir-h2 {
        font-size: 100px;
    }

    .japago-box-vermelho {
        max-width: 100%;
        padding: 30px 30px 25px 30px;
    }

    .japago-box-vermelho p {
        font-size: 24px;
    }

    .japago-box-vermelho small {
        font-size: 11px;
    }

    .japago-calculadora-wrapper {
        margin-bottom: -180px;
    }

    .japago-seta {
        right: -230px;
        top: -75px;
    }

    .japago-seta img {
        width: 300px;
    }

    .japago-vantagens-img img {
        max-height: 500px;
    }

    /* --- BOX 05 - QUANTO CUSTA --- */
    .japago-custos-sub {
        font-size: 40px !important;
        letter-spacing: 2px !important;
        margin-left: 10px !important;
    }

    .japago-custos-h2 {
        font-size: 87px !important;
    }

    .japago-linha {
        padding: 4px 20px;
    }

    .japago-linha-label {
        font-size: 28px;
    }

    .japago-linha-valor {
        font-size: 28px;
    }

    .japago-linha-total,
    .japago-linha-lucro {
        padding: 4px 20px;
    }

    .japago-linha-total .japago-linha-label,
    .japago-linha-total .japago-linha-valor,
    .japago-linha-lucro .japago-linha-label,
    .japago-linha-lucro .japago-linha-valor {
        font-size: 28px;
    }

    .japago-custos-notas p {
        font-size: 20px !important;
    }

    .japago-custos-imagem img {
        max-height: 300px;
    }

    /* --- BOX 06 - FAÃ‡A PARTE --- */
    .japago-familia-brand {
        font-size: 180px;
        top: 67px;
    }

    .japago-familia-toptext {
        font-size: 37px;
    }

    .japago-familia-subtext {
        font-size: 37px;
        margin-left: 187px;
    }

    .japago-familia-homem img {
        max-height: 550px;
    }

    .japago-familia-header {
        margin-bottom: 50px;
    }

    /* --- BOX 06 - Contato Redes Sociais --- */
    .japago-familia-contato img {
        height: 40px;
        width: auto !important;
        margin-right: 12px !important;
    }

    /* --- WhatsApp Float --- */
    #whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    #whatsapp-float img {
        width: 250px !important;
    }

    /* --- Watermarks menores --- */
    .japago-sobre-watermark img,
    .japago-quemsomos-watermark img {
        max-height: 450px;
    }

    .japago-investir-watermark img,
    .japago-custos-watermark img,
    .japago-familia-watermark img {
        max-height: 420px;
    }
}

/* === TABLET (max-width: 991px) === */
@media (max-width: 991px) {

    /* SeÃ§Ãµes: ajustar layout para empilhamento */
    .japago-quemsomos,
    .japago-custos {
        min-height: auto;
        padding: 60px 0;
        overflow: visible;
        align-items: center;
    }

    /* SeÃ§Ãµes com imagem colando no fim: overflow hidden corta qualquer gap */
    .japago-sobre,
    .japago-investir,
    .japago-familia {
        min-height: auto;
        padding: 60px 0 0 0;
        overflow: hidden;
        align-items: center;
    }

    /* Containers e rows sem padding inferior */
    .japago-sobre>.container,
    .japago-investir>.container,
    .japago-familia>.container {
        padding-bottom: 0;
    }

    .japago-sobre>.container>.row,
    .japago-investir>.container>.row {
        margin-bottom: 0;
    }

    /* Mapa: resetar margem negativa que funciona sÃ³ no desktop side-by-side */
    .japago-mapa-loja {
        margin-top: 0;
        margin-left: 0;
    }

    /* Investir titulo: centralizar no empilhamento */
    .japago-investir-titulo {
        text-align: center;
        margin-left: 0;
    }

    .japago-investir-sub {
        text-align: center;
        margin-left: 0;
    }

    .japago-investir-h2 {
        text-align: center;
    }

    /* Custos titulo: centralizar */
    .japago-custos-titulo {
        text-align: center;
    }

    .japago-custos-h2 {
        text-align: center;
    }

    .japago-custos-sub {
        text-align: center;
    }

    /* === BOX 02 REORDERING: Text+Button -> Man (bottom) === */
    .japago-sobre>.container>.row {
        display: flex;
        flex-direction: column;
    }

    /* Col with man image (col-lg-5) = order 2 (bottom) */
    .japago-sobre>.container>.row>.sobre-01 {
        order: 2;
    }

    /* Col with text+button (col-lg-7) = order 1 (top) */
    .japago-sobre>.container>.row>.sobre-02 {
        order: 1;
    }

    /* Box 02 â€” Sobre: resetar layout desktop para mobile */
    .japago-sobre-content {
        margin-top: 0;
        margin-left: 0;
        align-items: center;
        text-align: center;
    }

    .japago-sobre-top-text {
        text-indent: 0;
        text-align: center;
        font-size: 28px;
        letter-spacing: 3px;
    }

    .japago-sobre-brand-1 {
        font-size: 80px;
        left: 0;
    }

    .japago-sobre-brand-2 {
        font-size: 150px;
        line-height: 1.1;
    }

    .japago-sobre-brand-3 {
        font-size: 175px;
    }

    .japago-sobre-brand-4 {
        font-size: 135px;
    }

    .japago-sobre-btn {
        margin-top: -50px;
        margin-bottom: 20px;
        text-align: center;
    }

    .japago-sobre-homem {
        text-align: center;
        margin-bottom: 0;
        padding-bottom: 0;
        margin-top: 30px;
    }

    /* Drop shadow removido + flush bottom */
    .japago-sobre-homem img {
        max-height: 450px;
        filter: none;
        display: block;
        margin: 0 auto -1px auto;
    }

    .japago-sobre-top-text {
        font-size: 36px;
        letter-spacing: 8px;
        text-align: center;
    }

    .japago-sobre-brand {
        font-size: 120px;
        text-align: center;
        margin-left: 0;
    }

    .japago-sobre-btn {
        text-align: center;
    }

    /* Box 03 â€” Quem Somos: stats empilha, manter cards */
    .japago-big-number {
        font-size: 80px;
    }

    .japago-stats-label {
        font-size: 22px;
    }

    .japago-stats-top {
        flex-direction: column;
        align-items: center;
        text-align: center !important;
        border-right: none;
        padding-bottom: 0;
        margin-left: 0;
    }

    .japago-big-number,
    .japago-stats-label {
        text-align: center;
    }

    /* Box 03: reordenar â€” cidades logo apÃ³s stats */
    .japago-quemsomos>.container>.row {
        display: flex;
        flex-direction: column;
    }

    /* Cards = order 1 */
    .japago-quemsomos>.container>.row>.col-sm-12.col-lg-5 {
        order: 1;
    }

    /* Stats col = display:contents para promover filhos */
    .japago-quemsomos>.container>.row>.col-sm-12.col-lg-4 {
        display: contents;
    }

    .japago-stats-top {
        order: 2;
        width: 100%;
        padding: 0 12px;
    }

    /* Cities = order 3 (logo apÃ³s stats) â€” bem prÃ³ximo do stats */
    .japago-quemsomos>.container>.row>.col-sm-12.col-lg-3 {
        order: 3;
        margin-top: -10px;
        margin-bottom: 25px;
    }

    .japago-stats-cities {
        text-align: center;
    }

    .japago-loja3d {
        order: 4;
        width: 100%;
        padding: 0 12px;
        margin-right: 0;
        margin-top: 0;
    }

    .japago-mapa-loja {
        order: 5;
        width: 100%;
        padding: 0 12px;
    }

    /* Card titles: centralizar horizontalmente, sem quebrar */
    .japago-card-title {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        max-width: none;
    }

    /* === BOX 04 REORDERING: Title+Balloon -> Advantages -> Calculator (bottom) === */
    .japago-investir>.container>.row {
        display: flex;
        flex-direction: column;
    }

    /* Col 1: Title + Balloon = order 1 */
    .japago-investir>.container>.row>.col-sm-12.col-lg-4:nth-child(1) {
        order: 1;
    }

    /* Col 3: Vantagens = order 2 */
    .japago-investir>.container>.row>.col-sm-12.col-lg-4:nth-child(3) {
        order: 2;
    }

    /* Col 2: Calculator = order 3 (bottom) */
    .japago-investir>.container>.row>.col-sm-12.col-lg-4:nth-child(2) {
        order: 3;
    }

    /* Hide seta on mobile */
    .japago-seta {
        display: none;
    }

    .japago-investir-h2 {
        font-size: 60px;
    }

    .japago-investir-sub {
        font-size: 32px !important;
    }

    /* Box 05 â€” Custos: escalonar tÃ­tulo, alinhar Ã  esquerda */
    .japago-custos-titulo {
        text-align: left;
    }

    .japago-custos-h2 {
        font-size: 55px;
        text-align: left;
    }

    .japago-custos-sub {
        font-size: 24px;
        text-align: left;
    }

    .japago-custos-imagem {
        margin-bottom: 30px;
    }

    /* Calculadora padding reset + flush */
    .japago-calculadora-wrapper {
        padding: 0;
        margin-bottom: 0;
    }

    .japago-calculadora {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .japago-calculadora img {
        display: block;
        margin: 0 auto -1px auto;
    }

    /* === BOX 06 REORDERING: Header -> Contato -> Voltar -> Homem (flush bottom) === */
    .japago-familia>.container {
        display: flex;
        flex-direction: column;
    }

    .japago-familia-header {
        order: 1;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .japago-familia-contato {
        order: 2;
        position: relative;
        bottom: auto;
        left: auto;
        justify-content: center;
        margin-top: 0;
        margin-bottom: 10px;
    }

    .japago-familia-voltar {
        order: 3;
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 0;
        margin-bottom: 25px;
    }

    .japago-familia-homem {
        order: 4;
        margin-bottom: 0;
        margin-top: 0;
    }

    .japago-familia-homem img {
        max-height: 400px;
        display: block;
        margin: 0 auto -1px auto;
    }

    .japago-familia-brand {
        font-size: 100px;
    }

    .japago-familia-toptext {
        font-size: 28px;
        margin-left: 0;
    }

    .japago-familia-subtext {
        font-size: 28px;
        margin-left: 187px;
    }

    /* Cards escuros */
    .japago-card-dark {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .japago-card-title {
        font-size: 22px;
    }

    /* Box vermelho: centralizar */
    .japago-box-vermelho {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    /* Loja 3D: centralizar */
    .japago-loja3d {
        text-align: center;
        margin-top: 0;
        margin-right: 0;
    }

    /* Whatsapp Badge */
    .japago-whatsapp-badge {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
    }

    .japago-whatsapp-badge span {
        font-size: 11px;
    }

    /* Box vermelho */
    .japago-box-vermelho {
        max-width: 100%;
    }

    /* Calculadora */
    .japago-calculadora-wrapper {
        margin-bottom: 0;
    }

    .japago-calculadora img {
        max-height: 350px;
    }

    /* Vantagens img */
    .japago-vantagens-img {
        margin-top: 20px;
    }
}

/* === MOBILE (max-width: 575px) === */
@media (max-width: 575px) {

    /* WhatsApp Float â€” reduzir para nÃ£o dominar a tela */
    #whatsapp {
        bottom: 10px !important;
        right: 10px !important;
    }

    #whatsapp img {
        max-width: 55px;
        height: auto;
    }

    /* SeÃ§Ãµes: padding compacto */
    .japago-quemsomos,
    .japago-custos {
        padding: 40px 0;
    }

    /* SeÃ§Ãµes com imagem colando no fim: sem padding-bottom, overflow hidden */
    .japago-sobre,
    .japago-investir,
    .japago-familia {
        padding: 40px 0 0 0;
        overflow: hidden;
    }

    /* Mapa e Loja 3D empilhados */
    .japago-mapa-loja {
        margin-top: -120px;
        margin-left: 0;
        padding: 0;
    }

    .japago-loja3d {
        text-align: center;
        margin-top: 0;
    }

    .japago-loja3d img {
        max-height: 180px;
    }

    /* Box 02 â€” Sobre: proporcional sem cortar */
    .japago-sobre-top-text {
        font-size: 24px;
        letter-spacing: 2px;
        text-align: center;
        text-indent: 40px;
    }

    .japago-sobre-brand {
        font-size: 45px;
        margin-left: 0;
        text-align: center;
    }

    /* Sobre: permitir texto visÃ­vel mas imagem flush */
    .japago-sobre {
        overflow: visible;
    }

    .japago-sobre>.container>.row>.col-sm-12.col-lg-5 {
        overflow: hidden;
    }

    /* Homem: flush com o fim da seÃ§Ã£o */
    .japago-sobre-homem {
        margin-bottom: 0;
        margin-top: 20px;
    }

    .japago-sobre-homem img {
        max-height: 350px;
        display: block;
        margin: 0 auto -1px auto;
        filter: none;
    }

    /* Box 03 â€” Quem Somos: nÃºmeros menores */
    .japago-big-number {
        font-size: 90px;
    }

    .japago-stats-label {
        font-size: 25px;
    }

    .japago-stats-cities p {
        font-size: 20px;
    }

    /* Cards: adaptar ao viewport */
    .japago-card-dark {
        padding: 30px 20px 18px 25px;
        margin-bottom: 20px;
        border-radius: 60px 0px 60px 0px;
        min-height: auto;
        max-width: 100%;
    }

    .japago-card-title {
        font-size: 15px;
        padding: 5px 10px;
        border-radius: 15px 0px 15px 0px;
    }

    .japago-card-dark p {
        font-size: 13px;
        line-height: 1.3;
    }

    /* Box 04 â€” Investir */
    .japago-investir-h2 {
        font-size: 70px;
    }

    .japago-investir-sub {
        font-size: 20px;
        letter-spacing: 1px;
    }

    .japago-investir-titulo {
        text-align: center;
        margin-left: 0;
    }

    /* Box vermelho â€” manter estilo sketch, reduzir */
    .japago-box-vermelho {
        border-radius: 50px 0px 50px 0px;
        padding: 22px 20px 20px;
        max-width: 100%;
    }

    .japago-box-vermelho p {
        font-size: 16px;
    }

    .japago-box-vermelho small {
        font-size: 9px;
    }

    /* Seta: jÃ¡ oculta via 991px, reforÃ§ar */
    .japago-seta {
        display: none;
    }

    /* Calculadora: flush com o fim da seÃ§Ã£o */
    .japago-calculadora-wrapper {
        margin-bottom: 0;
        padding: 0;
    }

    .japago-calculadora img {
        max-height: 280px;
        display: block;
        margin: 0 auto -1px auto;
    }

    /* Box 05 â€” Custos: proporÃ§Ã£o fiel ao desktop */
    .japago-custos-titulo {
        text-align: left;
        margin-bottom: 15px;
    }

    .japago-custos-sub {
        font-size: 32px !important;
        text-align: center !important;
        margin-left: 0 !important;
    }

    .japago-custos-h2 {
        font-size: 38px;
        text-align: center !important;
        letter-spacing: 2px;
        line-height: 0.9;
        margin: 2px 0 0 0;
        text-shadow: none;
    }

    /* Tabela: compactar */
    .japago-linha {
        padding: 6px 15px;
    }

    .japago-linha-label {
        font-size: 16px;
    }

    .japago-linha-valor {
        font-size: 16px;
    }

    .japago-linha-total,
    .japago-linha-lucro {
        padding: 6px 15px;
    }

    .japago-linha-total .japago-linha-label,
    .japago-linha-lucro .japago-linha-label {
        font-size: 16px;
    }

    .japago-linha-total .japago-linha-valor,
    .japago-linha-lucro .japago-linha-valor {
        font-size: 16px;
    }

    /* Box 06 â€” FamÃ­lia: textos maiores */
    .japago-familia-header {
        margin-bottom: 20px;
        padding-top: 20px;
    }

    .japago-familia-brand {
        font-size: 80px;
        top: 26px;
    }

    .japago-familia-toptext {
        font-size: 26px;
        letter-spacing: 2px;
        margin-left: -50px;
    }

    .japago-familia-subtext {
        font-size: 14px;
        margin-left: 80px;
    }

    .japago-familia-homem img {
        max-height: 300px;
        display: block;
        margin: 0 auto -1px auto;
    }

    /* Sobre homem drop shadow removido */
    .japago-sobre-homem img {
        filter: none;
    }

    .japago-contato-text {
        font-size: 16px;
    }

    .japago-contato-icons-img {
        height: 60px;
    }

    .japago-contato-texts-col {
        height: 60px;
    }

    .japago-contato-item span {
        font-size: 16px;
    }

    /* BotÃµes */
    .japago-btn-saiba,
    .japago-btn-voltar {
        padding: 10px 20px;
        font-size: 17px;
    }

    /* BotÃ£o Voltar ao Topo â€” conter no viewport */
    .japago-familia-voltar {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        margin-top: 20px;
    }

    /* WhatsApp Badge na seÃ§Ã£o */
    .japago-whatsapp-badge {
        display: none;
    }

    /* Custos notas */
    .japago-custos-notas p {
        font-size: 13px !important;
    }

    /* Sobre: reordenamento herdado de 991px */
    .japago-sobre {
        align-items: center;
    }

    .japago-sobre-homem img {
        max-height: 320px;
    }

    /* Calculadora wrapper */
    .japago-calculadora-wrapper {
        margin-top: 20px;
        margin-bottom: 0px;
    }

    /* Custos imagem */
    .japago-custos-imagem {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* Tabela: garantir legibilidade */
    .japago-linha {
        border-radius: 15px 0px 15px 0px;
        padding: 8px 15px;
    }

    /* Stats: border removido */
    .japago-stats-top {
        padding-bottom: 10px;
    }
}

.japago-linha-lucro .japago-linha-label sup {
    color: var(--japago-red);
    font-size: .55em;
    font-weight: normal;
    vertical-align: super;
    top: -.15em;
}

.japago-custos-notas p sup {
    color: var(--japago-white);
    font-size: .55em;
    font-weight: normal;
    vertical-align: super;
    top: -.15em;
}

.investimento-franquia {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Floating WhatsApp Button */
#whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 9999;
    transition: transform 0.3s ease;
}

#whatsapp-float img {
    width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

#whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 575px) {
    #whatsapp-float {
        bottom: 10px;
        right: 10px;
    }

    #whatsapp-float img {
        width: 200px;
    }
}

/* ============================================
   LAYOUT CORINGA - ESCALA GLOBAL PARA PC (1920x1080 -> MENOR)
   ============================================ */
@media (min-width: 1441px) and (max-width: 1919px) {

    html,
    body {
        zoom: calc(100vw / 1920);
    }

    [data-aos] {
        opacity: 1 !important;
        transform: translateZ(0) scale(1) !important;
        transition: none !important;
    }
}

@media (min-width: 1200px) and (max-width: 1440px) {

    html,
    body {
        zoom: 0.78;
    }

    #topo,
    .japago-sobre,
    .japago-quemsomos,
    .japago-investir,
    .japago-custos,
    .japago-familia {
        min-height: max(100vh, 950px);
    }

    [data-aos] {
        opacity: 1 !important;
        transform: translateZ(0) scale(1) !important;
        transition: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    html,
    body {
        zoom: 0.65;
    }

    #topo,
    .japago-sobre,
    .japago-quemsomos,
    .japago-investir,
    .japago-custos,
    .japago-familia {
        min-height: max(100vh, 950px);
    }

    [data-aos] {
        opacity: 1 !important;
        transform: translateZ(0) scale(1) !important;
        transition: none !important;
    }
}