.hero-section {
    max-width: 1216px;
    margin: 0 auto;
    padding-left: 4rem;  /* mesma margem do logo-container */
    padding-right: 4rem; /* mesma margem da social-icons */
    padding-top: 60px;
    padding-bottom: 60px;
    color: #fff8eb;
    text-align: left;
    font-family: 'Poppins';
}


.welcome-text {
    font-weight: 400; /* Poppins Regular */
    font-size: 15px;
    margin: 0 0 10px 0;
}

.hero-title {
    font-family: 'Poppins';
    font-weight: 600; /* semibold */
    font-size: 55px;
    color: #fff8eb;
    line-height: 0.8;
}

.hero-title .extrabold {
    font-weight: 800; /* extra bold */
    color: #f97907;
}

.hero-description {
    font-weight: 400; /* Poppins Regular */
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: #fff8eb;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 14px;
    border: none;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn.beta {
    background-color: #f97907;
    color: #fff;
}

.btn.beta:hover {
    background-color: #f55b4d;
}

.btn.info {
    background-color: transparent;
    color: #fff8eb;
    border: 2px solid #F97907;
}

.btn i {
    margin-left: 6px; /* aumenta a distância do texto para o ícone */
    font-size: 18px;
}


.btn.info:hover {
    background-color: #F97907;
    color: #fff8eb;
}

.platform-text {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 16px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #fff8eb;
}

.platform-icons {
    display: flex;
    gap: 20px;
}

.platform-icons a {
    color: #fff8eb;
    transition: color 0.3s ease;
}

.platform-icons a:hover {
    color: #ff6f61;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .platform-icons {
        justify-content: flex-start;
    }
}
