body {
  font-family: 'Helvetica Neue', sans-serif;
  color: #333;
}
header {
  background-color: #002a3a;
  color: white;
}
header .navbar-nav .nav-link {
  color: white !important;
}
.navbar-brand img {
  height: 50px;
}
.navbar-collapse {
  background-color: #002a3a;
}
.carousel-item img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.carousel-indicators [data-bs-target] {
  background-color: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}
.carousel-indicators {
  bottom: 20px;
}
.white-text {
  color: white;
}
section {
  padding: 60px 0;
}
footer {
  background-color: #002a3a;
  color: white;
  padding: 40px 0;
}
.partner-logo, .experience-photo {
  width: 100%;
  max-width: 150px;
  margin: 15px;
}
.video-placeholder {
  width: 100%;
  height: 200px;
  background-color: #ccc;
  margin-bottom: 20px;
}
.instagram-embed {
  width: 100%;
  max-width: 540px;
  margin: auto;
}
.video-item {
  flex-shrink: 0;
  padding: 0 8px;
  box-sizing: border-box;
  width: 100%;
}

.video-vertical {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.experience-photo {
  width: 200px;
  height: auto;
  margin: 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.2s;
}

.experience-photo:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (min-width: 768px) {
  .video-item {
    width: 50%; /* 2 videos en tablet */
  }
}
@media (min-width: 992px) {
  .video-item {
    width: calc(100% / 3); /* 3 videos en escritorio */
  }
}