/* Reset e Estilo Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.7;
    background-color: #ffffff;
}

/* Seção Hero */
.hero {
    position: relative;
    width: 100%;
    height: 450px; /* Altura fixa para a área hero */
    overflow: hidden;
    background-image: url('/imghome/soluciones/adr300/FOTO_ADR300.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 55%; /* Exibe a parte inferior da imagem */
}

/* Seção de Detalhes */
.details-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.details-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Coluna para a imagem do produto */
.details-info {
    flex: 0 300px 300px;
    text-align: center;
}
.details-info .product-image {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Coluna para o texto (título, subtítulo e vantagens) */
.details-text {
    flex: 1;
    padding: 20px;
}
.details-text h1 {
    font-size: 2.8rem;
    color: #2e7d32;
}
.details-text h2 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #003399;
}
.advantages-list {
    list-style: none;
    margin: 20px 0;
    max-width: 600px;
    text-align: left;
    padding-left: 0;
}
.advantages-list li {
    margin-bottom: 10px;
    color: #333333;
}

/* Seção da Tabela */
.table-section {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.table-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2e7d32;
}
.table-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px auto;
}
.table-section table thead {
    background-color: #2e7d32;
    color: #ffffff;
}
.table-section table th,
.table-section table td {
    border: 1px solid #dddddd;
    padding: 15px;
    text-align: center;
    font-size: 1rem;
}
.table-section table tbody tr:nth-child(odd) {
    background-color: #f9f9f9;
}
.table-section table tbody tr:nth-child(even) {
    background-color: #ffffff;
}
