/* 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/adr500/ADRF6010-Valente22.jpg');
    background-size: 100%;  /* Zoom out maior: ajuste conforme necessário */
    background-repeat: no-repeat;
    background-position: center 60%; /* Exibe a parte inferior da imagem */
    overflow: hidden;
}

/* Title Section (fora do hero) */
.title-section {
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
}
.title-section h1 {
    font-size: 2.5rem;
    color: #2e7d32;
}

/* Main Content Section */
.main-content {
    padding: 20px;
    text-align: center;
}

/* Content Wrapper: 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 500px;
    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.7rem;
    color: #003399;
    margin-bottom: 20px;
    margin-left: 50px;
}
.advantages-list {
    list-style: none;
    padding-left: 20px;
}
.advantages-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}
.advantages-list li::before {
    content: "•";
    color: #2e7d32;
    font-weight: bold;
    margin-right: 5px;
}

/* Responsividade */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .product-details {
        text-align: center;
    }
    .advantages-list {
        padding-left: 0;
    }
}
