body{
  overflow-x: hidden;
}


.logo {
  height: 75px;
  width: 300px;
  margin-left: 50px;
}

.slogan {
  font-size: 12px;
  font-weight: 400;
  color: #000;
}

.top-left {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

a {
  text-decoration: none !important;
}

.top-left img {
  height: 50px;
  margin-left: 15px;
  margin-right: 10px;
}

.icons {
  display: flex;
  align-items: center;
  gap: 25px; 
  margin-right: 30px;
}
.icon-item {
  display: flex;
  align-items: center;
  gap: 25px; 
  margin-right: 30px;
}

.icons img {
  height: 35px;
  margin-left: 15px;
  cursor: pointer;
}

.navbar {
  transition: box-shadow 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}


.navbar-toggler {
  border: none;
  padding: 4px 8px;
  margin-left: 15px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
}


.navbar-section {
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.navbar-section:last-child {
  border-bottom: none;
}


.top-left-mobile {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
}

.top-left-mobile img {
  height: 40px;
  margin-right: 10px;
}

.navbar-brand-mobile img.logo-mobile {
  height: 60px;
  width: auto;
}


.icons-mobile .icon-item {
  text-decoration: none;
  color: #000;
  transition: transform 0.3s ease;
  margin-right: 0;
  gap: 0;
}

.icons-mobile .icon-item:hover {
  transform: translateY(-2px);
  color: #611610;
}

.icons-mobile img {
  height: 30px;
  width: auto;
  margin-bottom: 5px;
}

.icons-mobile small {
  font-size: 12px;
  font-weight: 500;
}


.navbar-nav.flex-column .nav-link {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #333;
}

.navbar-nav.flex-column .nav-link:last-child {
  border-bottom: none;
}

.navbar-nav.flex-column .nav-link:hover {
  color: #611610;
  background-color: #f8f9fa;
  padding-left: 10px;
  transition: all 0.3s ease;
}


@media (min-width: 992px) {
  .navbar-left, .navbar-center, .navbar-right {
    flex: 1;
  }
  
  .navbar-center {
    display: flex;
    justify-content: center;
  }
  
  .navbar-left {
    display: flex;
    justify-content: flex-start;
  }
  
  .navbar-right {
    display: flex;
    justify-content: flex-end;
  }
  

  .logo-desktop {
    height: 80px;
    width: auto;
    margin-left: 0;
  }
  

  .icons {
    gap: 20px;
    margin-right: 0;
  }
  
  .icons img {
    height: 35px;
    margin-left: 0;
  }
  

  .desktop-nav-menu {
    border-top: 1px solid #ddd;
    padding: 15px 0;
    background-color: #fff;
  }
  
  .desktop-nav-menu .navbar-nav {
    gap: 60px;
  }
  
  .desktop-nav-menu .nav-link {
    padding: 12px 0;
    font-size: 17px;
    font-weight: 600;
    color: #333 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
  }
  
  .desktop-nav-menu .nav-link:hover {
    color: #611610 !important;
    border-bottom-color: #611610;
    transform: none;
  }
  

  .desktop-nav-menu .dropdown-toggle::after {
    display: none;
  }
}


.logo-mobile {
  height: 50px;
  width: auto;
}

@media (max-width: 991px) {
  .navbar-section {
    padding: 15px;
  }
  
  .top-left-mobile img {
    height: 35px;
  }
  
  .navbar-brand-mobile img.logo-mobile {
    height: 50px;
  }
  
  .icons-mobile img {
    height: 25px;
  }
}



.navbar-nav .nav-link {
  color: #495057 !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: #611610 !important;
  transform: translateY(-2px);
}

.navbar-expand-lg{
  border: 1px solid #f0ebeb;
  
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #611610;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover::after {
  width: 80%;
}
.outlet-link::after { display: none; }

.ace-link::after { display: none; }

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 0.75rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
  animation: fadeInDown 0.3s ease;
}
.dropdown-item {
  padding: 0.75rem 1.5rem;
  font-weight: 400;
  color: #495057;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #f8f9fa;
  color: #611610;
  border-left-color: #611610;
  transform: translateX(5px);
}

#carelupa, #carelupa2  { 
  position: absolute; 
  top: 0; 
  right: 30px; 
  margin-top: 30px; 
  z-index: 1000; 
  display: flex; 
  gap: 15px; 
}

#carelupa a { 
  color: rgb(255, 255, 255); 
  text-decoration: none; 
}

#carelupa2 a { 
  color: rgb(0, 0, 0); 
  text-decoration: none; 
}


#carelupa i, #carelupa2 i { 
  cursor: pointer; 
}

#carelupa {
  display: flex;
  align-items: center;
  gap: 15px;
}


@media (max-width: 1100px) {
  #carelupa {
    display: none;
  }
}
#carelupa .bi-cart , #carelupa2 .bi-cart {
  font-size: 28px; 
  transition: transform 0.3s ease, color 0.3s ease;
}

.bi-cash-coin {
  margin-top: 8px;
}

.simple-search-wrapper {
  position: relative;
  height: 50px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 5px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.simple-search-input {
  flex-grow: 1; 
  border: none;
  outline: none;
  background: transparent;
  color: #333333;
  padding: 0;
  font-size: 16px;
  width: 0; 
  opacity: 0; 
  transition: width 0.4s ease, opacity 0.3s ease 0.1s, padding 0.4s ease;
}

.simple-search-button {
  background-color: #901317; 
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.4s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10; 
}

.simple-search-button i {
  color: #fff;
  font-size: 20px !important;
}

.simple-search-wrapper:focus-within {

  background-color: #e9e9e9;
  box-shadow: 0 5px 20px rgba(144, 19, 23, 0.4);
}

.simple-search-wrapper:focus-within .simple-search-input {
  width: 350px;
  opacity: 1;
  padding: 0 15px; 
}

.simple-search-wrapper:focus-within .simple-search-button {
  background-color: #93715E;
  transform: rotate(360deg);
}


#carelupa, #carelupa2  { 
  position: absolute; 
  top: 0; 
  right: 30px; 
  margin-top: 30px; 
  z-index: 1000; 
  display: flex; 
  gap: 15px; 
}

#carelupa a { 
  color: rgb(255, 255, 255); 
  text-decoration: none; 
}

#carelupa2 a { 
  color: rgb(0, 0, 0); 
  text-decoration: none; 
}


#carelupa i, #carelupa2 i { 
  cursor: pointer; 
}

#carelupa {
  display: flex;
  align-items: center;
  gap: 15px;
}


@media (max-width: 1100px) {
  #carelupa {
    display: none;
  }
}
#carelupa .bi-cart , #carelupa2 .bi-cart {
  font-size: 28px; 
  transition: transform 0.3s ease, color 0.3s ease;
}

.bi-cash-coin {
  margin-top: 8px;
}

.bi-search {
  color: #000 !important;
}

.simple-search-wrapper {
  position: relative;
  height: 50px;
  border-radius: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 5px;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.simple-search-input {
  flex-grow: 1; 
  border: none;
  outline: none;
  background: transparent;
  color: #333333;
  padding: 0;
  font-size: 16px;
  width: 0; 
  opacity: 0; 
  transition: width 0.4s ease, opacity 0.3s ease 0.1s, padding 0.4s ease;
}

.simple-search-wrapper {
  height: 52px;
  border-radius: 28px;
  padding: 6px 10px;
  border: 1px solid rgba(31, 31, 31, 0.15); /* borda leve */
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.10);
  transition: all 0.3s ease;
}

.simple-search-wrapper:focus-within {
  border: 2px solid #3d3d3d; /* agora SIM mais forte */
  box-shadow: 0 6px 20px rgba(144, 19, 23, 0.25);
  background-color: #fff;
}

.simple-search-input {
  font-size: 18px;
  font-weight: 500;
  color: #222;
  padding-left: 5px;
}

.simple-search-button {
  background-color: #ffffff; 
  border: 1px solid #ffffff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.4s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 10; 
}

.simple-search-button i {
  color: #fff;
  font-size: 20px !important;
}

.simple-search-wrapper:focus-within {

  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(199, 134, 136, 0.4);
}

.simple-search-wrapper:focus-within .simple-search-input {
  width: 350px;
  opacity: 1;
  padding: 0 15px; 
}

.simple-search-wrapper:focus-within .simple-search-button {
  background-color: #e9cbcb;
  transform: rotate(360deg);
}


#mobileSearchBar {
  display: none;
}

#mobileSearchBar.show {
  display: flex;
  justify-content: center;
}


@media (max-width: 576px) {
  #mobileSearchBar .simple-search-wrapper:focus-within .simple-search-input {
    width: 180px;
  }
}


@media (max-width: 768px) {
  .icons-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px; 
  }

  .icons-mobile .icon-item img,
  .icons-mobile .icon-item i {
    display: block;
    margin: 0 auto;
  }

  .mobile-search-toggle {
    padding: 0 !important;
    margin: 0 !important;
  }

  
  .mobile-search-toggle i {
    font-size: 22px !important;
  }
}


@media (min-width: 992px) {
  #carelupa {
    margin-right: 20px !important;
  }
}


/* Ajustar HOVER do menu APENAS no mobile */
@media (max-width: 991px) {

  /* Tirar fundo cinza e o recuo à esquerda */
  .navbar-nav.flex-column .nav-link {
    padding-left: 0;
  }

  .navbar-nav.flex-column .nav-link:hover {
    background-color: transparent !important;
    padding-left: 0 !important;
    transform: none !important;   /* não desce/sobe no hover */
  }

  /* Remover a linha marrom (::after) só no mobile */
  .navbar-nav.flex-column .nav-link::after,
  .navbar-nav.flex-column .nav-link:hover::after {
    display: none !important;
  }
}

#mobileSearchBar {
  display: none;
}

#mobileSearchBar.show {
  display: flex;
  justify-content: center;
}

.banner {
  width: 100%;
  height: 550px; 
  overflow: hidden;
  
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vantagens {
  background: #fff;
  margin-top:  60px;
  margin-bottom: 10px;
  
}

.vantagem-icon {
  width: 55px;
  height: auto;
}

.vantagens strong {
  font-size: 16px;
  font-weight: 600;
  color: #000;
}

.vantagens small {
  font-size: 12x;
  color: #444;
}

/* categorias */

.categorias .row {
  justify-content: flex-start;
  column-gap: 45px;
  margin-top: 50px;
  margin-bottom: 10px;
  margin-left: -50px;
  display: flex; 
  flex-wrap: wrap; 
}

.categoria-card {
  position: relative;
  width: 220px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
  margin: 0;
}

.categoria-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.categoria-card:hover {
  transform: scale(1.05);
}

.categoria-card:hover img {
  transform: scale(1.1);
}


/* carrosel de produtos */
.card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.titulo {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 30px;
  display: inline-block;
  padding: 5px 15px;
  text-align: center;
  width: 100%;
  margin-top: 60px
}
.carousel-indicators {
  bottom: -60px;
}

.carousel-indicators button {
  background-color: #000 !important;
}

.card.produto {
  background-color: rgb(247, 246, 246);
  border: none;
  border-radius: 8px;
  transition: transform 0.3s;
  height: 400px;
  margin-top: 20px;
  
}

.card.produto-2{
  border: none;
  border-radius: 8px;
  background: #000000;
  transition: transform 0.3s;
  height: 400px;
  margin-top: 20px;
}

.carouselProdutos1{
  margin-bottom: 80px;
}
.card.produto:hover {
  transform: translateY(-5px) scale(1.03);
}
.carouselProdutos-2{
  margin-bottom: 80px;
}
.card.produto-2:hover {
  transform: translateY(-5px) scale(1.03);
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  margin-bottom: 8px;
  color: rgb(0, 0, 0);
}

.card-title-2 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: white;
}

.card-img-top {
  height: 250px; 
  width: 100%;
  object-fit: cover; 
  object-position: center;
}
.preco {
  color: #000000;
  font-size: 20px;
  margin-top: auto;
}
.preco-2 {
  color: #ffffff;
  font-size: 20px;
  margin-top: auto;
}

.carousel-control-prev {
  left: -120px; 
}

.carousel-control-next {
  right: -120px; 
}

.carousel-control-prev svg,
.carousel-control-next svg {
  display: block;
  width: 32px;
  height: 32px;
}


.banner-2 {
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;

}
.banner-2 img {
  width: 100%;
  max-width: 100%;
  margin-top: 30px;
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}




/* footer */

.footer {
    background-color: #d8c6b1;
    font-family: Arial, sans-serif;
    margin-top: 150px; 
    font-size: 14px;
    padding: 40px 0;
}

.text-start{
    margin-top: 30px;
    margin-bottom: 15px;
}

.footer-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 1rem;
}

.footer-list a {
    color: #2d2d2d;
    text-decoration: none;
}

.footer-list a:hover {
    color: #000;
    text-decoration: underline;
}

.footer-list li {
    padding: 2px 0;
}

.border-start-custom {
    border-left: 1.5px solid #000000;
}

.payment-icons {
    margin-top: 10px;
}

.payment-icon {
    width: 100%;
    height: auto;
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
    padding: 5px;
}

@media (max-width: 768px) {
    .footer .row {
        text-align: center; 
    }

    .footer .col-12 {
        margin-bottom: 1rem; 
    }

    .payment-icon {
        max-width: 60px;
        max-height: 50px;
    }

    .border-start-custom {
        border-left: none; 
    }
}

.after-footer {
  font-size: 0.75rem;
  background-color: white;
  color: black;
  padding: 20px 10px;
}

/* modal troca e devoluçoes */

/* Container geral do modal */
.trocas-modal {
  border-radius: 20px;
  padding: 24px 32px;
}

/* Wrapper para permitir overlay por cima */
.trocas-wrapper {
  position: relative;
}

/* Controle das telas internas */
.trocas-step {
  display: none;
}
.trocas-step.active {
  display: block;
}

/* Logo retangular */
.trocas-logo-box {
  border-radius: 8px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
}

/* Títulos e textos */
.trocas-title {
  font-weight: 700;
  text-align: center;
}

.trocas-subtitle {
  font-weight: 700;
}

.trocas-text {
  font-size: 14px;
  color: #555;
}

.trocas-label {
  font-size: 14px;
  font-weight: 500;
}

/* Inputs arredondados */
.trocas-input {
  border-radius: 20px;
  height: 40px;
  padding: 8px 16px;
}

/* Botão estilo “pílula” */
.trocas-btn {
  border-radius: 20px;
  padding: 10px 0;
  font-weight: 500;
  background-color: #ffffff;  
  color: #000000;
  border: 1px solid #000;
}
.trocas-btn:hover {
background-color: rgb(180, 177, 177);
}


.trocas-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.trocas-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* Cartão da confirmação */
.trocas-confirm-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #000;
  padding: 40px 24px;
  max-width: 490px;
  width: 100%;
  text-align: center;
}



/* Pagina de produtos */

.container-6 {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px 40px;
}


@media (max-width: 767.98px) {
  .container-6 {
    padding: 15px 16px;
  }
}

/* FILTRO LATERAL */
.filtro-container {
  padding: 1rem;
  max-width: 300px;
  margin-bottom: 2rem;
  margin-left: 30px;
}

.filtro-titulo {
  text-align: center;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0.25rem 0;
}

/* CAIXINHAS DE TAMANHO */
.tamanho-box {
  display: inline-block;
  border: 1px solid black;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  margin-right: 5px;
  cursor: pointer;
  user-select: none;
  font-weight: 500;
}

.tamanho-box.selected {
  background-color: #000;
  color: white;
}


.produto-list .produto {
  display: block;   
  text-decoration: none;
}

.produto-list .produto a {
  display: block;
  height: 100%;
  text-decoration: none;
}
/* CARD DO PRODUTO */
.produto-card {
  background-color: rgb(250, 250, 250);
  padding: 1rem;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 420px;
  width: 95%;
}

.produto-list .produto a {
  text-decoration: none !important;
  color: #000 !important;
}

.produto-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.produto-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.produto-nome {
  font-weight: 600;
  text-transform: capitalize;
  font-size: 1rem;
  margin: 0.5rem 0;
  font-family: 'Arial', sans-serif;
  flex-grow: 1;;
}

.produto-nome a{
    text-decoration: none !important;
}

.produto-preco {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
  margin-top: 0.5rem;
}


.checkbox-label {
  user-select: none;
  display: block;
  margin-bottom: 0.25rem;
  cursor: pointer;
}


@media (max-width: 767.98px) {
  .filtro-container {
    max-width: 100%;
    border-radius: 0;
  }
}


.desc-header {
  display: flex;
  align-items: flex-start;
  position: relative;
}

.desc-bracket {
  display: inline-block;
  width: 5px;
  height: 40px;
  border-left: 3px solid #1c120f;
  margin: 0;
}

.desc-header h3 {
  font-weight: 650;
  letter-spacing: 0.05em;
  font-size: 1.7rem;
  color: #1c120f;
  text-transform: uppercase;
  margin: 0;
  padding-left: 4px;
}


.desc-rule {
  border: none;
  border-top: 3px solid #1c120f;
  margin-top: -18px;  
  margin-left: 0; 
  opacity: 1;
}

.descricao-texto{
  font-size: 1.4rem;
  line-height: 1.6;
  color: #000000;
  margin-top: 1rem;
}


.reviews-section .rating-summary .stars,
.reviews-section .review-item .stars { line-height: 1; }

.reviews-section .avatar {
  width: 60px;   
  height: 60px;
  border-radius: 50%;
  border: 2px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 500;
  background-color: #f8f8f8;
  flex-shrink: 0;         
}

.reviews-title {
  margin-bottom: 50px !important; /* força o espaçamento */
}


.reviews-section .rating-bars .bar-row{
  display:flex; align-items:center; gap:.5rem; margin-bottom:.35rem;
}
.reviews-section .rating-bars .bar{
  position:relative; width:120px; height:10px; background:#fff;
  border:1.5px solid #000; border-radius:2px; overflow:hidden;
}
.reviews-section .rating-bars .bar .fill{
  position:absolute; left:0; top:0; bottom:0; background:#000;
}


.reviews-section .star{
  display:inline-block; width:14px; height:14px; margin-right:2px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .9l3.09 6.26 6.91 1-5 4.87 1.18 6.9L12 17.77 5.82 19.93 7 13.13 2 7.16l6.91-1L12 .9z"/></svg>') no-repeat center / contain;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .9l3.09 6.26 6.91 1-5 4.87 1.18 6.9L12 17.77 5.82 19.93 7 13.13 2 7.16l6.91-1L12 .9z"/></svg>') no-repeat center / contain;
  background:#000;
}
.reviews-section .star.empty{ background:transparent; border:1px solid #000; }
.reviews-section .star.half{
  background:linear-gradient(90deg,#000 50%,transparent 50%);
  border-right:1px solid #000;
}

/* Texto longo das avaliações (imita listras do rascunho) – opcional */
.reviews-section .review-text{
  line-height:1.3;
}

/* Caixa do formulário (aprox. 205px de altura útil) */
.reviews-section .review-form .review-box{
  min-height:205px; resize:vertical;
}

/* Input de estrelas no formulário (estático/sem JS) */
.reviews-section .stars-input label.star{
  cursor:pointer; width:18px; height:18px; margin-right:3px;
}
.reviews-section .stars-input input:checked ~ label.star{ background:transparent; border:1px solid #000; }
/* Dica: com JS você pode inverter para preencher até a selecionada */

/* Ajustes responsivos simples */
@media (max-width: 991.98px){
  .reviews-section .rating-summary, .reviews-section .review-form{ height:auto; }
  .reviews-section .rating-bars .bar{ width:100%; max-width:240px; }
}



/* Página de finalização de pedido */

.card-img {
  height: 40px;
  object-fit: contain;
}

.qr-code {
  max-width: 250px;
  border: 1px solid #ccc;
  padding: 10px;
}

#qrcode {
    width: 200px;
    height: 200px;
}


form label {
  font-weight: 500;
}

.btn-success {
  background-color: #28a745;
  border: none;
}

/* Página de detalhes do produto */

.thumbnail {
    width: 550px;
    height: 170px;
    cursor: pointer;
    transition: transform 0.3s, border-color 0.3s;
}

.thumbnail:hover {
    transform: scale(1.05);
    border-color: #007bff;
}

.color-circle {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 1px solid #ccc;
    cursor: pointer;
}

/* Página do carrinho de compras */

/* Cabeçalho do carrinho */
.carrinho-header {
  background: #7a6a6a;
}

/* Linha de produto */
.produto-linha {
  background: #fff;
  border-radius: 5px;
}

/* Imagem do produto */
.imagem-produto {
  min-width: 180px;
}

.imagem-produto img {
  width: 100%;
  height: auto;
}

/* Quantidade */
.quantidade-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.quant-btn {
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quant-valor {
  min-width: 24px;
  text-align: center;
  font-weight: 600;
}

/* Preço */
.preco {
  font-size: 1rem;
  color: #333;
}

/* Bolinha de cor (já tinha algo assim) */
.color-circle {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #695c5c;
}

/* Página de login e cadastro */


.form-box {
    background-color: #faecd5;
    border: 1px solid #000000;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 4px;
}

.btn-login {
    background-color: #75a65d !important;
    border-color: #75a65d !important;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
}

.btn-login:hover,
.btn-login:focus {
    background-color: #5b7d45 !important;
    border-color: #5b7d45 !important;
    color: #fff;
}

.access-options small {
    color: #231f20;
    font-size: 0.85rem;
}

.access-options a:hover {
    text-decoration: underline;
}

.form-label {
    font-weight: 600;
}

/* Lojas */



.store-image {
    border-radius: 8px;
    object-fit: cover;
    height: 400px;
    width: 100%;
}

.accordion-button {
    font-weight: 500;
    font-size: 1rem;
}

.accordion-body h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.accordion-body p {
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.btn-outline-dark {
    font-size: 0.85rem;
    padding: 5px 15px;
}

@media (max-width: 768px) {
    .store-image {
        height: 400px;
        margin-bottom: 15px;
    }
}

/* Pagina conta */

/* Layout geral */
.account-wrap { max-width: 1200px; margin: 40px auto; }

/* Avatar 51x51 */
.avatar-circle {
  width: 51px; height: 51px;
  border: 2px solid #1d1d1d; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; color: #1d1d1d;
}

/* Sidebar */
.sidebar .list-group-item {
  border: 0; background: transparent;
  border-left: 3px solid transparent;
  padding: 10px 14px; color: #2b2b2b; font-weight: 500;
}
.sidebar .list-group-item:hover { background: #f5f5f5; }
.sidebar .list-group-item.active {
  color: #111; background: #fff; font-weight: 700;
  border-left-color: #111;
}

/* Área de conteúdo */
.content-area {
  background: #fff; border: 1px solid #eaeaea; border-radius: 10px;
}

/* Cabeçalho interno */
.content-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 16px;
}
.back-link { text-decoration: none; color: #333; font-size: .9rem; }
.section-title { font-size: 1.35rem; font-weight: 800; }

/* Caixas (boxes) */
.box {
  border: 2px solid #1d1d1d; border-radius: 6px; background: #fff;
}
.label { color: #6c757d; font-size: .9rem; }
.value { font-weight: 600; }

/* Botões especiais */
.btn-xxs { padding: .15rem .4rem; font-size: .75rem; line-height: 1; }
.btn-outline-dark { border-width: 2px; }

/* Favoritos (cards) */
.favorito-card { border: 2px solid #1d1d1d; border-radius: 4px; overflow: hidden; }
.favorito-foto { height: 113px; border-bottom: 2px solid #1d1d1d; }
.favorito-nome { font-weight: 700; font-size: .9rem; text-transform: uppercase; }
.favorito-preco { color: #333; }

/* Autenticação > Sessões */
.sessao-top {
  border-bottom: 2px solid #1d1d1d;
  padding: 6px 0; font-weight: 700;
}

/* Responsivo */
@media (max-width: 767.98px) {
  .content-area { padding: 1rem !important; }
  .sidebar .list-group-item { padding: 12px 10px; }
}

/* Pagina blog */

/* ====== NOTÍCIAS MAIS RELEVANTES ====== */

.noticias-container {
  max-width: 1100px;
  margin: 40px auto;
  font-family: Arial, sans-serif;
}

.titulo-principal {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 25px;
  color: #3b2b2b;
}

.noticia-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 22px;
}

.bloco {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #e0d6cc;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bloco:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.bloco .imagem {
  flex: 0 0 230px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bloco .imagem img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}

.bloco .texto {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bloco .texto h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #3b2b2b;
}

.bloco .texto p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* imagem invertida na 2ª notícia */
.bloco.invertida {
  flex-direction: row-reverse;
}

/* Responsivo notícias */
@media (max-width: 768px) {
  .bloco,
  .bloco.invertida {
    flex-direction: column;
  }

  .bloco .imagem {
    flex: 0 0 auto;
  }

  .bloco .imagem img {
    height: 190px;
  }
}

/* ====== ÚLTIMOS POSTS ====== */

.ultimos-posts-section {
  background: #ffffff;
}

.ultimos-posts-titulo {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3b2b2b;
}

.post-card-link {
  text-decoration: none;
  color: inherit;
}

.post-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card-img {
  width: 100%;
  overflow: hidden;
}

.post-card-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.post-card-title {
  padding: 10px 14px 14px;
  font-size: 15px;
  font-weight: 500;
  color: #3b2b2b;
}

/* hover bonitinho */
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* responsivo cards */
@media (max-width: 576px) {
  .post-card-title {
    font-size: 14px;
  }

  .post-card-img img {
    height: 160px;
  }
}

.blog-post-page {
  font-family: Arial, sans-serif;
  color: #3b2b2b;
}

.link-voltar-blog {
  font-size: 14px;
  color: #8b5a3c;
  text-decoration: none;
}

.link-voltar-blog:hover {
  text-decoration: underline;
}

.post-titulo {
  font-size: 26px;
  font-weight: 700;
}

.post-meta {
  font-size: 13px;
  color: #777;
}

.post-imagem img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}

.post-conteudo p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* Responsivo */
@media (max-width: 768px) {
  .post-titulo {
    font-size: 22px;
  }

  .post-conteudo p {
    font-size: 14px;
  }
}

/* trabalhe conosco */

/* Pílulas */
.pill-top {
    background: #d8a8a8;
    padding: 6px 14px;
    margin-right: 20px;
    border-radius: 20px;
    font-size: 13px;
    color: #3b2b2b;
    font-weight: 500;
}

/* Card principal */
.oportunidades-card {
    max-width: 500px;
    border-radius: 12px;
    background: #faf3ef;
    border: 1px solid #ccc;
}

.oportunidades-title {
    font-size: 20px;
    font-weight: 600;
}

/* Botão */
.btn-oportunidades {
    background: #000;
    color: #fff;
    padding: 10px;
    font-size: 15px;
    border-radius: 4px;
}
.btn-oportunidades:hover {
    opacity: 0.9;
}

/* TELA 2 (detalhes) */
.detalhes-vaga {
    display: none;
}

.detalhes-box {
    background: #fff;
    padding: 20px;
    border: 1px solid #000;
    border-radius: 4px;
}

.detalhes-subtitulo {
    font-size: 14px;
    font-weight: 600;
}

.linha {
    width: 100%;
    height: 6px;
    border-bottom: 1px solid #000;
    margin-bottom: 8px;
}

.req-list li {
    list-style: disc;
    margin-left: 15px;
    height: 8px;
}


/* FORMULÁRIO DE CURRÍCULO */
.form-candidatura {
    display: none;
    max-width: 500px;
    margin: 40px auto;
    background: #faf3ef;
    padding: 25px;
    border: 1px solid #000;
    border-radius: 4px;
}

.curriculo-box .form-control {
    height: 30px;
    font-size: 13px;
}

/* POPUP CONFIRMAÇÃO */
.popup-confirmacao {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-conteudo {
    background: #faf3ef;
    padding: 40px;
    width: 90%;
    max-width: 560px;
    border: 1px solid #000;
    text-align: center;
    border-radius: 4px;
}


/* politica de privacidade */

.politica-container {
    background: #ffffff;
}

.politica-box {
    background: #fff;
    border-radius: 12px;
    max-width: 850px;
    border: 1px solid #000000;
}

.politica-titulo {
    font-weight: 700;
    font-size: 28px;
}

.politica-subtitulo {
    font-weight: 600;
    font-size: 18px;
}

.politica-texto {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    text-align: justify;
}

/* seja um licenciado */

/* Ícones */

.icone-linha {
  gap: 15px;        
  margin-left: 160px;  
}

.icone-monsieur {
  width: 75px;
  height: 75px;
  flex-shrink: 0;      
}

.icone-texto {
  font-size: 20px;
  color: #3b2b2b;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 768px) {

  .icone-linha {
    margin-left: 0;        
    justify-content: center; 
    text-align: center; 
    gap: 12px;
  }

  .icone-monsieur {
    width: 45px;         
    height: 45px;
  }

  .icone-texto {
    font-size: 17px;       
    line-height: 1.2;
  }
}

.titulo-licenciado {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #2b2b2b;
}


.licenciado-bloco {
    max-width: 900px;
    margin: 0 auto;
}

.bloco-titulo {
    font-size: 19px;
    font-weight: 600;
    color: #2b2b2b;
}

.bloco-texto {
    font-size: 15px;
    color: #4a4a4a;
    margin-top: 10px;
    line-height: 1.6;
}


.linha-separadora {
    width: 100%;
    max-width: 900px;
    margin: 25px auto;
    border-bottom: 1px solid #ccc;
}

.etapa-icone {
    width: 66px;
    height: 65px;
}

.etapa-titulo {
    font-size: 18px;
    font-weight: 600;
    color: #3b2b2b;
    margin-bottom: 5px;
}

.etapa-subtitulo {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 1.35;
    padding: 0 10px;
    margin: 0;
}

@media (max-width: 768px) {
    .etapa-icone {
        width: 65px;
        height: 65px;
    }

    .etapa-titulo {
        font-size: 17px;
    }

    .etapa-subtitulo {
        font-size: 13px;
        padding: 0 30px;
    }
}

.subtitulo-jornada {
    font-size: 16px;
    color: #6b6b6b;
    margin-top: -5px;
}

.licenciado-card {
    max-width: 500px;
    border: 1px solid #3b2b2b;
    padding: 25px 30px;
    background: #ffffff;
    margin: 0 auto;
}

.licenciado-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2b1b18;
}


.licenciado-card .form-control,
.licenciado-card .form-select {
    height: 32px;
    font-size: 13px;
}


.btn-licenciado {
    background: #000000;
    color: #fff;
    border-radius: 0;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 5px;
    padding: 10px;
}
.btn-licenciado:hover {
    opacity: 0.9;
    color: black;
    border: 1px solid black;
}


.popup-licenciado {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: none;         
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.popup-licenciado-conteudo {
    background: #ffffff;
    border: 1px solid #3b2b2b;
    padding: 40px 30px;
    max-width: 480px;
    width: 90%;
    text-align: center;
}

/* pagina agradecimento */

.pagina-confirmacao {
  font-family: Arial, Helvetica, sans-serif;
  color: #333;
}

.texto-obrigado {
  text-align: center;
  font-size: 26px;
  font-weight: 600;
}

.texto-subtitulo {
  text-align: center;
  font-size: 15px;
  margin-bottom: 30px;
}

.secao-titulo {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.card-resumo {
  border: 1px solid #333;
  padding: 15px;
  background-color: #fff;
  height: 100%;     
  box-sizing: border-box;
}

.imagem-produto-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.imagem-produto-box img {
  max-height: 180px;
  object-fit: contain;
}


.nome-produto {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.linha-detalhe {
  font-size: 14px;
  margin-bottom: 4px;
}

.linha-detalhe span {
  font-weight: 500;
}

.texto-card {
  font-size: 14px;
  line-height: 1.4;
}

/* Barra verde de cancelamento */
.btn-cancelar-pedido {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 15px;
  background-color: #4caf50;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 7px;
}

.btn-cancelar-wrapper {
  margin-top: 45px;   
  margin-bottom: 30px;
}


.btn-cancelar-pedido:hover {
  background-color: #43a047;
  color: #ffffff;
}

/* Texto final */
.texto-final-confirmacao {
  text-align: center;
  font-size: 13px;
  color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
  .texto-obrigado {
    font-size: 22px;
  }

  .texto-subtitulo {
    font-size: 14px;
  }

  .card-resumo {
    margin-bottom: 10px;
  }
}

/* cartao presente */

.cartao-presente-section {
  font-family: Arial, sans-serif;
  color: #333;
}

.cartao-titulo {
  font-size: 26px;
  font-weight: 600;
}

.cartao-linha {
  width: 80%;
  max-width: 700px;
  margin: 8px auto 20px;
  border-top: 1px solid #666;
}

.cartao-descricao {
  max-width: 800px;
  font-size: 15px;
  line-height: 1.6;
}

.cartoes-tipos {
  margin-top: 15px;
}

.cartao-tipo-box {
  max-width: 320px;
  margin: 0 auto;
}

.cartao-tipo-titulo {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cartao-tipo-img {
  height: 60px;
  object-fit: contain;
}

.cartao-tipo-texto {
  font-size: 14px;
  line-height: 1.5;
}

/* DÚVIDAS FREQUENTES */
.duvidas-titulo {
  font-size: 20px;
  font-weight: 600;
}

.cartao-accordion {
  max-width: 800px;
}

/* Deixar o accordion mais clean */
.cartao-accordion .accordion-button {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
  box-shadow: none !important;
}

.cartao-accordion .accordion-button::after {
  transform: scale(0.8);
}

.cartao-accordion .accordion-body {
  font-size: 14px;
  padding: 10px 0 15px;
}

/* Responsivo */
@media (max-width: 768px) {
  .cartao-descricao {
    font-size: 14px;
  }

  .cartao-tipo-texto {
    font-size: 13px;
  }
}
