.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    min-height: 100vh;
    width: 100%;
    box-sizing: border-box;
    
   
}

.content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 50%;
    gap: 1rem;
}

.text h1 {
    font-size: 50px;
    margin-bottom: 0.5rem;
    color: white;
}

.text h1 span {
    font-weight: bold;
}

.text p {
    color: #aaa;
    font-size: 24px;
    margin-bottom: 1.9rem;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-green {
    background-color: #22c55e;
    color: white;
    border-radius: 5px;
}

.btn-green:hover {
    background-color: #16a34a;
}

.btn-outline {
    border: 1px solid white;
    color: white;
    border-radius: 5px;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

.image img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #1a1a1a;
}

/* Responsividade para tablets */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .text h1 {
        font-size: 36px;
    }

    .text p {
        font-size: 20px;
    }

    .image img {
        width: 250px;
        height: 250px;
    }
}

/* Responsividade para celulares */
@media (max-width: 480px) {
    .text h1 {
        font-size: 28px;
    }

    .text p {
        font-size: 18px;
    }

    .image img {
        width: 200px;
        height: 200px;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}
