body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
}

.banner {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content {
    max-width: 900px;
    margin: auto;
    padding: 3rem 1rem;
    text-align: center;
}

/* Estilização do título com imagem */
.text-content {
    text-align: center;
    margin-bottom: 1rem;
}

.titulo-imagen {
    width: 100%;
    max-width: 400px;
    margin-bottom: 0.2rem;
}

.text-content h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.text-content p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: auto;
}

/* Linha separadora */
.separator {
    width: 80%;
    height: 1px;
    background-color: #ddd;
    margin: 2rem auto;
}

/* Seção de detalhes do produto */
.product-details {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.product-details h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Características principais */
.caracteristicas-content {
    display: flex;
    justify-content: center;
}

.caracteristicas-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.caracteristicas-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.caracteristicas-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* Tabela de informações técnicas */
.info-tecnica {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.tabla-tecnica {
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
}

.tabla-tecnica tr {
    border-bottom: 1px solid #eee;
}

.tabla-tecnica td {
    padding: 0.75rem 1rem;
}

.tabla-tecnica td:first-child {
    font-weight: bold;
    color: #2e7d32;
}

.imagen-tecnica {
    width: 250px;
    height: auto;
    border-radius: 50%;
}

/* Seção de vantagens */
.ventajas-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.ventajas-content ul {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.ventajas-content ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.ventajas-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.ventajas-image {
    width: 150px;
    height: auto;
    display: block;
}

/* Seção de tecnologia */
.tecnologia-section {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
    background-color: #f5f9f5;
    padding: 2rem;
    border-radius: 8px;
}

.tecnologia-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #2e7d32;
}

.tecnologia-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Seção de adaptação */
.adaptacion-section {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.adaptacion-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.adaptacion-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.adaptacion-section ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    display: inline-block;
    text-align: left;
}

.adaptacion-section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

/* Seção de tolerância a doenças */
.tolerancia-section {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.tolerancia-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tolerancia-section p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.nota-tolerancia {
    margin-top: 1.5rem;
    font-style: italic;
    color: #555;
}

/* Seção de instruções de uso */
.usage-instructions {
    text-align: center;
    margin-top: 2rem;
}

.usage-instructions h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.usage-instructions p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .info-tecnica {
        flex-direction: column;
    }

    .imagen-tecnica {
        width: 200px;
    }

    .ventajas-content {
        flex-direction: column;
        text-align: center;
    }

    .ventajas-image {
        width: 120px;
    }

    .tecnologia-section {
        padding: 1.5rem;
    }
}