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.5rem;
}

.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: #1976d2;
}

.imagen-producto {
    width: 220px;
    height: auto;
}

/* Seção de tolerância/sanitário */
.tolerancia-section {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.tolerancia-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.sanitario-grid {
    display: flex;
    justify-content: center;
}

.tabla-sanitario {
    border-collapse: collapse;
    text-align: left;
    font-size: 1rem;
    background-color: #f5f9ff;
    border-radius: 8px;
    overflow: hidden;
}

.tabla-sanitario tr {
    border-bottom: 1px solid #e0e0e0;
}

.tabla-sanitario tr:last-child {
    border-bottom: none;
}

.tabla-sanitario td {
    padding: 0.75rem 1.5rem;
}

.tabla-sanitario td:first-child {
    font-weight: bold;
    color: #1976d2;
}

.nota-tolerancia {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: #666;
}

/* Seção de manejo */
.manejo-section {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.manejo-section h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.manejo-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.manejo-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 500px;
    padding: 1rem 1.5rem;
    background-color: #f5f9ff;
    border-radius: 8px;
}

.manejo-label {
    font-weight: bold;
    color: #1976d2;
    text-align: left;
}

.manejo-value {
    color: #333;
    text-align: right;
}

/* Responsividade */
@media (max-width: 768px) {
    .info-tecnica {
        flex-direction: column;
    }

    .imagen-producto {
        width: 180px;
    }

    .manejo-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .manejo-label,
    .manejo-value {
        text-align: center;
    }
}