/* Variables de color y tipografía */
:root {
    --color-primary: #7AC1E1;
    --color-secondary: #C6C5C5;
    --color-accent: #3B89AC;
    --color-dark: #303031;
    --font-roboto: 'Roboto', sans-serif;
}
/* VLOG Section */
.vlog-section {
  background-color: white;
  padding: 50px 80px;
  font-family: var(--font-roboto);
  color: var(--color-dark);
  text-align: center;
}

.vlog-header h2 {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 15px;
}

.vlog-header p {
  max-width: 800px;
  margin: 0 auto 10px auto;
  font-size: 18px;
  line-height: 1.6;
  text-align: justify;
}

.vlog-objective {
  margin-top: 15px;
  font-weight: bold;
  color: var(--color-dark);
}

.vlog-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr); /* 3 columnas fijas en pantallas grandes */
  gap: 80px;
  margin-top: 40px;
}

.vlog-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
   background-color: var(--color-dark);
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.vlog-item:hover {
  transform: scale(1.03);
}
.vlog-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.vlog-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--color-accent);
  font-size: 1.5rem;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vlog-caption {
  margin-top: 10px;
  font-size: 0.95rem;
  color: var(--color-secondary);
  text-align: center;
  font-weight: 500;
}
@media (max-width: 768px) {
  .vlog-section {
  background-color: white;
  padding: 50px 20px;
  font-family: var(--font-roboto);
  color: var(--color-dark);
  text-align: center;
}
  .vlog-grid {
    grid-template-columns: 1fr; /* Una sola columna */
  }

  .vlog-caption {
    font-size: 1rem;
  }

  .vlog-item {
    width: 100%;
    max-width: 700px; /* Aumenta el tamaño del contenedor */
    margin: 0 auto;
    padding: 0;
  }

  .vlog-item video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9; /* Mantiene formato rectangular */
    object-fit: cover;
    border-radius: 10px;
  }
}