/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: Arial, sans-serif;
    background-color: #0d0d0d;
    color: #f8f9fa;
    scroll-behavior: smooth;
    width: 100%;
}

/* Navbar fixa */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 2px solid #222;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 22px;
    font-weight: bold;
    color: #f8f9fa;
}

.navbar .logo img { 
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: #f8f9fa;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #72e1e2;
}

.login-btn {
    padding: 10px 18px;
    background: linear-gradient(0deg, #4d4992, #343256);
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.login-btn:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 180px 20px 100px;
    background: linear-gradient(360deg, #504b98, #1a1a1a);
    color: white;
}

.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #3fc8ea, #dc8c49);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #ddd;
}

/* Botão principal */
.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(90deg, #3fc8ea, #dc8c49);
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    text-align: center;
    padding: 80px 20px;
    background-color: #161616;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3fc8ea;
}

.feature-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.feature-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #3fc8ea;
}

/* Removendo os bullets das listas */
.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card li {
    font-size: 16px;
    margin: 8px 0;
}

/* Integrations Section */
.integrations {
    text-align: center;
    padding: 80px 20px;
    background-color: #504b98;
}

.integrations h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #3fc8ea;
}

.integration-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.integration-card { 
    padding: 20px; 
    width: 300px; 
    text-align: center;
}

.integration-card img { 
    margin-bottom: 10px;
}

.integration-card h3 {
    font-size: 20px;
    color: #3fc8ea;
}

/* Pricing Section */
.pricing {
    text-align: center;
    padding: 80px 20px;
    background-color: #161616;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #dc8c49;
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.pricing-card {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease-in-out;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #dc8c49;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
}

.pricing-card li {
    font-size: 16px;
    margin: 8px 0;
}

.pricing-card .price {
    font-size: 22px;
    font-weight: bold;
    margin: 30px;
}

.cta-pricing {
    display: inline-block;
    padding: 10px 20px;
    background: #3fc8ea;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-pricing:hover {
    background: #dc8c49;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 60px 20px;
    background: #007bff;
    color: white;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background: white;
    color: #007bff;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.2s ease-in-out;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    font-size: 14px;
    color: #888;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .hero {
        padding-top: 300px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .feature-container,
    .pricing-container,
    .integration-container {
        flex-direction: column;
        align-items: center;
    }
}
