/* =====================================================
   RUMO VIRTUAL
   LANDING PAGE PREMIUM
===================================================== */

:root {

    --primary: #2563eb;
    --primary-dark: #1e40af;
    --success: #10b981;

    --text: #1f2937;
    --text-light: #6b7280;

    --white: #ffffff;
    --bg-light: #f8fafc;

    --shadow:
        0 10px 30px rgba(0,0,0,0.08);

    --shadow-hover:
        0 20px 40px rgba(0,0,0,0.12);

}

/* =====================================================
   RESET
===================================================== */

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: #ffffff;
    overflow-x: hidden;

}

a {

    text-decoration: none;

}

.section-padding {

    padding: 60px 0;

}

/* =====================================================
   HEADER
===================================================== */

.navbar {

    padding: 20px 0;
    transition: all .3s ease;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 10px rgba(0,0,0,.05);

}

.logo-rumo {

    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary) !important;

}

.nav-link {

    color: var(--text) !important;
    font-weight: 500;
    margin-left: 15px;

}

.nav-link:hover {

    color: var(--primary) !important;

}

/* =====================================================
   BOTÕES
===================================================== */

.btn-rumo {

    background: var(--primary);
    color: #fff;
    border-radius: 12px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    transition: all .3s ease;

}

.btn-rumo:hover {

    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);

}

.btn-outline-primary {

    border-radius: 12px;
    font-weight: 600;
    padding: 12px 28px;

}

/* =====================================================
   HERO
===================================================== */

.hero-section {

    min-height: 100vh;

    display: flex;
    align-items: center;

    background:
    linear-gradient(
        135deg,
        #eff6ff 0%,
        #ffffff 50%,
        #f8fafc 100%
    );

    padding-top: 120px;

}

.hero-badge {

    display: inline-block;

    background: rgba(37,99,235,.1);

    color: var(--primary);

    padding: 10px 20px;

    border-radius: 50px;

    font-size: .9rem;

    font-weight: 600;

    margin-bottom: 20px;

}

.hero-section h1 {

    font-size: 3.3rem;

    font-weight: 800;

    line-height: 1.2;

    margin-bottom: 25px;

}

.hero-text {

    font-size: 1.15rem;

    color: var(--text-light);

    margin-bottom: 35px;

    line-height: 1.8;

}

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 35px;

}

.hero-checks {

    display: grid;

    gap: 12px;

}

.hero-checks div {

    font-weight: 500;

}

.hero-checks i {

    color: var(--success);

    margin-right: 8px;

}

.hero-mockup {

    position: relative;

}

.hero-mockup img {

    border-radius: 20px;

    box-shadow: var(--shadow);

    animation: floating 5s ease-in-out infinite;

}

/* =====================================================
   BENEFÍCIOS
===================================================== */

.section-title {

    text-align: center;

    margin-bottom: 35px;

}

.section-title h2 {

    font-size: 2.5rem;

    font-weight: 700;

    margin-bottom: 15px;

}

.section-title p {

    color: var(--text-light);

    max-width: 700px;

    margin: auto;

}

.benefit-card {

    background: #fff;

    padding: 35px;

    border-radius: 20px;

    text-align: center;

    height: 100%;

    box-shadow: var(--shadow);

    transition: all .3s ease;

}

.benefit-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);

}

.benefit-card i {

    font-size: 3rem;

    color: var(--primary);

    margin-bottom: 20px;

}

.benefit-card h4 {

    font-size: 1.2rem;

    font-weight: 700;

    margin-bottom: 15px;

}

/* =====================================================
   PROBLEMA
===================================================== */

.problema-section {

    background: var(--bg-light);

    padding: 60px 0;

}

.problem-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    height: 100%;

    transition: all .3s ease;

    box-shadow: var(--shadow);

}

.problem-card:hover {

    transform: translateY(-8px);

}

.problem-card i {

    font-size: 3rem;

    color: #ef4444;

    margin-bottom: 20px;

}

.problem-card h5 {

    font-weight: 700;

    margin-bottom: 15px;

}

/* =====================================================
   SOLUÇÃO
===================================================== */

.feature-card {

    background: white;

    padding: 30px;

    border-radius: 18px;

    text-align: center;

    font-weight: 600;

    box-shadow: var(--shadow);

    transition: all .3s ease;

    height: 100%;

    display: flex;

    justify-content: center;

    align-items: center;

    min-height: 120px;

}

.feature-card:hover {

    transform: translateY(-6px);

    background: var(--primary);

    color: white;

}

/* =====================================================
   GRADIENTE DECORATIVO
===================================================== */

.hero-section::before {

    content: '';

    position: absolute;

    top: -200px;

    right: -150px;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background:

    radial-gradient(
        rgba(37,99,235,.15),
        transparent 70%
    );

}

.hero-section {

    position: relative;

    overflow: hidden;

}

/* =====================================================
   ANIMAÇÕES
===================================================== */

@keyframes floating {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-15px);

    }

    100% {

        transform: translateY(0px);

    }

}

/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #f1f1f1;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 10px;

}

/* =====================================================
   RESPONSIVO
===================================================== */

@media (max-width: 992px) {

    .hero-section {

        text-align: center;

        padding-top: 150px;

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-checks {

        margin-top: 20px;

    }

    .hero-section h1 {

        font-size: 2.3rem;

    }

}

@media (max-width: 768px) {

    .section-padding {

        padding: 70px 0;

    }

    .section-title h2 {

        font-size: 2rem;

    }

    .hero-section h1 {

        font-size: 2rem;

    }

    .hero-text {

        font-size: 1rem;

    }

    .btn-rumo,
    .btn-outline-primary {

        width: 100%;

    }

}

/* =====================================================
   DEMONSTRAÇÃO
===================================================== */

.demo-image {

    border-radius: 20px;

    box-shadow: var(--shadow);

}

.demo-list {

    display: grid;

    gap: 18px;

}

.demo-list div {

    font-size: 1.1rem;

    font-weight: 500;

}

.demo-list i {

    color: var(--success);

    margin-right: 10px;

}

/* =====================================================
   PLANOS
===================================================== */

.planos-section {

    background: var(--bg-light);

    padding: 60px 0;

}

.plan-card {

    background: #fff;

    border-radius: 25px;

    padding: 40px;

    height: 100%;

    position: relative;

    box-shadow: var(--shadow);

    transition: all .3s ease;

}

.plan-card:hover {

    transform: translateY(-8px);

}

.featured {

    border: 3px solid var(--primary);

    transform: scale(1.05);

}

.featured-badge {

    position: absolute;

    top: -15px;

    left: 50%;

    transform: translateX(-50%);

    background: var(--primary);

    color: white;

    padding: 8px 20px;

    border-radius: 50px;

    font-size: .8rem;

    font-weight: 700;

}

.price {

    font-size: 3rem;

    font-weight: 800;

    color: var(--primary);

    margin: 20px 0 10px;

}

.price-desc {

    color: var(--text-light);

}

.plan-card ul {

    list-style: none;

    padding: 0;

    margin: 30px 0;

}

.plan-card li {

    padding: 8px 0;

}

/* =====================================================
   OPCIONAIS
===================================================== */

.opcionais-section {

    padding: 60px 0;

}

.addon-card {

    background: white;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    box-shadow: var(--shadow);

    height: 100%;

    position: relative;

}

.addon-card i {

    font-size: 3rem;

    color: var(--primary);

    margin-bottom: 20px;

}

.dev-badge {

    position: absolute;

    top: 15px;

    right: 15px;

    background: #f59e0b;

    color: white;

    padding: 5px 10px;

    border-radius: 20px;

    font-size: .75rem;

}

/* =====================================================
   FAQ
===================================================== */

.faq-section {

    background: var(--bg-light);

}

.faq-wrapper {

    max-width: 900px;

    margin: auto;

}

.accordion-item {

    border: none;

    margin-bottom: 15px;

    border-radius: 15px !important;

    overflow: hidden;

    box-shadow: var(--shadow);

}

.accordion-button {

    font-weight: 600;

    padding: 20px;

}

.accordion-button:not(.collapsed) {

    background: var(--primary);

    color: white;

}

/* =====================================================
   CTA FINAL
===================================================== */

.cta-final {

    background:
    linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color: white;

    padding: 70px 0;

}

.cta-final h2 {

    font-size: 2.5rem;

    font-weight: 800;

    margin-bottom: 20px;

}

.cta-final p {

    max-width: 700px;

    margin: auto;

    margin-bottom: 25px;

    font-size: 1.15rem;

}

/* =====================================================
   FOOTER
===================================================== */

.footer-rumo {

    background: #111827;

    color: white;

    padding: 70px 0 30px;

}

.footer-rumo h3,
.footer-rumo h5 {

    margin-bottom: 20px;

}

.footer-rumo ul {

    list-style: none;

    padding: 0;

}

.footer-rumo li {

    margin-bottom: 10px;

}

.footer-rumo a {

    color: #d1d5db;

}

.footer-rumo a:hover {

    color: white;

}

.footer-copy {

    text-align: center;

    color: #9ca3af;

}

/* =====================================================
   PUBLICO ALVO
===================================================== */

.publico-card {

    background: white;

    border-radius: 20px;

    padding: 35px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: all .3s ease;

    height: 100%;

}

.publico-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-hover);

}

.publico-card i {

    font-size: 3rem;

    color: var(--primary);

    margin-bottom: 20px;

}

.publico-card h4 {

    margin-bottom: 15px;

    font-weight: 700;

}

/* =====================================================
   COMPARATIVO
===================================================== */

.comparativo-section {

    background: var(--bg-light);

}

.comparativo-table {

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow);

}

.comparativo-table thead {

    background: var(--primary);

    color: white;

}

.comparativo-table th {

    padding: 20px;

    border: none;

}

.comparativo-table td {

    padding: 18px;

    vertical-align: middle;

}

.comparativo-table tbody tr:hover {

    background: #f8fafc;

}

/* =====================================================
   ESTATÍSTICAS
===================================================== */

.stats-section {

    padding: 70px 0;

    background: white;

}

.stat-card {

    background: white;

    text-align: center;

    padding: 30px;

    border-radius: 20px;

    box-shadow: var(--shadow);

    transition: all .3s ease;

}

.stat-card:hover {

    transform: translateY(-6px);

}

.stat-number {

    font-size: 3rem;

    font-weight: 800;

    color: var(--primary);

    line-height: 1;

}

.stat-title {

    margin-top: 15px;

    color: var(--text-light);

    font-weight: 500;

}

.logo-site {

    height: 55px;
    width: auto;
    transition: all .3s ease;

}

section[id] {
    scroll-margin-top: 100px;
}