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;
}

/* Seção de características */
.caracteristicas-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: left;
    flex-wrap: wrap;
}

.caracteristicas-content ul {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.caracteristicas-content ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.caracteristicas-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #303f9f;
    font-weight: bold;
}

.imagen-producto {
    width: 180px;
    height: auto;
}

/* Grid de informações técnicas */
.info-tecnica-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f5f7ff;
    padding: 1.5rem 1rem;
    border-radius: 8px;
    border-left: 4px solid #303f9f;
}

.info-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-align: center;
}

.info-value {
    font-size: 1.1rem;
    font-weight: bold;
    color: #303f9f;
    text-align: center;
}

/* Responsividade */
@media (max-width: 768px) {
    .caracteristicas-content {
        flex-direction: column;
        text-align: center;
    }

    .imagen-producto {
        width: 150px;
    }

    .info-tecnica-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .info-tecnica-grid {
        grid-template-columns: 1fr;
    }
}