body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #ff6b35; /* Cor do header ajustada para combinar com o logo */
    color: white;
    padding: 15px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.logo-small {
    width: 40px;
    height: 40px;
}

.blog-title {
    font-size: 24px;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    color: #333;
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
}

.product-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 30px;
    text-align: center;
    position: relative;
    border: 3px solid #ff6b35; /* Borda laranja mais grossa */
    margin: 0 15px 30px 15px; /* Espaçamento dos lados */
}

.product-number {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #ff6b35;
    color: white;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.product-image {
    max-width: 300px;
    height: 250px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.product-highlight {
    color: white;
    font-weight: bold;
    margin-bottom: 5px;
    background-color: #ff6b35;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.product-rating {
    color: #ff6b35; /* Estrelas laranjas */
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.product-card p {
    text-align: left;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-card li {
    text-align: left;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.product-card li::before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Botões de ação */
.product-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 14px;
    min-width: 160px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-amazon,
.btn-magazineluiza {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-amazon::before,
.btn-magazineluiza::before {
    content: \"\";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 6s infinite linear;
    z-index: -1;
}

.btn-amazon {
    background-color: #ff6b35;
    color: white;
}

.btn-amazon:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-magazineluiza {
    background-color: #007bff;
    color: white;
}

.btn-magazineluiza:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Seções adicionais */
section {
    margin-bottom: 50px;
}

section h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

section p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .container {
        padding: 20px 15px;
    }
    
    h1 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    h2 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .product-card {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .product-image {
        max-width: 250px;
        height: 200px;
    }
    
    .product-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        margin-bottom: 10px;
    }
    
    .logo-small {
        width: 32px;
        height: 32px;
    }
    
    .blog-title {
        font-size: 20px;
    }
    
    .header-content {
        padding: 0 15px;
    }
    
    article > p {
        font-size: 1rem;
        padding: 0 10px;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
        padding: 0 10px;
    }
    
    h2 {
        font-size: 1.4rem;
        padding: 0 10px;
    }
    
    .product-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .product-image {
        max-width: 200px;
        height: 180px;
    }
    
    .blog-title {
        font-size: 18px;
    }
    
    .logo-small {
        width: 28px;
        height: 28px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .product-number {
        width: 30px;
        height: 30px;
        font-size: 14px;
        top: 10px;
        left: 10px;
    }
}

@media screen and (max-width: 360px) {
    .container {
        padding: 15px 10px;
    }
    
    h1 {
        font-size: 1.6rem;
    }
    
    .product-card {
        padding: 12px;
    }
    
    .product-image {
        max-width: 180px;
        height: 160px;
    }
    
    .blog-title {
        font-size: 16px;
    }
}



.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
}

.table-responsive table {
    width: 100%;
    min-width: 700px; /* Ajuste este valor conforme necessário para evitar quebra */
    border-collapse: collapse;
    margin: 0 auto;
}

.table-responsive th,
.table-responsive td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}

.table-responsive th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.table-responsive tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-responsive tbody tr:hover {
    background-color: #f1f1f1;
}

.affiliate-notice {
    font-size: 0.75em;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 5px;
    color: #888;
}

.summary-section {
    background-color: #e6f7ff;
    border-left: 5px solid #007bff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 5px;
    margin-left: 20px; /* Adicionando margem esquerda */
    margin-right: 20px; /* Adicionando margem direita */
}

.summary-section h2 {
    color: #007bff;
    margin-top: 0;
    text-align: left;
}

.summary-section p {
    color: #333;
    font-size: 1.1em;
    line-height: 1.6;
    padding: 0 180px; /* Aumenta o espaçamento lateral da conclusão */
}

@media screen and (max-width: 768px) {
    .summary-section p {
        padding: 0 100px; /* Espaçamento menor para tablets */
    }
}

@media screen and (max-width: 480px) {
    .summary-section p {
        padding: 0 50px; /* Espaçamento menor para celulares */
    }
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    font-size: 0.9em;
    margin-top: 50px;
}

footer p {
    margin: 5px 0;
}

/* Adicionado para espaçamento da introdução */
main > section:first-of-type p {
    padding: 0 30px; /* Ajuste o valor conforme necessário */
    text-align: justify; /* Justifica o texto para evitar palavras soltas */
    text-justify: inter-word;
}

/* Centralizar seção de artigos relacionados */
.related-articles {
    text-align: center;
    margin: 40px 0;
}

.related-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    display: inline-block;
    margin: 8px 15px;
}

.related-articles a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

.related-articles a:hover {
    text-decoration: underline;
    color: #0056b3;
}













































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																																

