#tabelaProdutos {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  background-color: #ffffff;
}

#tabelaProdutos td {
  padding: 12px;
  border-bottom: 1px solid #dee2e6;
  border-right: none; /* Remove borda lateral direita */
  border-left: none;  /* Remove borda lateral esquerda */
  vertical-align: middle;
}

#tabelaProdutos tr:nth-child(even) {
  background-color: #f8f9fa;
}

#tabelaProdutos tr:last-child td {
  border-bottom: none; /* Remove a linha inferior da última linha */
}

#tabelaProdutos a {
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

#tabelaProdutos .tabela-nome a:hover {
  color: #0056b3;
	text-decoration: underline
}

#tabelaProdutos .btn-preco, .produto-detalhe .btn-afiliado {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #28a745;
  border: none;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  margin: 0 auto;
  max-width: 300px;
  text-transform: uppercase;
}

#tabelaProdutos .tabela-btn {
  text-align: center;
}

#tabelaProdutos .tabela-btn .btn-subtext {
  font-size: 14px;
  color: #4f4f4f;
  margin-top: 4px;
  display: block;
}

#tabelaProdutos .btn-preco, .produto-detalhe img{
	margin: 0 auto;
}

#tabelaProdutos .btn-preco:hover, .produto-detalhe .btn-afiliado:hover {
  background-color: #218838;
}

#tabelaProdutos img {
  max-width: 100px;
  border-radius: 4px;
}

/* Responsividade */
@media (max-width: 768px) {
  #tabelaProdutos tbody,
  #tabelaProdutos tr,
  #tabelaProdutos td {
    display: block;
    width: 100%;
  }
	#tabelaProdutos .star-rating {
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 4px; /* Espaçamento entre estrelas e número */
		text-align: center;
	}

  #tabelaProdutos td {
    padding: 10px 0;
    text-align: center;
    border-bottom: none;
  }

  #tabelaProdutos .tabela-imagem img {
    margin: 0 auto;
    display: block;
  }

  #tabelaProdutos .tabela-nome {
    margin-bottom: 10px;
  }

  #tabelaProdutos .btn-preco {
    margin-top: 10px;
  }
}

/* Pros e Contra */
.pros_contra {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  background-color: #ffffff;
  text-align: left;
}

.pros_contra th {
  padding: 12px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
}

.pros_contra th:first-child {
  background-color: #28a745; /* Verde para "Prós" */
  width: 50%; /* Fixar largura para a coluna "Prós" */
}

.pros_contra th:last-child {
  background-color: #dc3545; /* Vermelho para "Contras" */
  width: 50%; /* Fixar largura para a coluna "Contras" */
}

.pros_contra td {
  padding: 12px;
  vertical-align: middle;
  text-align: left;
}

.pros_contra td:first-child {
  background-color: #dff5e1; /* Verde claro para "Prós" */
  color: #155724; /* Texto verde escuro */
}

.pros_contra td:last-child {
  background-color: #f8d7da; /* Vermelho claro para "Contras" */
  color: #721c24; /* Texto vermelho escuro */
}

.pros_contra tr td {
  border-bottom: 1px solid #dee2e6; /* Linha separadora discreta */
}

.pros_contra tr:last-child td {
  border-bottom: none; /* Remove a linha inferior da última linha */
}

.produto-detalhe img{
	max-height: 45vh;
}

.cta-robo-seo {
    background-color: #4CAF50; /* Cor verde padrão */
    color: white!important;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-robo-seo:hover {
    background-color: #45a049; /* Cor verde mais escura no hover */
    box-shadow: 0px 0px 10px rgba(0, 128, 0, 0.5); /* Sombra verde suave */
}



/* Estilos gerais da tabela */
#tabelaProdutocircle {
  width: 100%;
  max-width: 800px; /* Define um limite de largura máxima */
  margin: 0 auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Estilizando as células */
#tabelaProdutocircle td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

/* Ajustando a imagem do produto */
.tabela-imagem img {
  width: 100px;
  height: auto;
  max-height: 100px;
  object-fit: contain;
  border-radius: 5px;
}

/* Ajustando a célula da tabela para centralizar o texto verticalmente */
.tabela-nome {
  display: table-cell; /* Mantém o comportamento da tabela */
  vertical-align: middle; /* Centraliza verticalmente */
}

/* Estilizando o nome do produto */
.tabela-nome a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #007bff;
  transition: color 0.3s ease;
}

/* Estilizando o botão de compra */
.btn-afiliado a {
  background-color: #4CAF50;
  color: white;
  padding-top: 1px;
	padding-bottom: 16px;
	padding-left: 10px;
	padding-right: 10px;
  text-decoration: none;
  border-radius: 5px;
	font-size: 12px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-afiliado a:hover {
  background-color: #45a049;
}

/* Responsividade */
@media screen and (max-width: 768px) {
  #tabelaProdutocircle {
    width: 100%;
    display: block;
    overflow-x: auto;
  }

  #tabelaProdutocircle tbody {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #tabelaProdutocircle tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  #tabelaProdutocircle td {
    display: block;
    width: 100%;
    text-align: center;
    border-bottom: none;
  }

  .tabela-imagem img {
    width: 80px;
    max-height: 80px;
  }

  .tabela-nome a {
    font-size: 14px;
  }

  .tabela-rating svg {
    max-width: 50px;
  }

  .btn-afiliado a {
    padding: 8px 12px;
    font-size: 14px;
  }
}


/*** Robô Amazon Review individual ***/

#product-card-robo {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

/* Imagem do Produto */
#product-card-robo img {
    width: 90px;
    height: auto;
    object-fit: contain;
    margin: 0;
}

/* Informações do Produto */
#product-card-robo .product-info-robo {
    flex: 1;
    min-width: 180px;
    max-width: 55%;
}

/* Título do Produto */
#product-card-robo .product-info-robo a {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; /* Adiciona os 3 pontinhos */
    max-width: 100%;
    line-height: 1.4em;
    height: 2.8em; /* 2 linhas com line-height de 1.4 */
    white-space: normal;
}

/* Avaliação */
#product-card-robo .product-rating {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}

/* CTA image */
.cta-image-robo img{
	margin-left: auto;
	margin-right: auto;
}

/* Botão de Afiliado */
#product-card-robo .btn-afiliado {
    display: inline-block;
    background: #19a63c;
    color: white;
    font-weight: bold;
    padding: 10px 15px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
}

/* Texto Menor do Botão */
#product-card-robo .btn-afiliado span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    opacity: 0.8;
}

/* Efeito Hover do Botão */
#product-card-robo .btn-afiliado:hover {
    background: #12802e;
}

/* 📱 Responsividade */
@media (max-width: 600px) {
    #product-card-robo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #product-card-robo img {
        width: 150px; /* Aumenta a imagem no mobile */
    }

    #product-card-robo .product-info-robo {
        max-width: 90%;
        text-align: center;
    }

    #product-card-robo .product-rating {
        width: 60px; /* Reduz o tamanho do SVG */
        height: 60px;
        margin: 10px 0;
    }

    #product-card-robo .btn-afiliado {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
	#product-card-robo .product-info-robo a{
		 height: auto;
		-webkit-line-clamp: 5;
	}
}


/*** CTA Amazon Review Individual - Estilizado com ID para evitar conflitos ***/

#cta-star-robo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 0px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
	margin-bottom: 16px
}

/* Imagem do Produto */
#cta-star-robo .cta-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
}

#cta-star-robo .cta-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
}

/* Informações do Produto */
#cta-star-robo .cta-info {
    flex: 1;
    max-width: 50%;
		display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Título */
#cta-star-robo .cta-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* Avaliação */
#cta-star-robo .cta-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

#cta-star-robo .stars-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

#cta-star-robo .stars svg {
    width: 24px;
    height: 24px;
    fill: #fed94b;
}

#cta-star-robo .rating-text {
    font-size: 14px;
    color: #555;
	  line-height: 1.2;
		margin: 0
}

/* Botão de Afiliado */
#cta-star-robo .cta-button {
    display: block;
    background: #19a63c;
    color: white;
    font-weight: bold;
    padding: 12px 18px;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
    white-space: nowrap;
		max-width: 200px;
    margin: 0 auto;
}

#cta-star-robo .cta-button span {
    display: block;
    font-size: 12px;
    font-weight: normal;
    opacity: 0.8;
}

#cta-star-robo .cta-button:hover {
    background: #12802e;
}

.btn-afiliado{
		display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    background-color: #28a745;
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3sease;
    margin: 0 auto;
    max-width: 300px;
    text-transform: uppercase;
}

.affiliate-disclaimer {
  background-color: #f0f0f0;
  padding: 16px;
  border-radius: 6px;
  color: #333;
  margin: 1.5em 0;
	font-size: 16px;
  text-align: center;
}
.affiliate-disclaimer p{
	margin: 0
}

/* 📱 Responsividade */
@media (max-width: 768px) {
    #cta-star-robo {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #cta-star-robo .cta-image,
    #cta-star-robo .cta-info {
        max-width: 100%;
    }

    #cta-star-robo .cta-button {
        width: 100%;
    }
}
/* Centralizar todos os H2 e aplicar negrito */
h2 {
    text-align: center;
    font-weight: bold;
}
h3 {
    font-weight: bold;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Subtítulos */
.section-title {
  font-size: 1.8em;
  font-weight: bold;
  margin: 20px 0 10px;
  color: #333;
}

/* Texto principal */
.section-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}
.faq-question {
  cursor: pointer;
  font-weight: bold;
  color: #222;
  position: relative;
}
.faq-answer {
  display: none;
  margin-top: 8px;
  color: #444;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
}
.faq-question.active::after {
  content: "-";
}
.faq-question.active + .faq-answer {
  display: block;
}

/* Avaliações */
.review-stars {
  color: #FFD700;
  font-size: 1.2em;
}
.review-note {
  font-weight: bold;
  color: #333;
}
.review-box {
  border: 1px solid #eee;
  padding: 15px;
  margin-bottom: 15px;
  background: #fafafa;
}

.ast-post-nav {
    display: none !important;
}        
    