/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    border-bottom: 1px solid #333;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.menu a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
}

.user-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.location {
    background-color: #333;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 14px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.hero h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

button {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.primary {
    background-color: #fff;
    color: #000;
}

.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
    text-align: center;
    background-color: #111;
}

.stat-item h3 {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
}

.stat-item p {
    color: #ccc;
}

/* Features Section */
.features {
    padding: 80px 5%;
    text-align: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #fff;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    padding: 30px;
    border-radius: 10px;
    background-color: #111;
}

.feature-item .icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #fff;
}

.feature-item p {
    color: #ccc;
}

/* Partners Section */
.partners {
    padding: 80px 5%;
    text-align: center;
    background-color: #000;
}

.partners h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #fff;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 60px;
    filter: brightness(0) invert(1);
}

/* Plans Section */
.plans {
    padding: 80px 5%;
    text-align: center;
    background-color: #111;
}

.plans h2 {
    font-size: 32px;
    margin-bottom: 60px;
    color: #fff;
}

.plan-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.plan-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    border-radius: 10px;
    background-color: #000;
    position: relative;
    border: 1px solid #333;
}

.plan-card.popular {
    border: 1px solid #fff;
}

.popular-tag {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #fff;
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.plan-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
}

.price {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #fff;
}

.plan-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-card ul li {
    margin-bottom: 10px;
    color: #ccc;
    position: relative;
    padding-left: 25px;
}

.plan-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
}

.plan-card button {
    width: 100%;
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    background-color: #000;
    padding: 60px 5% 30px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.app-stores {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.app-stores img {
    height: 40px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    color: #666;
    font-size: 14px;
}

/* Responsividade */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }

    .menu {
        margin: 20px 0;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .stats {
        flex-direction: column;
        gap: 40px;
    }

    .plan-cards {
        flex-direction: column;
        align-items: center;
    }
}