:root {
    /* --main-color: #3baee9; */
    --main-color: #fc0345;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0E0E0E;
    color: #F2F2F2;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    background: rgba(14, 14, 14, .8);
    backdrop-filter: blur(10px);
    z-index: 10;
}

header .container.mobile {
    display: none;
}

header .container.mobile i {
    font-size: 2rem;
}

section.header {
    height: 86px;
}

.container {
    max-width: 1200px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img.logo {
    width: 140px;
    height: 54px;
}

header img.lang {
    width: 32px;
    height: 32px;
    cursor: pointer;
}


header nav {
    display: flex;
    gap: 20px;   
}

header nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
}

header ul li {
    display: flex;
    align-items: center;
}

header nav a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.2s ease;
}

header nav a:hover {
    color: #999999;
}

.container.desktop nav ul.btn a {
    display: flex;
    align-items: center;
    padding: 4px 12px;
    background: rgba(255,255,255,.1);
    border-radius: 15px;
    gap: 10px;
}

header nav ul.btn {
    gap: 10px;
}

div.container.mobile nav {
    position: fixed;
    top: 74px;
    left: 0;
    background: rgba(43, 43, 43, .96);
    backdrop-filter: blur(10px);
    width: 100%;
    z-index: 9;
    display: none;
}

div.container.mobile ul {
    gap: 0;
    flex-direction: column;
}

div.container.mobile ul li {
    width: 100%;
    border-bottom: 1px solid #3f3f3f;
}

div.container.mobile ul li a {
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 12px 0;
    display: flex;
    align-items: center;
    margin-left: 25px;
    gap: 10px;
}

div.container.mobile ul li a i {
    color: var(--main-color);
    font-size: 1.3rem;
}

/* Hero */
.hero {
    width: 100%;
    text-align: center;
    padding: 7rem 2rem 6rem 2rem;
}

.hero h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.hero p {
    max-width: 780px;
    margin: 0 auto 2rem auto;
    color: #CFCFCF;
    font-weight: 400;
    font-size: 1.1rem;
}

.hero video {
    max-width: 1100px;
    width: 90vw;
}

.features-section {
    background-color: #141414;
    padding: 4rem 2rem;
}

.features-section h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FFFFFF;
}

.features-section h3 i {
    color: var(--main-color);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2rem;
}

.feature-card {
    background-color: #1C1C1C;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card i {
    font-size: 2rem;
    color: var(--main-color);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.feature-card p {
    color: #BFBFBF;
    font-weight: 400;
    font-size: 0.95rem;
    max-width: 240px;
}

/* Seção de Planos */
.pricing-section {
    background-color: #0E0E0E;
    padding: 4rem 2rem;
}

.pricing-section h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FFFFFF;
}


.pricing-section h3 i {
    color: var(--main-color);
}

.pricing-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background-color: #1C1C1C;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    text-align: center;
}

.pricing-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    white-space: nowrap;
    color: #FFFFFF;
}

.pricing-card h4 i {
    color: var(--main-color);
    font-size: 1.6rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #FFFFFF;
}

.pricing-card p {
    color: #BFBFBF;
    font-weight: 400;
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.pricing-card p.emphasis {
    color: #fff;
    margin-bottom: .5rem;
}

.action-section {
    margin-top: 1.5rem;
}

.pricing-card button {
    font-family: 'Montserrat', sans-serif;
    background-color: #e67e22;
    border: 2px solid #e67e22;
    border-radius: 8px;
    color: #FFFFFF;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.pricing-card button:hover {
    border: 2px solid #f39c12;
    background-color: #f39c12;
    color: #fff;
}

.pricing-card .price span {
    color: #bbbbbb;
}

.pricing-card.cheaper button {
    border: 2px solid #3498db;
    background: #3498db;
}

.pricing-card.cheaper button:hover {
    border: 2px solid #2786c5;
    background: #2786c5;
}

.pricing-card.advanced button {
    border: 2px solid #5c20cd;
    background: #5c20cd;
}

.pricing-card.advanced button:hover {
    border: 2px solid #561bc5;
    background: #561bc5;
}

.pricing-card.cheaper .price, .pricing-card.cheaper i {
    color: #3baee9;
    margin: 0;
}

.pricing-card.medium .price, .pricing-card.medium i {
    color: #ffa500;
    margin: 0;
}

.pricing-card.advanced .price, .pricing-card.advanced i {
    color: #5c20cd;
}

/* Seção de Testemunhos */
.testimonials-section {
    background-color: #141414;
    padding: 4rem 2rem;
}

.testimonials-section h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #FFFFFF;
}

.testimonials-section i {
    color: var(--main-color);
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #1C1C1C;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFFFFF;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.testimonial-nav:hover {
    opacity: 1;
}

.testimonial-left {
    left: 1rem;
}

.testimonial-right {
    right: 1rem;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: #BFBFBF;
    max-width: 700px;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.testimonial-author {
    margin-top: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-author-role {
    color: #999999;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

/* Footer */
footer {
    background-color: #0E0E0E;
    color: #777777;
    text-align: center;
    padding: 3rem 2rem;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
}

footer a {
    color: var(--main-color);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 1.5rem;
    }

    header .container.mobile {
        display: flex;
    }

    header .container.desktop {
        display: none;
    }

    header img.logo {
        width: 108px;
        height: 42px;
    }

    .hero {
        padding: 5rem 1rem 6rem 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: repeat(1, auto);
    }

    li.language {
        display: none;
    }

    .features-section h3 i, .pricing-section h3 i, .testimonials-section i {
        display: none;
    }

    footer {
        font-size: 0.8rem;
    }
}