body {
  font-family: "Poppins", "Inter", "DM Sans", "Roboto", sans-serif;
}

.content-wrapper {
  min-height: calc(87.5vh - 100px);
}

.custom-dropdown {
  top: 30px !important; /* Ajusta a posição vertical */
  left: -50px !important;
}

.btn {
  border-radius: 50px;
}

.btn-primary {
  background-color: #4cbb17 !important;
  border: 1px solid #4cbb17 !important;
  border-radius: 50px;
}

.btn-primary:hover {
  background-color: white !important;
  color: #4cbb17 !important;
  border-radius: 50px;
}

.btn-outline-primary {
  color: #4cbb17 !important;
  background-color: white !important;
  border: 1px solid #4cbb17 !important;
  border-radius: 50px;
}

.btn-outline-primary:hover {
  background-color: #4cbb17 !important;
  color: white !important;
  border-radius: 50px;
}

.red {
  border: 1px solid red !important;
}

.my-list {
  margin: 0px;
  padding: 0px;
}

li {
  all: unset;
  display: block;
}

.primary-text {
  color: #4cbb17 !important;
}

:root {
  --primary-color: #4cbb17;
  --secondary-color: #3a9a0d;
  --dark-color: #1a1a1a;
  --light-color: #f8f9fa;
  --gradient-primary: linear-gradient(135deg, #4cbb17 0%, #3a9a0d 100%);
  --olive-green: #556b2f;
  --olive-light: rgba(85, 107, 47, 0.1);
}

.primary-color {
  color: var(--primary);
}

.comment-card {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-left: 3px solid var(--primary-color);
  margin-bottom: 15px;
}

.comment-author {
  font-weight: 600;
  color: var(--primary-color);
}

.pagination-wrapper .pagination .page-item .page-link {
  background-color: white;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.pagination-wrapper .pagination .page-item .page-link:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.pagination-wrapper .pagination .page-item.active .page-link {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-link {
  color: var(--primary-color) !important;
  text-decoration: none;
}

.btn-light {
  background: white;
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: transparent;
}

.btn-light:hover {
  background: var(--primary-color) !important;
  color: white !important;
  border-color: var(--primary-color) !important;
}

.responsive-img-container {
  width: 50%;
}
.responsive-img-container img {
  width: 100%;
  height: auto;
}

.imagem-galeria {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Transição suave para o efeito */
}

.imagem-galeria:hover {
  transform: scale(1.1);
  /* Amplia a imagem em 10% */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  /* Adiciona uma sombra para destacar */
  cursor: pointer;
  /* Mostra o cursor de "mãozinha" para indicar que é clicável */
}

.gallery-grid .card {
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.gallery-grid .card:hover {
  transform: scale(1.02);
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}

/* Estilo perfil foto cover */

.edit-cover {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.edit-cover:hover {
  background: rgba(0, 0, 0, 0.7);
}

.delete-cover {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.delete-cover:hover {
  background: rgba(128, 36, 36, 0.7);
}

/* Estilo card perfil */
.profile-card {
  width: 100%;
  background: var(--secondary);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #eaeaea;
}

.visualization-count {
  filter: blur(3px);
}

.card-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  font-weight: 600;
  background-color: var(--light);
}

.card-title {
  display: flex;
  align-items: center;
  margin: 0;
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.card-body {
  padding: 20px;
}

@media (max-width: 576px) {
  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .card-title {
    margin-bottom: 10px;
  }

  .card-actions {
    width: 100%;
    justify-content: space-between;
  }
}
.card-status {
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .profile-avatar {
    width: 120px;
    height: 120px;
    bottom: -60px;
  }

  .cover-photo {
    height: 150px;
  }

  .card-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .card-title {
    width: auto;
    margin-bottom: 0;
  }

  .card-actions {
    width: auto;
    margin-top: 0;
  }

  .verification-badge span {
    display: none;
  }

  .card-header {
    padding: 12px 15px;
  }

  .card-body {
    padding: 15px;
  }

  /* Footer responsivo */
  :root {
    --footer-text-margin: 0 1rem;
    --footer-link-margin: 0 1rem;
    --footer-col-padding: 0 0.5rem;
  }

  .footer-col {
    align-items: center;
    margin-bottom: 1.5rem;
  }

  .footer-title,
  .footer-text {
    text-align: center;
  }

  .footer-social-bar {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    text-align: center;
  }

  .footer-social-bar span {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
/* páginas de login e cadastro */

.login-card {
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.login-image {
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

.login-form {
  padding: 3rem;
}
.login-title {
  font-weight: 700 !important;
  color: var(--dark-color) !important;
  margin-bottom: 1.5rem !important;
  position: relative !important;
}

.login-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--primary-color);
}

.form-control {
  border-radius: 10px;
  padding: 0.75rem 1rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.15rem rgba(76, 187, 23, 0.25);
}

.btn-login {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-login:hover {
  background: white !important;
  color: var(--primary-color) !important;
  border: 1px solid var(--primary-color) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(76, 187, 23, 0.3);
}

.forgot-link {
  color: #6c757d;
  transition: color 0.3s ease;
}

.forgot-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.register-link {
  color: var(--primary-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.register-link:hover {
  color: var(--secondary-color);
  text-decoration: none;
}

.alert-danger {
  border-radius: 10px;
  background-color: rgba(220, 53, 69, 0.1);
  border-color: rgba(220, 53, 69, 0.2);
}

@media (max-width: 991.98px) {
  .login-image {
    border-radius: 20px 20px 0 0;
    max-height: 300px;
  }

  .login-form {
    padding: 2rem;
  }
}

/* Animação de entrada */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

.login-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

@media (max-width: 991.98px) {
  .login-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

.btn-login {
  transition: all 0.3s ease;
}
.portfolio-social-style {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 20px;
}

.portfolio-social-style .portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1/1; /* Mantém proporção quadrada */
}

.portfolio-social-style .portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-social-style .portfolio-img:hover {
  transform: scale(1.05);
}

.portfolio-social-style .portfolio-more {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

/* Controles de navegação para mobile */
.portfolio-scroll-controls {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.portfolio-scroll-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: #4cbb17;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Responsividade */
@media (max-width: 768px) {
  .portfolio-social-style {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 6px;
  }

  .portfolio-social-style::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .portfolio-social-style .portfolio-item {
    flex: 0 0 calc(33.333% - 12px);
    scroll-snap-align: start;
  }

  .portfolio-scroll-controls {
    display: flex;
  }
}

.profile-meta {
  font-size: 0.95rem;
}
.profile-meta .favorite-count,
.profile-meta .text-muted,
.profile-meta .share-btn-wrapper {
  font-size: 0.95em;
}

.profile-meta,
.profile-meta .favorite-btn,
.profile-meta .favorite-count,
.profile-meta i,
.profile-meta .text-muted,
.profile-meta .share-btn-wrapper {
  font-size: 0.95em !important;
}

/* interacoes */

.nav-pills-i .nav-link-i {
  color: #495057;
  background-color: transparent;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  font-size: 18px;
}

.nav-pills-i .nav-link-i.active {
  color: white;
  background-color: #4cbb17;
  border: 1px solid #4cbb17;
  border-radius: 8px;
}

.nav-pills-i .nav-link-i.active:hover {
  color: #4cbb17;
  background-color: white;
  border: 1px solid #4cbb17;
  border-radius: 8px;
}

.nav-pills-i .nav-link-i:hover {
  color: #4cbb17;
  background-color: white;
  border: 1px solid #4cbb17;
  border-radius: 8px;
}

.nav-pills-i .nav-link-i.active:not(:hover) {
  color: white !important;
  background-color: #4cbb17 !important;
  border: 1px solid #4cbb17 !important;
  border-radius: 8px;
}

.a-card-body-i {
  color: #1a1a1a;
  padding: 22px;
  border-bottom: 1px solid #4cbb17;
  transition: box-shadow 0.3s ease;
  border-radius: 10px;
}

.a-card-body-i:hover {
  color: #4cbb17;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.interaction-item-i {
  border-left: 2px solid #4cbb17;
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.a-card-body-i h6 {
  color: #1a1a1a;
}

.a-card-body-i i {
  color: var(--primary-color);
}

.a-card-body-i a {
  color: var(--primary-color);
  text-decoration: none;
}

.btn-denuncia {
  background-color: #4cbb17;
  color: white;
  border: none;
  border-radius: 50%;
  /* display: flex;
  align-items: center;
  justify-content: center; */
}

.btn-denuncia i {
  font-size: 0.9rem;
}

.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-denuncia:hover {
  background-color: #3a9a0d;
  color: white;
}

.bg-primary-modal {
  background-color: var(--primary-color);
}

.report-option {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #eaeaea;
}

.report-option:hover {
  background-color: #f1f1f1;
}

.report-option input[type="radio"] {
  margin-right: 15px;
  transform: scale(1.2);
}

.report-icon {
  color: #4cbb17;
}

.report-danger {
  color: #dc3545;
}

.report-option i {
  margin-right: 10px;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.report-selected {
  background-color: rgba(76, 187, 23, 0.1);
  border-color: #4cbb17;
}

.file-upload {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
}

.file-upload-input {
  position: absolute;
  font-size: 100px;
  opacity: 0;
  right: 0;
  top: 0;
  cursor: pointer;
}

.file-upload-label {
  display: block;
  padding: 8px 12px;
  background-color: #f8f9fa;
  border: 1px dashed #dee2e6;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

.file-upload-label:hover {
  background-color: #e9ecef;
}
