/* style.css */

/* Reset e base */
body,
html {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #0d253f;
  color: #fff;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  background-color: #032541 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: #01b4e4 !important;
}

.navbar-nav .nav-link {
  color: #ffffff !important;
  margin-left: 1rem;
}

/* Seções */
.section-title {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #fff;
  border-left: 4px solid #01b4e4;
  padding-left: 10px;
  font-size: 1.75rem;
}

/* Cards */
.card {
  background-color: #1c2b3a;
  border: none;
  color: white;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.card img {
  height: 250px;
  object-fit: cover;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.card-body {
  padding: 10px 15px;
}

.card-title {
  font-size: 1rem;
  margin: 0;
}

.card-text {
  font-size: 0.9rem;
  color: #ccc;
}

/* Carousel */
/*   .carousel-item img {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
    filter: brightness(0.85);
    border-radius: 8px;
  }
  
  .carousel-caption {
    background: rgba(0,0,0,0.5);
    border-radius: 8px;
    padding: 1rem;
  } */

/* CARD INICIAL */
/* .card:hover {
    transform: scale(1.03);
    transition: transform 0.2s ease-in-out;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  }
  .card-title {
    font-size: 1rem;
    font-weight: bold;
  }
  .card-text {
    font-size: 0.9rem;
  } */


.movie-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.05);
  height: 100%;
}

.movie-card:hover {
  transform: scale(1.05);
}

.movie-card img {
  width: 100%;
  /* height: 370px; */
  object-fit: fill;
  border-radius: 8px;
}

.movie-info {
  padding: 10px;
  color: #fff;
}

.movie-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 5px 0;
}

.movie-date {
  font-size: 0.9rem;
  color: #ccc;
}

.vote-circle {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #081c22;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #21d07a;
  font-weight: bold;
  font-size: 0.9rem;
  border: 2px solid #204529;
}



/* Footer */
footer {
  background-color: #032541;
  color: #ccc;
  padding: 15px 0;
  text-align: center;
  margin-top: 60px;
}

/* Busca */
.search-box {
  margin-top: 80px;
  margin-bottom: 40px;
  text-align: center;
}

.search-box input {
  width: 60%;
  padding: 10px;
  font-size: 1rem;
  border-radius: 4px;
  border: none;
}

.search-box button {
  padding: 10px 20px;
  font-size: 1rem;
  margin-left: 10px;
  background-color: #01b4e4;
  border: none;
  border-radius: 4px;
  color: #fff;
}