/* ======== HEADER  ======= */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(2, 6, 23, .85);
    backdrop-filter: blur(18px);

    border-bottom: 1px solid var(--primary);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 20px 0;
}
.logo {
    flex-shrink: 0;
}
.logo img {
    height: 55px;
    width: auto;
    display: block;
}

/* ====== MENU DESKTOP ======== */
.navbar {
    margin-left: auto;
}
.navbar ul {
    display: flex;
    align-items: center;
    gap: 20px;
}
.navbar a {
    position: relative;
    color: var(--light);
    transition: .3s ease;
}
.navbar a:hover,
.navbar a.active {
    color: var(--primary);
}
.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: .3s ease;
}
.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

/* ======= BOTÃO MOBILE ======== */
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.05);
    cursor: pointer;
    transition: .3s ease;
}
.menu-toggle:hover {
    border-color: var(--primary);
}
.menu-toggle i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* ========= OVERLAY ======= */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.75);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: .3s ease;
    z-index: 9998;
}
.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======= MOBILE LOGO ======== */
.mobile-logo {
    display: none;
}

/* ======= TABLET E MOBILE ========= */
@media (max-width: 991px) {
    .menu-toggle {
        display: flex;
    }

    .mobile-logo {
        display: block;
        margin-bottom: 40px;
    }

    .mobile-logo img {
        height: 50px;
        width: auto;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 340px;
        height: 100vh;
        background: #020617;
        border-left: 1px solid rgba(255,255,255,.08);
        padding: 50px 30px 40px;
        transition: .4s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    .navbar.active {
        right: 0;
    }

    .navbar ul {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .navbar li {
        width: 100%;
    }

    .navbar a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        padding: 8px 0;
    }
}

/* ======== MOBILE PEQUENO ============ */
@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }

    .navbar {
        width: 85%;
    }
}



/* ==========================================
   HERO SOCIAL MEDIA
========================================== */
.hero-page {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}
.hero-page::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    right: -250px;

    border-radius: 50%;

    background: rgba(0, 255, 136, .08);

    filter: blur(120px);

    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

/* ==========================================
   BREADCRUMB
========================================== */
.hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    font-size: .95rem;
}
.hero-breadcrumb a {
    color: var(--gray);
}
.hero-breadcrumb a:hover {
    color: var(--primary);
}
.hero-breadcrumb strong {
    color: var(--light);
}

/* ==========================================
   CONTENT
========================================== */
.hero-content h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.05;
    margin: 20px 0;
    max-width: 800px;
}
.hero-content p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;

    max-width: 650px;

    margin-bottom: 40px;
}

/* ==========================================
   BUTTONS
========================================== */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;

    margin-bottom: 50px;
}

/* ==========================================
   STATS
========================================== */
.hero-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.stat-box {

    min-width: 150px;

    padding: 24px;

    border-radius: 20px;

    background: rgba(255,255,255,.03);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(10px);
}
.stat-box span {

    display: block;

    font-size: 2rem;
    font-weight: 700;

    color: var(--primary);

    margin-bottom: 8px;
}
.stat-box p {

    margin: 0;

    color: var(--gray);

    font-size: .95rem;
}

/* ==========================================
   HERO VISUAL
========================================== */
.hero-visual {

    position: relative;

    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   CARD PRINCIPAL
========================================== */
.main-card {

    width: 100%;
    max-width: 380px;

    padding: 40px;

    border-radius: 28px;

    background:
        linear-gradient(
            135deg,
            rgba(0,255,136,.10),
            rgba(255,255,255,.03)
        );

    border: 1px solid rgba(0,255,136,.15);

    backdrop-filter: blur(20px);

    box-shadow:
        0 25px 60px rgba(0,0,0,.25);
}
.card-header {

    display: inline-flex;

    padding: 8px 14px;

    border-radius: 999px;

    margin-bottom: 20px;

    background: rgba(0,255,136,.10);

    color: var(--primary);

    font-size: .9rem;
}
.main-card h3 {

    font-size: 4rem;

    line-height: 1;

    margin-bottom: 10px;

    color: var(--primary);
}
.main-card p {
    margin: 0;
    color: var(--gray);
}

/* ==========================================
   FLOATING CARDS
========================================== */
.floating-card {

    position: absolute;

    padding: 14px 18px;

    border-radius: 16px;

    background: rgba(15,23,42,.95);

    border: 1px solid rgba(255,255,255,.08);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.25);

    font-size: .95rem;
    font-weight: 600;
}
.card-1 {
    top: 60px;
    right: 0;
}
.card-2 {
    bottom: 120px;
    left: 0;
}
.card-3 {
    bottom: 40px;
    right: 20px;
}

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

    .hero-page {
        padding: 140px 0 100px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-breadcrumb {
        justify-content: center;
    }

    .hero-visual {
        min-height: 350px;
        order: -1;
    }

    .main-card {
        max-width: 420px;
    }

}

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

    .hero-page {
        padding: 120px 0 80px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        width: 100%;
    }

    .hero-visual {
        min-height: auto;
    }

    .floating-card {
        display: none;
    }

    .main-card {
        max-width: 100%;
        padding: 30px;
    }

    .main-card h3 {
        font-size: 3rem;
    }

}

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

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-breadcrumb {
        font-size: .85rem;
    }

    .stat-box {
        padding: 20px;
    }

}




/* PROBLEMA */
.problem-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.problem-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 59, 59, .04);
    border-radius: 50%;
    filter: blur(120px);
    top: -250px;
    left: -250px;
}
.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
}
.problem-card {
    position: relative;
    padding: 40px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    transition: .4s;
    overflow: hidden;
}
.problem-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #ff4d4d;
    transform: scaleX(0);
    transition: .4s;
}
.problem-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,77,77,.3);
}
.problem-card:hover::before {
    transform: scaleX(1);
}
.problem-icon {
    font-size: 2.5rem;
    display: inline-flex;
    margin-bottom: 25px;
}
.problem-card h3 {
    margin-bottom: 15px;
}
.problem-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}
.problem-card strong {
    color: #ff6b6b;
    font-size: .95rem;
    display: block;
}


/* SOLUÇÕES */
.solution-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.solution-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    top: -250px;
    right: -250px;
    border-radius: 50%;
    background: rgba(0,255,136,.05);
    filter: blur(140px);
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
}
.solution-card {
    position: relative;
    padding: 35px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    transition: .4s;
    overflow: hidden;
}
.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,255,136,.25);
    box-shadow: 0 20px 50px rgba(0,255,136,.08);
}
.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(0,255,136,.08),
            transparent
        );
    opacity: 0;
    transition: .4s;
}
.solution-card:hover::before {
    opacity: 1;
}
.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(0,255,136,.1);
    border: 1px solid rgba(0,255,136,.15);

    margin-bottom: 25px;
}
.solution-icon i {
    font-size: 1.7rem;
    color: var(--primary);
}
.step-number {
    display: inline-block;
    margin-bottom: 12px;

    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 2px;

    color: var(--primary);
}
.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}
.solution-card p {
    margin: 0;
    line-height: 1.7;
    color: var(--gray);
}



/* PLATAFORMAS */
.platforms-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.platforms-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    bottom: -400px;
    right: -300px;
    border-radius: 50%;
    background: rgba(0,255,136,.05);
    filter: blur(150px);
}
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
}
.platform-card {
    position: relative;
    padding: 40px 35px;
    border-radius: 24px;

    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);

    transition: .4s;
    overflow: hidden;
}
.platform-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0,255,136,.2);
    box-shadow: 0 20px 50px rgba(0,255,136,.08);
}
.platform-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0,255,136,.08),
            transparent
        );
    opacity: 0;
    transition: .4s;
}
.platform-card:hover::before {
    opacity: 1;
}
.platform-icon {
    width: 72px;
    height: 72px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}
.platform-icon i {
    font-size: 2rem;
    color: var(--primary);
}
.platform-card h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
}
.platform-card p {
    margin-bottom: 20px;
    color: var(--gray);
    line-height: 1.7;
}
.platform-card span {
    display: inline-flex;
    align-items: center;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(0,255,136,.08);
    border: 1px solid rgba(0,255,136,.15);

    color: var(--primary);

    font-size: .85rem;
    font-weight: 600;
}



/* PROCESSO */
.process-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.process-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;
    top: -350px;
    left: -300px;
    border-radius: 50%;
    background: rgba(0,255,136,.04);
    filter: blur(150px);
}
.process-timeline {
    position: relative;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
    margin-top: 80px;
}
.process-timeline::before {
    content: "";

    position: absolute;

    top: 65px;
    left: 12%;
    right: 12%;

    height: 2px;

    background:
    linear-gradient(
        90deg,
        rgba(0,255,136,.1),
        rgba(0,255,136,.6),
        rgba(0,255,136,.1)
    );

    z-index: 0;
}



/* DIFERENCIAIS */
.diferenciais-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}
.diferenciais-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-top: 70px;
}
.diferencial-featured {

    padding: 50px;

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(0,255,136,.12),
            rgba(0,255,136,.03)
        );

    border: 1px solid rgba(0,255,136,.15);

    position: relative;
    overflow: hidden;
}
.diferencial-featured::before{
    content:"";
    position:absolute;

    width:400px;
    height:400px;

    top:-200px;
    right:-150px;

    border-radius:50%;

    background:rgba(0,255,136,.08);

    filter:blur(80px);
}

.featured-badge{
    width:max-content;

    display:flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:25px;

    background:rgba(0,255,136,.08);
    border:1px solid rgba(0,255,136,.15);

    color:var(--primary);
    font-size:.9rem;
    font-weight:600;
}
.featured-stats{

    display:flex;
    gap:30px;

    margin-top:40px;

    flex-wrap:wrap;
}
.featured-stats div{
    display:flex;
    flex-direction:column;
}
.featured-stats strong{
    font-size:2rem;
    color:var(--primary);
}
.featured-stats span{
    color:var(--gray);
    font-size:.9rem;
}

.diferenciais-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;
}
.diferencial-card{

    padding:35px;

    border-radius:24px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    transition:.4s;
}
.diferencial-card:hover{

    transform:translateY(-8px);

    border-color:rgba(0,255,136,.2);

    box-shadow:0 20px 40px rgba(0,255,136,.08);
}
.card-icon{

    width:70px;
    height:70px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    margin-bottom:20px;

    background:rgba(0,255,136,.08);

    border:1px solid rgba(0,255,136,.15);
}
.card-icon i{
    font-size:1.8rem;
    color:var(--primary);
}


/* FAQ */
.faq-section {
    padding: 120px 0;
    position: relative;
}
.faq-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}
.faq-header h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.1;
    margin: 20px 0;
}
.faq-header p {
    color: var(--gray);
    font-size: 1.1rem;
}
.faq-wrapper {
    max-width: 900px;
    margin: auto;
}
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: .4s;
}
.faq-item:hover {
    border-color: rgba(0,255,136,.25);
    transform: translateY(-3px);
}
.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--light);
    padding: 28px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-question i {
    color: var(--primary);
    transition: .4s;
}
.faq-item.active .faq-question i {
    transform: rotate(45deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 28px 28px;
    color: var(--gray);
    line-height: 1.8;
}
.faq-cta {
    max-width: 850px;
    margin: 80px auto 0;
    text-align: center;
    padding: 50px;
    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            rgba(0,255,136,.15),
            rgba(0,255,136,.03)
        );

    border: 1px solid rgba(0,255,136,.15);
}
.faq-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.faq-cta p {
    color: var(--gray);
    margin-bottom: 30px;
}
.faq-cta .btn-primary {
    min-width: 280px;
}
@media (max-width: 768px) {

    .faq-section {
        padding: 80px 0;
    }

    .faq-question {
        font-size: .95rem;
        padding: 22px;
    }

    .faq-answer p {
        padding: 0 22px 22px;
    }

    .faq-cta {
        padding: 35px 25px;
    }

}


/* CTA FINAL */
.cta-final-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}
.cta-final-section::before {
    content: "";

    position: absolute;

    width: 900px;
    height: 900px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: rgba(0,255,136,.06);

    filter: blur(180px);

    pointer-events: none;
}
.cta-final-box {

    position: relative;

    max-width: 1100px;

    margin: 0 auto;

    padding: 80px 60px;

    text-align: center;

    border-radius: 36px;

    background:
        linear-gradient(
            135deg,
            rgba(0,255,136,.12),
            rgba(255,255,255,.03)
        );

    border: 1px solid rgba(0,255,136,.15);

    overflow: hidden;
}
.cta-final-box::before {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    top: -200px;
    right: -150px;

    border-radius: 50%;

    background: rgba(0,255,136,.15);

    filter: blur(100px);
}
.cta-final-content h2 {

    max-width: 850px;

    margin: 20px auto;

    font-size: clamp(2.5rem,4vw,4.5rem);

    line-height: 1.1;
}
.cta-benefits {

    display: flex;

    justify-content: center;

    gap: 25px;

    flex-wrap: wrap;

    margin: 40px 0;
}

.benefit-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    border-radius: 999px;

    background: rgba(255,255,255,.05);

    border: 1px solid rgba(255,255,255,.08);
}
.benefit-item i {
    color: var(--primary);
}
.cta-buttons .btn {

    min-width: 300px;

    height: 64px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    font-size: 1.05rem;

    font-weight: 700;
}
.cta-trust {

    margin-top: 35px;

    color: var(--gray);

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}
.cta-trust i {
    color: var(--primary);
}


/* ==================================================
   RESPONSIVIDADE GLOBAL - SOCIAL MEDIA
================================================== */

/* DESKTOP PEQUENO */
@media (max-width: 1200px){

    .hero-grid{
        gap:60px;
    }

    .problem-grid,
    .solution-grid,
    .platforms-grid{
        grid-template-columns:repeat(2,1fr);
    }

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

    .diferenciais-layout{
        grid-template-columns:1fr;
    }

}

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

    section{
        padding:90px 0 !important;
    }

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

    .section-header h2{
        font-size:clamp(2rem,4vw,3rem);
    }

    /* HERO */

    .hero-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .hero-content{
        order:2;
    }

    .hero-visual{
        order:1;
    }

    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

    .hero-breadcrumb{
        justify-content:center;
    }

    /* GRIDS */

    .problem-grid,
    .solution-grid,
    .platforms-grid,
    .process-timeline{
        grid-template-columns:1fr 1fr;
    }

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

    .featured-stats{
        justify-content:center;
    }

    .process-timeline::before{
        display:none;
    }

}

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

    section{
        padding:70px 0 !important;
    }

    .section-header{
        margin-bottom:40px;
    }

    .section-header h2{
        font-size:2rem;
        line-height:1.2;
    }

    .section-header p{
        font-size:1rem;
    }

    /* HERO */

    .hero-page{
        padding-top:120px !important;
    }

    .hero-content h1{
        font-size:2.3rem !important;
        line-height:1.1;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
    }

    .hero-stats{
        display:grid;
        grid-template-columns:1fr;
    }

    .floating-card{
        display:none;
    }

    /* CARDS */

    .problem-grid,
    .solution-grid,
    .platforms-grid,
    .process-timeline,
    .diferenciais-grid{
        grid-template-columns:1fr;
    }

    .problem-card,
    .solution-card,
    .platform-card,
    .step-card,
    .diferencial-card{
        padding:30px;
    }

    .diferencial-featured{
        padding:35px;
    }

    .featured-stats{
        gap:20px;
    }

    .featured-stats strong{
        font-size:1.6rem;
    }

    .cta-final-box{
        padding:50px 30px;
    }

    .cta-final-content h2{
        font-size:2.1rem;
    }

    .cta-benefits{
        flex-direction:column;
    }

    .benefit-item{
        width:100%;
        justify-content:center;
    }

    .cta-buttons .btn{
        min-width:100%;
    }

}

/* MOBILE PEQUENO */
@media (max-width: 480px){

    .hero-content h1{
        font-size:1.9rem !important;
    }

    .main-card{
        padding:25px;
    }

    .main-card h3{
        font-size:2.5rem;
    }

    .problem-card,
    .solution-card,
    .platform-card,
    .diferencial-card{
        padding:25px;
    }

    .diferencial-featured{
        padding:25px;
    }

    .cta-final-box{
        padding:40px 20px;
    }

}




