﻿
* {
    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;
}



    .btn-primary:hover {
        background: #d63d5c;
        transform: translateY(-2px);
        box-shadow: 0 15px 35px rgba(230, 67, 101, 0.35);
    }



/* Hero Section */

.hero {
    padding: 69px 0 80px;
    background: linear-gradient(to bottom, white, rgba(230, 67, 101, 0.03));
    position: relative;
    overflow: hidden;
}



.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}



.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}



.hero p {
    font-size: 18px;
    color: var(--muted-foreground);
    margin-bottom: 32px;
    line-height: 1.7;
}



.stats-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
}



.stats-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}



.stats-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), rgba(230, 67, 101, 0.8));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(230, 67, 101, 0.2);
}



    .stats-icon svg {
        width: 24px;
        height: 24px;
        color: white;
    }



.stats-status {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--muted-foreground);
}



.stats-status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}



.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}



.stat-item {
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    background: var(--muted);
}



.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #E64365 !important;
    margin-bottom: 4px;
    line-height: 1.2;
}



.stat-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 400;
}



/* Floating Cards */

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}



.floating-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}



    .floating-card-icon.green {
        background: rgba(34, 197, 94, 0.1);
    }



        .floating-card-icon.green svg {
            color: #22c55e;
        }



    .floating-card-icon.pink {
        background: rgba(230, 67, 101, 0.1);
    }



        .floating-card-icon.pink svg {
            color: var(--primary);
        }



.floating-card-text {
    font-size: 12px;
    font-weight: 500;
}



.floating-card-subtext {
    font-size: 10px;
    color: var(--muted-foreground);
}



.floating-top-right {
    top: 100px;
    right: 24px;
}



.floating-bottom-left {
    bottom: 100px;
    left: 24px;
}



/* 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;
}



    .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: 20px;
        font-weight: 600;
        color: white;
        margin-bottom: 24px;
    }



.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}



    .problem-list li {
        display: flex;
        align-items: center;
        gap: 16px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
    }



.problem-list-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(230, 67, 101, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



    .problem-list-icon svg {
        width: 20px;
        height: 20px;
        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: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}



.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);
        }



/* 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: inherit;
    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;
}



.form-note {
    font-size: 12px;
    color: var(--muted-foreground);
    text-align: center;
    margin-top: 16px;
}



/* Features Section */

.features-section {
    padding: 96px 0;
    background: var(--foreground);
}



.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 48px;
}



.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.2s;
}



    .feature-card:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.15);
    }



.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(230, 67, 101, 0.15);
    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: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}



.feature-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}



.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}



.feature-tag {
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
    background: white;
    color: var(--foreground);
}



.control-card {
    background: linear-gradient(to right, rgba(230, 67, 101, 0.08), rgba(54, 212, 250, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}



    .control-card h3 {
        text-align: center;
        font-size: 18px;
        font-weight: 600;
        color: white;
        margin-bottom: 28px;
    }



    .control-card > p {
        text-align: center;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 24px;
    }



.control-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}



.control-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 16px;
}



.control-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}



    .control-icon svg {
        width: 24px;
        height: 24px;
        color: var(--secondary);
    }



.control-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}



/* Value Section */

.value-section {
    padding: 96px 0;
    background: white;
}



.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
}



.value-card {
    background: rgba(249, 250, 251, 0.5);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}



.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}



    .value-icon.primary {
        background: rgba(230, 67, 101, 0.1);
    }



        .value-icon.primary svg {
            color: var(--primary);
        }



    .value-icon.secondary {
        background: rgba(54, 212, 250, 0.1);
    }



        .value-icon.secondary svg {
            color: var(--secondary);
        }



    .value-icon.green {
        background: rgba(34, 197, 94, 0.1);
    }



        .value-icon.green svg {
            color: #22c55e;
        }



    .value-icon svg {
        width: 24px;
        height: 24px;
    }



.value-card h3 {
    font-weight: 600;
    margin-bottom: 8px;
}



.value-card p {
    font-size: 14px;
    color: var(--muted-foreground);
}



.implementation-card {
    background: rgba(54, 212, 250, 0.08);
    border: 1px solid rgba(54, 212, 250, 0.2);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}



.implementation-icon {
    width: 56px;
    height: 56px;
    background: rgba(54, 212, 250, 0.15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}



    .implementation-icon svg {
        width: 28px;
        height: 28px;
        color: var(--secondary);
    }



.implementation-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}



.implementation-card p {
    font-size: 15px;
    color: var(--muted-foreground);
}



/* 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: flex;
    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;
}



.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;
    }



.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) {

    .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;
}


[data-overlay-dark],
[data-overlay-light] {
    position: relative;
}

    [data-overlay-dark] .container,
    [data-overlay-light] .container {
        position: relative;
        z-index: 6;
    }

    [data-overlay-dark]:before,
    [data-overlay-light]:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }

    [data-overlay-dark]:before {
        background: #000;
    }

    [data-overlay-light]:before {
        background: #fff;
    }

    [data-overlay-dark] h1,
    [data-overlay-dark] h2,
    [data-overlay-dark] h3,
    [data-overlay-dark] h4,
    [data-overlay-dark] h5,
    [data-overlay-dark] h6,
    [data-overlay-dark] span {
        color: #fff;
    }

    [data-overlay-dark] p {
        color: #bbb;
    }

[data-overlay-dark="0"]:before,
[data-overlay-light="0"]:before {
    opacity: 0;
}

[data-overlay-dark="1"]:before,
[data-overlay-light="1"]:before {
    opacity: 0.1;
}

[data-overlay-dark="2"]:before,
[data-overlay-light="2"]:before {
    opacity: 0.2;
}

[data-overlay-dark="3"]:before,
[data-overlay-light="3"]:before {
    opacity: 0.3;
}

[data-overlay-dark="4"]:before,
[data-overlay-light="4"]:before {
    opacity: 0.4;
}

[data-overlay-dark="5"]:before,
[data-overlay-light="5"]:before {
    opacity: 0.5;
}

[data-overlay-dark="6"]:before,
[data-overlay-light="6"]:before {
    opacity: 0.6;
}

[data-overlay-dark="7"]:before,
[data-overlay-light="7"]:before {
    opacity: 0.7;
}

[data-overlay-dark="8"]:before,
[data-overlay-light="8"]:before {
    opacity: 0.8;
}

[data-overlay-dark="9"]:before,
[data-overlay-light="9"]:before {
    opacity: 0.9;
}

[data-overlay-dark="10"]:before,
[data-overlay-light="10"]:before {
    opacity: 1;
}





/* 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;
}