/* === PORTFOLIO === */
.portfolio-content {
  height: 200px;
  width: 350px;
  border-radius: 10px;
  background-color: #f5f5f5;
  /* Fondo gris claro opcional */
}

.portfolio-content img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* === TESTIMONIALS === */
.testimonial-item {
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.testimonial-item img {
  height: 100px;
  width: 50px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* === SECTION TITLES === */
.section-title {
  padding-bottom: 0%;
  margin-bottom: 0%;
}

.section-title h2 {
  padding-bottom: 0%;
}

/* === TEXT === */
.text-justify {
  text-align: justify;
}

/* === ICONS === */
.bg-icon {
  color: #ffffff !important;
}



/* === HEADER === */
header {
  padding-top: 0% !important;
  margin-top: 0% !important;
  padding-bottom: 0% !important;
  margin-bottom: 0% !important;
}

header .sitename {
  color: #00d5ff !important;
}

/* === FOOTER === */
footer #logo-footer {
  border-radius: 20px;
}

/* === CARDS === */
.card {
  cursor: pointer;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.3s ease;

  &:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12),
      0 6px 6px rgba(0, 0, 0, 0.10);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
  }
}

.card h5 {
  color: #276eb1;
}

.card img { 
  width: 80px;
  height: 80px;
}

/* === HERO === */
#hero {
  height: 100vh;
}

/* === MODALS === */
.modal .modal-title {
  text-transform: uppercase;
}

.modal-body img {
  width: 300px;
  padding-top: 10px;  
}

.modal .modal-body .row .img {
  width: 100%;
  height: 250px; 
}

/* === MOVIES SECTION === */
.movies {
  padding-top: 50px;
  padding-bottom: 0%;
}

.movies h2 {
  padding-top: 0%;
}

.movies .row {
  padding: 0% !important;
  margin: 0%;
}

.video-thumbnail {
  display: block;
  text-decoration: none;
}

.video-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
  transition: transform 0.4s ease;
}

.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  pointer-events: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

/* Hover en el contenedor completo */
.video-thumbnail:hover .video-img {
  transform: scale(1.05);
}

.video-thumbnail:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.7));
}

.footer {
  padding: 20px 0;
  font-size: 14px;
  transition: all 0.3s;
  border-top: 1px solid #cddfff;
}

.footer .copyright {
  text-align: center;
  color: #012970;
}

.footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #012970;
}

.movies{
  padding-top: 85px;
}

#logo-footer{
  height: 200px;
}