@media (min-width: 575.98px) {
  .my-desktop {
      margin-top: 3rem;
      margin-bottom: 3rem;
  }
}

@media (min-width: 992px) {
  .scrollable-column {
      height: 750px; /* Define a altura máxima */
      overflow-y: auto;  /* Habilita o scroll vertical */
      padding-right: 15px; /* Adiciona um pequeno padding para evitar que o scroll sobreponha o conteúdo */
      scroll-behavior: smooth; /* Adiciona scroll suave */
  }
}

.bg-success{
    background-color: #198754 !important;
}

input::placeholder {
    font-size: 1rem; 
    color: #aaa;
}

  .videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
  }
  .videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* Estilo para o container do formulário */
  .form-background {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
  }
  
  /* Título do formulário */
  h3 {
      font-family: 'Arial', sans-serif;
      color: #333;
      font-size: 1.8rem;
      font-weight: 600;
      text-align: center;
      margin-bottom: 30px;
  }
  
  /* Campos de input */
  input[type="text"],
  input[type="email"] {
      border-radius: 12px;
      background-color: white;
      border: 1px solid #ddd;
      padding: 12px 15px;
      width: 100%;
      font-size: 1rem;
      transition: all 0.3s ease-in-out;
  }
  
  input[type="text"]:focus,
  input[type="email"]:focus {
      background-color: #fff;
      outline: none;
  }
  
  /* Mensagens de erro */
  small.text-danger {
      font-size: 0.85rem;
      color: #e74c3c;
  }
  
  /* Botões */
  button.btn {
      color: #fff;
      border: none;
      font-size: 0.9rem;  /* Tamanho de fonte reduzido */
      cursor: pointer;
      border-radius: 5px;  /* Bordas mais arredondadas */
  }
  
  /* Estilo para o card */
  .card {
      background-color: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      padding: 20px;
      text-align: center;
      margin-top: 30px;
  }
  
  .card-title {
      font-size: 1.5rem;
      color: #333;
      font-weight: 600;
      margin-bottom: 15px;
  }
  
  .card-text {
      font-size: 1rem;
      color: #666;
      margin-bottom: 20px;
  }
  
  .card a {
      text-decoration: none;
      font-size: 1rem;
      color: #007bff;
      transition: color 0.3s ease;
  }
  
  .card a:hover {
      color: #0056b3;
  }
  
  /* Alinhamento geral dos botões
  .mt-4 {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px; 
  }
  */
  
  /* Alinhamento do botão "Voltar" */
  button[type="button"] {
      width: auto; /* Largura ajustada automaticamente */
  }
  
  /* Alinhamento do botão "Próximo" */
  button[type="submit"] {
      width: auto; /* Largura ajustada automaticamente */
  }
  
/*
  @media (max-width: 768px) {
      .mt-4 {
          flex-direction: column;
          align-items: stretch;
      }
  
      button[type="button"],
      button[type="submit"] {
          width: 100%;
          margin-bottom: 10px;
      }
  }
  */
  .custom-error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 3px 8px;  /* Padding mais suave para o fundo não ocupar muito espaço */
    border-radius: 4px;
    font-size: 12px; /* Tamanho reduzido */
    font-weight: normal;
    margin-top: 5px;
    opacity: 0.8;
    display: inline-block; /* Faz com que a largura seja ajustada ao tamanho do texto */
  }
  
  /* Estilo para a barra de progresso */
  .progress {
      height: 10px; /* Ajuste a altura da barra para que ela não fique gigante */
      background-color: #e0e0e0; /* Cor de fundo da barra */
      border-radius: 20px;
      margin-bottom: 30px;
      width: 100%;  /* A barra vai ocupar 100% da largura do formulário */
  }
  
  /* Barra de progresso verde */
  .progress-bar {
      height: 100%;
      background-color: #4CAF50;  /* A cor verde da barra de progresso */
      border-radius: 20px;
      transition: width 0.3s ease;  /* Suaviza a transição do progresso */
  }

.profile_img_modal {
    width: 180px;
    height: 180px;
    border-radius: 50%; /* Torna o contêiner redondo */
    overflow: hidden; /* Corta qualquer parte da imagem que ultrapasse os limites */
    display: flex; /* Usa flexbox para centralizar a imagem */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    background-color: #f0f0f0; /* Cor de fundo caso a imagem não carregue */
    border: 2px solid #ddd; /* Borda opcional */
}

.profile_img_modal img {
    width: 100%; /* Faz a imagem cobrir toda a largura do contêiner */
    height: 100%; /* Faz a imagem cobrir toda a altura do contêiner */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    border-radius: 50%; /* Torna a imagem redonda (opcional, já que o contêiner já é redondo) */
}


/* Container principal */
.profile-container {
    position: relative;
    width: 100%;
    margin-bottom: 80px; /* Espaço para a imagem de perfil */
}


/* Imagem de Capa */
.cover-img {
    width: 100%;
    height: 300px; /* Altura fixa para a imagem de capa */
    overflow: hidden;
    position: relative;
    background-color: #f0f0f0; /* Cor de fundo caso a imagem não carregue */
    border-radius: 10px; /* Bordas arredondadas */
}

.cover-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra todo o espaço */
}

/* Botão de Editar Capa */
.edit-cover-btn {
    background: #FF6161;
    position: absolute;
    bottom: 10px;
    right: 10px;
}

/* Botão de Editar Perfil */
.edit-profile-btn {
    background: #FF6161;
    position: absolute;
    bottom: 5px;
    right: 5px;
}

/* Efeito de hover nos botões */
.edit-cover-btn:hover, .edit-profile-btn:hover {
    background-color: #ec5757;
    color: white;
}

/* Efeito de active nos botões */
.edit-cover-btn:active, .edit-profile-btn:active {
    background-color: #ec5757 !important; /* Cor que você deseja */
    color: white !important;
}
/* Container da Imagem de Perfil e Botão de Edição */
.profile-img-container {
    position: absolute;
    bottom: -50px; /* Posiciona o container sobre a imagem de capa */
    left: 20px; /* Distância da borda esquerda */
    display: flex;
    align-items: flex-end; /* Alinha o botão na parte inferior */
    gap: 10px; /* Espaço entre a imagem e o botão */
}

/* Imagem de Perfil */
.profile_img {
    width: 130px;
    height: 130px;
    border-radius: 50%; /* Torna a imagem redonda */
    overflow: hidden;
    border: 2px solid white; /* Borda branca para destacar a imagem */
    background-color: #f0f0f0; /* Cor de fundo caso a imagem não carregue */
}

.profile_img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem cubra todo o espaço */
}

/* Efeito de hover na imagem de perfil
.profile_img:hover img {
    cursor: pointer;
    opacity: 0.9;
    transform: scale(1.04);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
*/

/* Cover Image */

.cover_img_modal {
    width: 500px;
    height: 250px;
    border-radius: 2%; /* Torna o contêiner redondo */
    overflow: hidden; /* Corta qualquer parte da imagem que ultrapasse os limites */
    display: flex; /* Usa flexbox para centralizar a imagem */
    align-items: center; /* Centraliza verticalmente */
    justify-content: center; /* Centraliza horizontalmente */
    background-color: #f0f0f0; /* Cor de fundo caso a imagem não carregue */
    border: 2px solid #ddd; /* Borda opcional */
}

.cover_img_modal img {
    width: 100%; /* Faz a imagem cobrir toda a largura do contêiner */
    height: 100%; /* Faz a imagem cobrir toda a altura do contêiner */
    object-fit: cover; /* Garante que a imagem cubra o espaço sem distorcer */
    border-radius: 2%; /* Torna o contêiner redondo */
}


.btn-success{
    background: #FF6161;
}

.btn-success:hover,
.btn-success:focus,
.btn-success:active,
.btn-success:focus:active,
.btn-success:focus-visible {
    background-color: #ec5757 !important;
    color: white !important;
    border-color: #ec5757 !important;
    box-shadow: none !important; /* remove a sombra azul que o Bootstrap aplica no :focus */
}

.btn-primary{
  background: #561839;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus:active,
.btn-primary:focus-visible {
    background-color: #491430 !important; /* Cor que você deseja */
    color: white !important;
    border-color: #491430 !important;
    box-shadow: none !important; /* remove a sombra azul que o Bootstrap aplica no :focus */
}

.btn-primary:hover, .btn-primary:hover {
  background-color: #491430;
  color: white;
}

.bg-success{
    background: #ec5757 !important;
}

.btn-hover-green:hover {
    background-color: #561839;
    color: white;
  }

  .btn-hover-black:hover {
    background-color: #ec5757; /* verde */
    color: white;
  }

  .btn-hover-black-quit:hover {
    background-color: #ec5757; /* verde */
    color: white;
  }

  @media (min-width: 991.98px) {

    .btn-hover-green {
      font-weight: 500;
      height: 35px;
      font-size: 15px;
      width: 150px;
      color: white;
      border: 1px #FF6161 solid;
      background-color: transparent;
      transition: background-color 0.3s ease;
    }
  
    .btn-hover-black {
      border: transparent;
      font-weight: 500;
      height: 35px;
      font-size: 15px;
      width: 150px;
      background-color: #FF6161;
      color: white;
      transition: background-color 0.3s ease;
    }
  
    .btn-hover-black-quit {
      border: transparent;
      font-weight: 500;
      height: 35px;
      font-size: 15px;
      width: 100px;
      background-color: #FF6161;
      color: white;
      transition: background-color 0.3s ease;
    }
  
  .padding-desktop-navbar{
    padding-left: 3rem;
    padding-right: 3rem;
  }
  
    .margin-desktop-navbar{
      margin-left: 170px; 
      margin-right: 170px
    }
  
    .nav-link:hover::after{
    opacity: 1;
    content: '';
    height: 2px;
    width: 100%;
    background-color: #FF6161;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  
  }

  @media (max-width: 991.98px) {

    .btn-hover-black-quit {
      border: transparent;
      font-weight: 500;
      height: 35px;
      font-size: 15px;
      width: 100%;
      background-color: #FF6161;
      color: white;
      transition: background-color 0.3s ease;
    }
  
    .btn-hover-green {
      font-weight: 500;
      height: 35px;
      font-size: 15px;
      width: 100%;
      color: white;
      border: 1px #FF6161 solid;
      background-color: transparent;
      transition: background-color 0.3s ease;
    }
  
    .btn-hover-black {
      border: transparent;
      font-weight: 500;
      height: 35px;
      font-size: 15px;
      width: 100%;
      background-color: #FF6161;
      color: white;
      transition: background-color 0.3s ease;
    }
  
  .nav-link:hover::after{
  opacity: 1;
  content: '';
  height: 2px;
  width: 20%;
  background-color: #FF6161;
  position: absolute;
  bottom: 0;
  left: 0;
  }
  
  .padding-desktop-navbar{
    padding-right: 2rem;
    padding-left: 2rem;
  }
  
  .margin-bottom-navitem{
      margin-bottom: 10px
    }
  }

  .spinner-border{
    color: #561839;
  }

  @media(min-width: 575.98px){
    .form-background-checkout {
        max-width: 750px; 
        min-height: 690px;
        background-color: #FAFAFA;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
      }
  }

  @media(max-width: 574px){
    .form-background-checkout {
        max-width: 750px; 
        min-height: 690px;
        background-color: #FAFAFA;
        border-radius: 8px;
        margin: 0 auto;
      }
  }

.btn-warning{
    background: #FF6161 !important;
    color: #ffffff !important;
}

.text-success{
  color: #FF6161 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning:active,
.btn-warning:focus:active,
.btn-warning:focus-visible {
    background-color: #FF6161 !important;
    color: #ffffff !important;
    border-color: #ec5757 !important;
    box-shadow: none !important; /* remove a sombra azul que o Bootstrap aplica no :focus */
}

.btn-outline-secondary{
    background: #561839 !important;
    color: #ffffff !important;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:focus:active,
.btn-outline-secondary:focus-visible {
    background-color: #491430 !important;
    color: #ffffff !important;
    border-color: #330e22 !important;
    box-shadow: none !important; /* remove a sombra azul que o Bootstrap aplica no :focus */
}
