body {
    font-family: "Geist", serif;
    font-size: 15px;
    letter-spacing: -0.1px;
}

/* Navbar */
.navbar-linear {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(244, 246, 252, 0.24);
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar-linear.scrolled {
    background: #ffffff75;
    border-bottom: 1px solid rgba(233, 233, 233, 0.7);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #5e6ad2, #8b5cf6);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #656778;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    padding: 0.5rem 0;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #0d0628;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #596fe5, #8b5cf6);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-sign-in {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-sign-in:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.btn-get-started {
    background: linear-gradient(135deg, #5e6ad2, #8b5cf6);
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-get-started:hover {
    background: linear-gradient(135deg, #4c59c4, #7c3aed);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(94, 106, 210, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #0d0628;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(244, 246, 252, 1);
    padding: 1rem 0;
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease;
}

.nav-portal {
    display: none;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    padding: 0.75rem 2rem;
}

.mobile-menu-link {
    color: #656778;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: block;
    transition: color 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    color: #596fe5;
}

.mobile-actions {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-actions .btn-sign-in,
.mobile-actions .btn-get-started {
    text-align: center;
    padding: 0.75rem 1rem;
}

.nav-brand {
    width: 130px;
}

/** Site */
.background-card {
    background-size: cover;
    height: 100%;
    width: 100%;
    display: block;
}

.label-type {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: normal;
    color: #0d0628;
    background-color: #31aad21c;
    display: flex;
    padding: 0px 14px;
    border-radius: 25px;
    width: 90px;
    height: 30px;
    margin: 4px 0;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

.color-pricing {
    background-color: #c3ffef;
    color: #0d9b6c;
    border: 1px solid #0d9b6c;
}

h1 {
    font-weight: 600;
    color: #0d0628;
    font-size: 72px;
    letter-spacing: -3px;
    -webkit-font-smoothing: antialiased;
}

h2 {
    font-size: 3rem;
    letter-spacing: -2px;
    font-weight: 500;
}

h3 {
    font-weight: 500;
    letter-spacing: -1px;
}

.subtitle-text {
    font-size: 18px;
    color: #0d0628;
    font-weight: 400;
    letter-spacing: -0.5px;
    width: 80%;
    text-align: left
}

.site-header {
    padding: 5rem 0;
}

.site-info {
    padding: 8rem 0;
}

/** Card */
.card-feature {
    background-color: #f4f6fc;
    border-radius: 16px;
    border: 0 !important;
    margin: 10px 0;
    padding: 15px;
    min-height: 380px;
}

.card-feat-more {
    background-color: #f9fafd;
    border-radius: 16px;
    border: 0 !important;
    margin: 10px 0;
    padding: 15px;
}

.card-feature img {
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
    height: 200px;
}

.box-caract {
    font-size: 15px;
    font-weight: 400;
    color: #656778;
}

.subheadline {
    font-size: 18px;
    font-weight: 600;
}

.box-caract-text {
    font-weight: 400;
    font-size: 16px;
    color: #656778;
    letter-spacing: -0.5px;
}

.box-icon {
    background-color: #f6f6f6;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    color: #656778;
}

.home-highlight-title {
    font-weight: 500;
    color: #0d0628;
    font-size: 18px;
}

.home-highlight {
    font-weight: 400;
    color: #656778;
    font-size: 15px;
    opacity: .75;
}

.section-box {
    border-radius: 24px;
    background-color: #fff;
    padding: 50px 15px;
    justify-content: center;
    display: flex;
    align-items: center;
    height: 700px;
}

#headline-one {
    padding: 0 5%;
}

#img-desktop {
    display: block;
}

#img-mobile {
    display: none;
}

.img-mob {
    height: 600px;
}

.mb-5x {
    margin-bottom: 8rem;
}

.btn-principal {
    background-color: #596fe4;
}

.btn-principal:hover {
    background-color: #475cd0ff;
}

.btn-portal {
    background-color: #0d0628;
}

.btn-portal:hover {
    background-color: #1b1b1b;
}

.nav-actions .btn-portal {
    background-color: #fff;
    color: #0d0628;
    border: 1px solid #999;
}

.nav-actions .btn-portal:hover {
    background-color: #f4f6fc;
    color: #0d0628;
    border: 1px solid #999;
}

.box-feature {
    width: 90%;
}

/* Form */
.box-form {
    border-radius: 18px;
    background-color: #fff;
    padding: 20px;
    margin: 8px 0;
    border: 1px solid #eee;
}

.btn-default {
    height: 34px;
}

.card-feature-lg {
    min-height: 380px;
}

.card-feature-lg img {
    height: 300px;
}

.img-shadow {
    filter: drop-shadow(12px 6px 13px #999);
}

.card-textbox {
    color: #656778;
    font-size: 16px;
}

/* Content for demo */
.content {
    margin-top: 80px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    text-align: center;
    padding: 4rem 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #a0a0a0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.image-stack-container {
    position: relative;
    margin: 0 auto;
}

.background-image {
    width: 100%;
    height: 400px;
    background-image: url('./public/img/site/horky_app_tracking.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.background-section {
    background-image: url('./public/img/site/horky_professional_bg.jpg');
    background-size: cover;
    background-position: center;
}

.background-:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
}

.grid-overlay-image {
    background-color: transparent;
    border-radius: 20px;
    width: 100%;
    height: auto;
}

.overlay-image {
    width: 100%;
    max-width: 1440px;
    border-radius: 20px;
    box-shadow:  0 4px 6px #00000008,0 10px 14px #0000000a,0 24px 36px #0000000d,0 82px 118px #0000000a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f6f6f6;
}

.overlay-image:hover {
    transform: translateY(3px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

#headline-background {
    min-height: 760px;
}

.card-feat-more, .card-feature-lg {
    height: 100%;
}

.img-webp {
    height: 480px;
    object-fit: cover;
    object-position: center;
    filter: brightness(.95);
    border-radius: 20px;
}

.img-title {
    display: flex;
    row-gap: 20px;
    max-width: 620px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

/** Faq */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.faq-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    font-weight: 300;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid #ccc;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 2rem 2.5rem;
    border: none;
    background: transparent;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    color: #0d0628;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    color: #667eea;
}

.faq-question::after {
    content: '+';
    font-size: 2rem;
    font-weight: 300;
    color: #0d0628;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #0d0628;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: .75;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer-content {
    padding: 0 2.5rem 2rem 2.5rem;
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease 0.1s;
}

.faq-item.active .faq-answer-content {
    opacity: 1;
    transform: translateY(0);
}

.faq-decorative-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 50%;
    top: -50px;
    right: -50px;
    pointer-events: none;
}

/* Animação de entrada */
.faq-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Efeito de brilho sutil */
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    pointer-events: none;
}

.faq-item:hover::before {
    left: 100%;
}

    @media screen and (max-width: 768px) {
        .nav-portal {
            display: block;
            margin-left: auto;
            padding: 0 10px;
        }
        #img-desktop {
            display: none;
        }

        #img-mobile {
            display: block;
        }

        .grid-img {
            margin-bottom: 3rem;
        }

        .nav-menu,
        .nav-actions {
            display: none;
        }

        .mobile-menu-toggle {
            display: block;
        }

        .navbar-container {
            padding: 0 1rem;
        }

        h1 {
            font-size: 55px;
            line-height: 3.5rem;
        }

        h2 {
            font-size: 2.2rem;
        }

        .subtitle-text {
            width: 100%;
            text-align: center;
        }

        .box-caract {
            padding-right: 1.5rem !important;
            padding-left: 1.5rem !important;
        }

        .card-feat-more, .card-feature-lg {
            height: auto;
        }

        #img-desktop {
            display: none;
        }

        #img-mobile {
            display: block;
            border-radius: 20px;
        }

        .grid-img {
            margin-bottom: 3rem;
        }

        .label-type {
            margin: 0 auto;
        }

        #div-pricing {
            margin:  0 auto;
        }

        .box-icon {
            background-color: #f4f4f4;
        }

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

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

        .content {
            padding: 2rem 1rem;
        }

        .background-image {
            height: 300px;
        }
        
        .overlay-image {
            width: 100%;
            top: -20px;
        }

        .site-info {
            padding: 2.4rem 0;
        }

        .background-section {
            background-image: none;
        }

        .section-box {
            height: auto;
        }

        .price {
            min-height: 100%;
            margin-bottom: 1.5rem;
        }

        .price-body {
            height: auto;
        }

        /** Faq */
        .faq-title {
            font-size: 2.5rem;
        }
        
        .faq-question {
            padding: 1.5rem 1.5rem;
            font-size: 1.1rem;
        }
        
        .faq-answer-content {
            padding: 0 1.5rem 1.5rem 1.5rem;
        }
        
        .faq-container {
            padding: 0 1rem;
        }
    }

    @media (max-width: 480px) {
        .mobile-menu-item {
            padding: 0.75rem 1rem;
        }

        .mobile-actions {
            padding: 1rem;
        }
    }