﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #E64365;
    --secondary: #36D4FA;
    --foreground: #030301;
    --background: #ffffff;
    --muted: #f9fafb;
    --muted-foreground: #6b7280;
    --border: rgba(0,0,0,0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--foreground);
    background: var(--background);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.font-heading {
    font-family: 'Montserrat Alternates', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

    .nav-link:hover {
        color: var(--foreground);
    }

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    background: var(--primary);
    color: white;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(230,67,101,0.25);
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

    .btn-primary:hover {
        background: #d63d5c;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(230,67,101,0.35);
    }

/* Stats Panel */
.stats-panel {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    width: 100%;
}

.stats-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 20px;
}

.stats-panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground);
}

.stats-panel-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .stats-panel-icon svg {
        width: 20px;
        height: 20px;
        color: white;
    }

.stats-panel-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #22c55e;
    font-weight: 500;
}

    .stats-panel-status::before {
        content: '';
        width: 8px;
        height: 8px;
        background: #22c55e;
        border-radius: 50%;
    }

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--muted);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.stat-label {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.5;
}

/* Hero */
.hero {
    padding: 69px 0 120px;
    background: white;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(230,67,101,0.07) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin bottom: 20px;
    color: var(--foreground);
    font-family: 'Montserrat Alternates', sans-serif;
}

    .hero h1 em {
        font-style: normal;
        color: var(--primary);
    }

.hero-desc {
    font-size: 16px;
    color: var(--muted-foreground);
    margin-bottom: 24px;
    line-height: 1.7;
    text-align: left;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin bottom: 32px;
    flex-wrap: wrap;
}

/* Problem Section */
.problem-section {
    padding: 96px 0;
    background: var(--foreground);
}

.section-badge {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

    .section-badge.primary {
        color: var(--primary);
    }

    .section-badge.secondary {
        color: var(--secondary);
    }

.section-title {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    font-family: 'Montserrat Alternates', sans-serif;
}

    .section-title.white {
        color: white;
    }

.section-subtitle {
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
}

    .section-subtitle.white {
        color: rgba(255,255,255,0.6);
    }

.text-center {
    text-align: center;
}

.mb-14 {
    margin-bottom: 56px;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 48px;
}

.problem-card {
    padding: 32px;
    border-radius: 16px;
    background: rgba(230,67,101,0.03);
    border: 1px solid rgba(230,67,101,0.1);
}

    .problem-card h3 {
        font-size: 17px;
        font-weight: 600;
        color: white;
        margin-bottom: 12px;
        text transform: uppercase;
        letter-spacing: 0.03em;
    }

    .problem-card p {
        font-size: 15px;
        color: rgba(255,255,255,0.7);
        line-height: 1.6;
    }

.problem-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(230,67,101,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

    .problem-card-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary);
    }

.result-card {
    background: linear-gradient(to right, rgba(230,67,101,0.1), rgba(54,212,250,0.1));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.result-icon {
    width: 64px;
    height: 64px;
    background: rgba(230,67,101,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .result-icon svg {
        width: 32px;
        height: 32px;
        color: var(--primary);
    }

.result-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.result-card p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
}

.result-card .highlight {
    color: var(--primary);
    font-weight: 600;
}
/* Solution Section */
.solution-section {
    padding: 96px 0;
    background: white;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.solution-card {
    background: var(--foreground);
    border-radius: 24px;
    padding: 40px;
}

.solution-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .solution-icon svg {
        width: 48px;
        height: 48px;
        color: white;
    }

.solution-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(54,212,250,0.2);
    color: var(--secondary);
    font-size: 14px;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    font family: 'Montserrat Alternates', sans-serif;
}

.solution-card > p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.solution-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .solution-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        color: rgba(255,255,255,0.8);
        font-size: 15px;
    }

        .solution-features li svg {
            width: 16px;
            height: 16px;
            color: var(--secondary);
            flex-shrink: 0;
        }

.solution-cta {
    margin-top: 24px;
}
/* Form Card */
.form-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
}

    .form-card h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .form-card > p {
        color: var(--muted-foreground);
        font-size: 14px;
        margin-bottom: 24px;
    }

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

    .form-label .optional {
        color: var(--muted-foreground);
    }

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(249,250,251,0.5);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.2s;
}

    .form-input:focus, .form-textarea:focus {
        outline: none;
        border-color: var(--primary);
        box shadow: 0 0 0 3px rgba(230,67,101,0.1);
    }

.form-textarea {
    resize: none;
    min-height: 80px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}
/* Flow Section */
.flow-section {
    padding: 96px 0;
    background: var(--foreground);
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.flow-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 28px;
    position: relative;
}

.flow-step-number {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgb(229, 68, 102);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(- primary);
}

.flow-step h3 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    text transform: uppercase;
    letter-spacing: 0.03em;
}

.flow-step p {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.6;
}

.flow-arrow {
    position: absolute;
    right: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(54,212,250,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

    .flow-arrow svg {
        width: 14px;
        height: 14px;
        color: var(--secondary);
    }

.flow-step:last-child .flow-arrow {
    display: none;
}
/* Features Section */
.features-section {
    padding: 96px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.feature-card {
    background: rgba(249,250,251,0.5);
    border: 1px solid var(--border);
    border radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}

    .feature-card:hover {
        background: rgba(230,67,101,0.02);
        border-color: rgba(230,67,101,0.2);
    }

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(230,67,101,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .feature-icon svg {
        width: 24px;
        height: 24px;
        color: var(--primary);
    }

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 15px;
    color: var(--muted-foreground);
    line-height: 1.6;
}
/* CTA Section */
.cta-section {
    padding: 96px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.cta-blur {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: rgba(230,67,101,0.05);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: #E64365;
    border-radius: 16px;
    display: f lex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 40px rgba(54,212,250,0.25);
}

    .cta-icon svg {
        width: 40px;
        height: 40px;
        color: white;
    }

.cta-section h2 {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    font-family: 'Montserrat Alternates', sans-serif;
}

.cta-section p {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 36px;
    line height: 1.7;
}
/* Footer */
.footer {
    background: var(--foreground);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.6;
    margin bottom: 20px;
}

.footer-email {
    color: var(--secondary);
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .footer-links a {
        color: rgba(255,255,255,0.6);
        font-size: 15px;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: white;
        }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-contact-item svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.08);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,0.6);
        transition: all 0.2s;
    }

        .footer-social a:hover {
            background: rgba(255,255,255,0.15);
            color: white;
        }

    .footer-social svg {
        width: 20px;
        height: 20px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

    .footer-legal a {
        color: rgba(255,255,255,0.4);
        font-size: 14px;
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-legal a:hover {
            color: rgba(255,255,255,0.6);
        }

/* Responsive */
@media (max-width: 1024px) {
    .solution-grid, .problem-grid, .flow-steps {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .section-title {
        font-size: 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .nav {
        display: none;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 28px;
    }

    .stat-value {
        font-size: 28px;
    }
}


/* Responsive */

@media (max-width: 1024px) {

    .hero-grid,
    .solution-grid,
    .problem-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }



    .hero h1 {
        font-size: 40px;
    }



    .section-title {
        font-size: 32px;
    }



    .floating-card {
        display: none;
    }



    .control-grid {
        grid-template-columns: repeat(2, 1fr);
    }



    .value-grid {
        grid-template-columns: 1fr;
    }



    .footer-grid {
        grid-template-columns: 1fr;
    }



    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }



    .implementation-card {
        flex-direction: column;
        text-align: center;
    }



    .nav {
        display: none;
    }

    footer {
        background: #111;
        padding: 80px 0;
    }
}


.logo_footer {
    padding: 15px 0;
    width: 100px;
}

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

footer {
    background: #111;
    padding: 80px 0;
}

    footer .social a {
        color: #777;
        font-size: 18px;
        margin: 15px 10px;
    }

    footer p {
        color: #777;
        font-weight: 700;
    }

.information {
    padding: 80px 0;
    color: #fff;
    -webkit-transition: all .5s;
    transition: all .5s;
}

    .information .item {
        padding: 30px;
        background: rgba(70, 70, 70, 0.3);
        border-radius: 5px;
        cursor: pointer;
    }

    .information .info .item:last-child {
        margin-bottom: 0;
    }

    .information .info .item .icon {
        font-size: 45px;
        float: left;
    }

    .information .info .item .cont {
        margin-left: 60px;
    }

        .information .info .item .cont h6 {
            font-size: 16px;
            margin-bottom: 5px;
        }

        .information .info .item .cont p {
            color: #999;
        }


.bg-img {
    background-size: cover;
    background-repeat: no-repeat;
}






/* Submenu */
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
    }

    /* Hover para desktop */
    .dropdown-submenu:hover .dropdown-menu {
        display: block;
    }





.navbar {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    background: white;
    z-index: 9;
    min-height: 80px;
    color: black !important;
}

    .navbar .icon-bar {
        color: #111;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 13px;
        font-weight: 600;
        color: black;
        letter-spacing: .5px;
        margin: 15px 5px;
        -webkit-transition: all .5s;
        transition: all .5s;
    }

    .navbar .navbar-nav .active {
        color: #e64365 !important;
    }

.nav-scroll {
    background: white;
    border-bottom: 1px solid rgba(12, 12, 12, 0.04);
    padding: 0;
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
}

    .nav-scroll .icon-bar {
        color: #222;
    }

    .nav-scroll .navbar-nav .nav-link {
        color: #222;
    }

    .nav-scroll .navbar-nav .logo {
        padding: 15px 0;
        color: #111;
    }

.logo {
    width: 100px;
}
#logoAccount {
    width: 100%;
    height: auto;
}