/* Reset e Estilo Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fixa para o hero */
    background-image: url('/imghome/soluciones/valente/IMG_1019-scaled.jpg'); /* Ajuste conforme sua imagem */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom; /* Exibe a parte inferior da imagem */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Title Section: agora exibindo uma imagem */
.title-section {
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}
.title-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Main Content Section */
.main-content {
    padding: 20px;
    text-align: center;
}

/* Container para os detalhes: imagem e texto lado a lado */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Coluna para a imagem do produto */
.product-image-container {
    flex: 0 0 600px;
    text-align: center;
}
.product-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Coluna para o texto e vantagens */
.product-details {
    flex: 1;
    min-width: 300px;
    text-align: left;
}
.product-details h2 {
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 10px;
}
.product-details h3 {
    font-size: 1.5rem;
    color: #00339