body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #333;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    color: #4CAF50;
    margin: 0;
}

.nav a {
    text-decoration: none;
    color: #333;
    margin-left: 25px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #4CAF50;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 50px;
}

.hero-content {
    max-width: 50%;
    margin-right: 50px;
}

.hero-content h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.hero-content p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #45a049;
}

.hero-image {
    max-width: 35%;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* --- Media Queries para Telas Menores --- */

@media (max-width: 1024px) {
    .header {
        padding: 20px 30px;
    }

    .nav a {
        margin-left: 15px;
    }

    .hero {
        padding: 60px 30px;
    }

    .hero-content {
        max-width: 60%;
        margin-right: 30px;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .nav {
        margin-top: 20px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav a {
        margin: 10px 0;
        text-align: center;
    }

    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-image {
        max-width: 80%;
    }

    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }

    .button {
        padding: 10px 20px;
    }
}