/* Importação da fonte Syne */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Syne:wght@400..800&display=swap');

/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Syne', sans-serif; /* Aplicando a fonte Syne como padrão */
}

body {
    background-color: #2a0a5c;
    color: #fff;
    line-height: 1.6;
}

/* Navigation Bar (Mobile-First) */
.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    background-color: #ff007a;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.logo img {
    height: 40px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700; /* Peso bold para o logotipo */
    color: #fff;
    text-transform: uppercase;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400; /* Peso normal para links */
}

.nav-links li a:hover {
    color: #e6006c;
}

.contact-btn {
    background-color: #fff;
    color: #ff007a;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600; /* Peso semi-bold para o botão */
}

.contact-btn:hover {
    background-color: #f0f0f0;
}

/* Hero Section (Mobile-First) */
.hero {
    padding: 100px 20px 40px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #2a0a5c 0%, #1a053f 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/pattern-diagonal.svg') no-repeat center right;
    background-size: auto 100%;
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    max-width: 100%;
    position: relative;
    z-index: 1;
}

.welcome-text {
    color: #ff007a;
    font-size: 12px;
    font-weight: 600; /* Peso semi-bold para destaque */
    margin-bottom: 10px;
    text-transform: uppercase;
}

h1 {
    font-size: 28px;
    font-weight: 800; /* Peso mais bold para títulos */
    margin-bottom: 15px;
    line-height: 1.2;
}

.description {
    font-size: 16px;
    color: #ccc;
    font-weight: 400; /* Peso normal para texto descritivo */
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.start-btn {
    background-color: #ff007a;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600; /* Peso semi-bold para botões */
}

.start-btn:hover {
    background-color: #e6006c;
}

.plans-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 5px;
    display: inline-block;
    font-weight: 600; /* Peso semi-bold para o link */
    transition: all 0.3s;
}

.plans-link:hover {
    background-color: #fff;
    color: #2a0a5c;
}

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700; /* Peso bold para números */
}

.number-sup {
    font-size: 24px;
    color: #E91460;
    font-weight: 700; /* Peso bold para números */
}

.stat-item p {
    font-size: 12px;
    color: #ccc;
    font-weight: 400; /* Peso normal para legendas */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    position: relative;
    z-index: 1;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    max-width: 250px;
    border-left: 4px solid #ff007a;
}

.feature-card img {
    height: 30px;
    margin-bottom: 10px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 700; /* Peso bold para títulos dos cards */
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 12px;
    color: #ccc;
    font-weight: 400; /* Peso normal para texto dos cards */
}

/* Media Queries for Larger Screens (Desktop Adjustments) */
@media (min-width: 768px) {
    /* Navigation Bar */
    .navbar {
        flex-direction: row;
        justify-content: space-between;
        padding: 20px 50px;
    }

    .logo {
        margin-bottom: 0;
    }

    .nav-links {
        flex-direction: row;
        gap: 20px;
        margin-bottom: 0;
    }

    .nav-links li a {
        font-size: 16px;
    }

    .contact-btn {
        padding: 10px 20px;
        font-size: 16px;
    }

    /* Hero Section */
    .hero {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 120px 50px 50px;
    }

    .hero-content {
        max-width: 50%;
        text-align: left;
    }

    .welcome-text {
        font-size: 14px;
    }

    h1 {
        font-size: 48px;
    }

    .description {
        font-size: 18px;
        max-width: 500px;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }

    .start-btn {
        padding: 12px 25px;
        font-size: 16px;
    }

    .plans-link {
        padding: 12px 25px;
        font-size: 16px;
    }

    .stats {
        justify-content: flex-start;
        gap: 40px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-item p {
        font-size: 14px;
    }

    .hero-image img {
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        max-width: 40%;
        margin: 0;
    }

    .feature-cards {
        flex-direction: row;
        position: absolute;
        bottom: 50px;
        right: 50px;
        gap: 20px;
        align-items: flex-end;
    }

    .feature-card {
        width: 200px;
    }

    .feature-card h3 {
        font-size: 18px;
    }
}