body {
    padding-top: 110px;
    padding-bottom: 42px;
}

hr{
    margin-top:0;
    margin-bottom:0;
}

input[type="radio"] {
  /* Remove a aparência padrão do navegador */
  -webkit-appearance: none; /* Para navegadores WebKit/Blink */
  -moz-appearance: none;    /* Para Firefox */
  appearance: none;

  /* Estiliza o círculo externo */
  width: 18px;
  height: 18px;
  border: 2px solid #C8BC9A;
  border-radius: 50%; /* Transforma em círculo */
  outline: none; /* Remove o outline padrão ao focar */
  cursor: pointer;

  /* Adiciona transição suave */
  transition: 0.2s all linear;
  position: relative;
}

/* Estiliza o interior quando o rádio está marcado */
input[type="radio"]:checked {
  border: 9px solid #C8BC9A; /* Cria o ponto interno mudando a borda */
}

/* Opcional: Estilo ao focar para acessibilidade */
input[type="radio"]:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

#logo {
  background-image: url('../img/logo.webp');
  background-size: contain; /* 'contain' evita que o logo seja cortado */
  background-repeat: no-repeat;
  background-position: center;
  width: 115px;
  height: 64px; /* Defina a altura desejada aqui */
}

#logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.form-control::placeholder{
    color: #6B5F3B;
}

#dropdown-perfil {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #6B5F3B;
  --bs-btn-hover-bg: #C8BC9A;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-active-bg: #C8BC9A;
  --bs-btn-active-border-color: transparent;
  --bs-btn-active-color: #6B5F3B;
  --bs-btn-color: #6B5F3B;
  --bs-btn-hover-color: #6B5F3B;
}

/* Flash Message Styling */
.flashes {
  text-align: center;
  border-color: transparent;
}
.error {
    border-color: transparent;
    background-color: transparent;
    color: #ee6f57;
}
.success {
    color: green;
    background-color: #d4edda; /* Light green background */
}
/* Add styles for .info and .warning as needed */

.btn-circle {
    aspect-ratio: 1 / 1;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.btn.btn-primary {
    color: white !important;
    background-color: #6B5F3B !important;
    border-color: #6B5F3B !important;
}

.btn.btn-primary:hover {
    color: #6B5F3B !important;
    background-color: transparent !important;
    border-color: #6B5F3B !important;
}
.card {
    border: 1px solid #C8BC9A;
}

.nav {
  align-items: center;
}

.produto-img {
    aspect-ratio: 1/1;      /* mantém proporção quadrada */
    object-fit: cover;    /* imagem inteira visível sem distorção */
    width: 100%;            /* ocupa toda a largura do card */
}
.carousel_out{
    height: 400px;
}
.rounded-circle {
  border-radius: 50% !important;
}
.btn-overlay {
    position: absolute;
    padding: 0% 0% 65% 4%;
    top: 60%;
    left: 60%;
    width: 50%;
    height: 50%;
    background-color: #C8BC9A;
    color: white;
}

.btn {
  position: relative;
}

.btn-custom {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: transparent;
  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: #6B5F3B;
  --bs-btn-active-bg: transparent;
  --bs-btn-active-border-color: #6B5F3B;
  --bs-btn-color: #6B5F3B;
  --bs-btn-hover-color: #6B5F3B;
}

.btn-custom-comprar {
  --bs-btn-bg: transparent;
  --bs-btn-border-color: #6B5F3B;
  --bs-btn-color: #6B5F3B;

  --bs-btn-hover-bg: #6B5F3B;
  --bs-btn-hover-border-color: #6B5F3B;
  --bs-btn-hover-color: #ffffff;

  --bs-btn-active-bg: #6B5F3B;
  --bs-btn-active-border-color: #6B5F3B;
  --bs-btn-active-color: #ffffff;
}

.link{
    text-decoration: none;
    color: #6B5F3B;
}

.link:hover {
    text-decoration: underline;
}

#profile-img{
    height: max-content;
    width: max-content;
    background-color: transparent;
    padding:10px;
    border: 2pt solid  #6B5F3B;
}

#register-img{
    height: max-content;
    width: max-content;
    background-color: transparent;
    padding:10px;
    border: 2pt solid  #6B5F3B;
}


.contorno{
    border: 1pt solid #6B5F3B;
    border-radius: 12px;
    overflow: hidden;
}

.texto-estilizado{
    color: #6B5F3B;
}

#quantidade {
    width: 8ch;
    text-align: center;
}

.carousel-control-prev,
.carousel-control-next {
  opacity: 0.7;
}

.carousel-inner img {
    height: 400px;
    object-fit: cover;
}

.julius-sans-one-regular {
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}

#escolha{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.info-barra {
    display: flex;
    flex-direction: row;
    border: 1px solid #6B5F3B;
    border-radius: 12px;
    overflow: hidden;
    width: 55%;
    margin: 16px auto;
}

.info-item {
    flex: 1;
    padding: 6px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
}

.info-item:not(:last-child) {
    border-right: 1px solid #6B5F3B;
}

@media (max-width: 575.98px) {
    .info-barra {
        width: 95%;
    }

    .info-item {
        padding: 5px 4px;
        gap: 3px;
    }

    .info-item svg {
        width: 20px;
        height: 20px;
    }

    .info-item h5 {
        font-size: 0.6rem;
        margin: 0;
    }

    .info-item img {
        width: 75px;
        height: auto;
    }
}

.noto-sans-light-italic {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: italic;
  font-variation-settings:
    "wdth" 100;
}


.form-label{
    color: #6B5F3B;
}

.form-control{
    color: #6B5F3B !important;
}

section.modal{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0:
    right:0;
    z-index: 1;
}

.btn-flutuante{
    padding: 0;
    padding-left: 1px;
  --bs-btn-bg: #6B5F3B;
  --bs-btn-border-color: #6B5F3B;
  --bs-btn-color: white;

  --bs-btn-hover-bg: transparent;
  --bs-btn-hover-border-color: #6B5F3B;
  --bs-btn-hover-border-color: #6B5F3B;
  --bs-btn-hover-color: #6B5F3B;

  --bs-btn-active-bg: #6B5F3B;
  --bs-btn-active-border-color: #6B5F3B;
  --bs-btn-active-color: white;
}

#busca::placeholder {
    color: #6B5F3B;
    text-align: center;
}

input {
    text-align: center;
}



