.produto-destaque-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px;
}

.produto-imagem-destaque {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 35px;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 1100;

}

.produto-imagem-container {
    padding: 18px;
}

.produto-titulo-destaque {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    line-height: 1.5;
}

.card-produto-destaque {
    background-color: #f8f9fa;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.botao-peso-selecionado.selected {
    background-color: #0d3b66; 
    border-color: #0d3b66;
    color: #fff;
    box-shadow: 0 0 10px rgba(13, 59, 102, 0.8); 
}

.botao-peso-selecionado:hover {
    background-color: #0b3459; 
    border-color: #0b3459;
}

.produto-descricao-destaque,
.produto-narrativa-destaque {
    font-size: 14px;
    line-height: 1.6;
    color: black;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
}

.descricao-texto {
    font-size: 12px;
    color: #555;
    font-weight: normal;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
}

.narrativa-texto {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
}


#alert-box {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    max-width: 90%;
    padding: 20px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    display: none;
    z-index: 1000;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.hidden {
    display: none;
}

.btn-add-cart {
    background-color: #007bff;
    color: white;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 6px;
    font-weight: bold;
    border: none;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease, transform 0.2s ease;

}

.btn-add-cart:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}


.quantidade-disponivel-label {
    font-size: 14px;
    font-weight: normal;
    color: #555;
    display: block;
    margin-top: 5px;
    font-family: "Montserrat", sans-serif;
}

.quantidade-disponivel-label strong {
    color: #28a745;
    font-size: 16px;
}



.produtos-relacionados-container {
    padding: 30px 15px;
    border-radius: 8px;
    margin-top: 95px;
}

.produtos-relacionados-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-family: "Montserrat", sans-serif;
}


.produtos-relacionados-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.produtos-relacionados-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 1 calc(25% - 20px);
    max-width: 250px;
    min-width: 180px;
}

.produtos-relacionados-img {
    height: 200px;
    object-fit: contain;
    background-color: #fff;
    padding: 10px;
}

.custom-icon {
    font-size: 1.2rem;
    color: #005d9d;
    transition: color 0.3s ease-in-out;
}

.custom-icon:hover {
    color: #1a5983;
}

.documentacao-create {
    margin-left: 20px;
    font-family: "Montserrat", sans-serif;
}

.documentacao-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.documentacao-form .form-group label {
    font-weight: normal;
}

.documentacao-form .form-control {
    font-size: 14px;
    width: 50%;
}

.documentacao-form .form-control option:first-child {
    font-weight: normal;
    color: #777;
}


.documentacao-form input[type="file"] {
    width: 80%;
    max-width: 400px;
}


#global-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .loader-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .spinner-ring {
    position: absolute;
    width: 70px;
    height: 70px;
    border: 6px solid transparent;
    border-radius: 50%;
  }
  
  .spinner-ring:nth-child(1) {
    border-top: 6px solid #3ECCC7;
    animation: spin1 1.5s linear infinite;
  }
  
  .spinner-ring:nth-child(2) {
    border-bottom: 6px solid #005D9D;
    animation: spin2 1.5s linear infinite;
  }

  .descricao-categoria-produto {
    font-family: "Montserrat", sans-serif;
    color: #031D40;
    font-weight: 700;
    font-size: 40px;
    margin-left: 50px; 
    margin-bottom: 20px; 
}

.estilizacao-container-produto{
    margin-top: 15px;
}


.container-categoria-produtos {
    padding-left: 20px;
    margin-top: 90px;
}

.produto-container {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    color: #005D9D;
    font-weight: 600;
    margin-bottom: 15px; 
}

.produto-nome {
    display: block;
    font-size: 45px;
    margin-bottom: 8px;
    font-weight: bold;
    color: #031D40;
    transition: color 0.3s ease;
}

.produto-preco {
    font-size: 35px;
    font-weight: bold;
    color: #333;
    line-height: 1.5;
    font-family: "Montserrat", sans-serif;
    text-align: center; 
}
.produto-quantidade label {
    font-size: 18px;
    color: #333;
    margin-bottom: 0;
    margin-left: 15px;
}

.quantidade-input {
    width: 100px;
    padding: 8px 12px;
    font-size: 18px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.btn-adicionar-carrinho {
    background-color: #005D9D;          
    color: #fff;                       
    font-weight: bold;
    font-size: 18px;
    padding: 10px 22px;
    margin-top: 35px;
    border: none;
    border-radius: 6px;                 
    transition: background-color 0.3s ease;
}

.btn-adicionar-carrinho:hover {
    background-color: #004a84;         
}

.imagem-segmento-wrapper {
    margin-top: 45px;
}

.style-label-produto {
    font-weight: bold;
    font-size: 18px;
    color: #333;
    font-family: "Montserrat", sans-serif;
}

.btn-voltar {
    background-color: #005D9D;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    margin-left: 85px;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-voltar:hover {
    background-color: #004882;
    color: #fff;
}

.produto-container a {
    display: inline-block;
    background-color: #005D9D;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease; 
}


.produto-container a:hover {
    background-color: #031D40; 
    color: #fff; 
    text-decoration: none; 
}

#pagination-style-produtos{
    margin-top: 150px; 
}


.page-item.active {
    background-color: #031D40;
}

.page-item.active .page-link {
    color: #ffffff;
    background-color: #031D40;
    border-color: #031D40;
}

.produtos-container {
    margin-top: 60px; 
}

.container-title {
    padding-left: 30px;
}

:root { --brand-blue: #0d3b66; }

#grupos-por-segmento { 
    font-family: "Montserrat", sans-serif;
}

#grupos-por-segmento .page-header {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start !important;  
    text-align: left !important;          
}

#grupos-por-segmento .page-title {
    color: var(--brand-blue) !important;
    font-weight: 700;
    margin: 0 0 .75rem 0;
}

 #grupos-por-segmento .btn-primary-custom {
    background-color: var(--brand-blue) !important;
    border-color: var(--brand-blue) !important;
    color: #fff !important;
    margin-left: 0 !important;           
}

#grupos-por-segmento .custom-card {
    border: 0;
    box-shadow: 0 8px 24px rgba(13,59,102,.15);
    transition: transform .2s ease, box-shadow .2s ease;
}

#grupos-por-segmento .custom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(13,59,102,.25);
}

.style-container-grupos {
    margin-bottom: 85px;

}

.container .container-mind {
    max-width: none;
}


.selectable-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.selectable-row:hover {
    background-color: rgba(13, 59, 102, 0.08) !important;
}


.row-selected,
.row-selected td,
.row-selected th {
    background-color: #0d3b66 !important;
    color: #fff !important;
}


.row-selected a {
    color: #fff !important;
    text-decoration: none;
}

.row-selected a:hover {
    color: #e2e2e2 !important;
}


.select-instruction {
    color: #6c757d;
    font-style: italic;
    margin-left: 8px;
}



#btn-add-doc, #btn-comentarios {
    background-color: #003366;
    color: #fff;
    border: none;
    margin-left: 7px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 0.25rem;
    transition: background-color 0.2s ease;
}

#btn-add-doc:hover {
    background-color: #002244;
    color: #fff;
}

.produto-preco-descricao{
    margin-bottom: 30px;
    font-weight: bold;
    color: red;
}

.produto-preco-descricao-carrinho{
    margin-top: 20px;
    color: red;
    font-size: 12px;
}



  
  @keyframes spin1 {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin2 {
    0% {
      transform: rotate(360deg);
    }
  
    100% {
      transform: rotate(0deg);
    }
  }


@media (max-width: 800px) {
    .produtos-relacionados-card {
        flex: 0 1 calc(50% - 20px);
        max-width: 100%;
    }

    .produtos-relacionados-img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .produtos-relacionados-card {
        flex: 0 1 100%;
    }

    .produtos-relacionados-img {
        height: 150px;
    }

    .produtos-relacionados-title {
        font-size: 16px;
    }
}