/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0F172A;
    color: white;
    overflow-x: hidden;
}

.background-glow {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
}

.glow-1 {
    background: #41BEF2;
    top: -150px;
    left: -150px;
}

.glow-2 {
    background: #5F3CF7;
    bottom: -150px;
    right: -150px;
}

header {
    width: 100%;
    padding: 24px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;

    backdrop-filter: blur(12px);
    background: rgba(15, 23, 42, 0.7);

    border-bottom: 1px solid rgba(255, 255, 255, 0.06);

    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    font-weight: 700;
}

.logo img {
    width: 70px;
    height: 70px;
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: white;
}

.hero {
    min-height: 92vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    padding: 0 8%;
}

.hero-content {
    max-width: 900px;
}

.badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.8);
}

h1 {
    font-size: 4rem;
    line-height: 1.05;

    margin-bottom: 24px;

    font-weight: 800;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #41BEF2, #5F3CF7);

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: rgba(255, 255, 255, 0.72);

    font-size: 1.2rem;
    line-height: 1.8;

    margin-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 16px;

    flex-wrap: wrap;
}

.btn {
    padding: 16px 28px;

    border-radius: 14px;

    text-decoration: none;
    font-weight: 600;

    transition: 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #41BEF2, #5F3CF7);
    color: white;

    box-shadow: 0 10px 40px rgba(95, 60, 247, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: white;
}

section {
    padding: 100px 8%;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.section-subtitle {
    max-width: 700px;

    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;

    margin-bottom: 60px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    padding: 32px;

    transition: 0.3s;

    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);

    border-color: rgba(95, 60, 247, 0.35);
}

.card h3 {
    margin-bottom: 16px;
}

.card p {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.7;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);

    padding: 50px 8%;

    color: rgba(255, 255, 255, 0.65);
}

.footer-grid {
    display: flex;
    justify-content: space-between;

    gap: 40px;

    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 18px;

    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 768px) {

    nav {
        display: none;
    }

    h1 {
        font-size: 2.7rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

}

/* ADICIONE ISSO NO FINAL DO style.css */

.legal-page {
    padding: 120px 8% 80px;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-header {
    margin-bottom: 60px;
}

.legal-badge {
    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);

    color: rgba(255, 255, 255, 0.8);

    margin-bottom: 24px;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 18px;
}

.legal-header p {
    color: rgba(255, 255, 255, 0.6);
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-card {
    background: rgba(255, 255, 255, 0.04);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 24px;

    padding: 36px;

    backdrop-filter: blur(10px);
}

.legal-card p {
    color: rgba(255, 255, 255, 0.75);

    line-height: 1.9;

    margin-bottom: 18px;
}

@media (max-width: 768px) {

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-card {
        padding: 24px;
    }

}

.product-links {
    margin-top: 60px;
}

.product-links a {
    display: inline-block;

    padding: 12px 18px;

    border-radius: 12px;

    text-decoration: none;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    color: white;

    transition: 0.3s;
}

.product-links a:hover {
    border-color: rgba(95, 60, 247, 0.4);

    transform: translateY(-2px);
}