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;
}

/* 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 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 h3 {
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1.5rem 0 1rem;
    color: #2e7d32;
}

.tolerancia-section p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.enfermedades-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.enfermedades-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.enfermedades-grid ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.enfermedades-grid ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2e7d32;
    font-weight: bold;
}

.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;
    }

    .enfermedades-grid {
        flex-direction: column;
        align-items: center;
    }
}