/* Tarjeta naranja para plataformas */
.platform-card {
  background: linear-gradient(135deg, #ff9800 0%, #fbc02d 100%);
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  padding: 32px 24px 28px 24px;
  margin: 24px auto 0 auto;
  max-width: 520px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.platform-card a {
  display: inline-block;
  background: #fff;
  color: #ff9800;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 1.1rem;
  margin-top: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.platform-card a:hover {
  background: #ffe0b2;
  color: #e65100;
  transform: translateY(-2px) scale(1.04);
}
/* Cubos decorativos de fondo */
.decor-cube {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
}
.decor-cube-1 {
  top: 40px;
  left: 0;
  transform: rotate(-10deg);
}
.decor-cube-2 {
  bottom: 60px;
  right: 0;
  transform: rotate(18deg);
}
.decor-cube-3 {
  top: 60%;
  left: 60px;
  transform: rotate(-25deg);
}
.decor-cube-4 {
  top: 180px;
  left: 20vw;
  transform: rotate(12deg);
}
.decor-cube-5 {
  bottom: 120px;
  left: 10vw;
  transform: rotate(-18deg);
}
.decor-cube-6 {
  top: 80vh;
  right: 12vw;
  transform: rotate(22deg);
}
.decor-cube-7 {
  top: 30vh;
  right: 8vw;
  transform: rotate(-8deg);
}
.decor-cube-8 {
  bottom: 10vh;
  left: 50vw;
  transform: rotate(15deg);
}
.decor-cube-9 {
  top: 10vh;
  right: 30vw;
  transform: rotate(-20deg);
}
.decor-cube-10 {
  bottom: 30vh;
  right: 20vw;
  transform: rotate(7deg);
}
.decor-cube-11 {
  top: 70px;
  left: 80vw;
  transform: rotate(-15deg);
}

body {
  position: relative;
  z-index: 1;
}
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");

/* General */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #fffaf5;
  color: #333;
}

header {
  background: #d35400; /* naranja oscuro */
  color: #fff;
  text-align: center;
  padding: 1rem;
}

header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

h2 {
  margin-top: 40px;
  color: #e67e22; /* naranja brillante */
}

/* Timeline */
.timeline {
  position: relative;
  margin: 50px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #e67e22; /* línea naranja */
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.timeline-item .timeline-content {
  background: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: relative;
  border-left: 5px solid #f39c12; /* borde naranja más claro */
}

.timeline-item .timeline-date {
  font-weight: bold;
  margin-bottom: 10px;
  color: #d35400; /* texto naranja oscuro */
}

/* Left items */
.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -10px;
  width: 20px;
  height: 20px;
  background: #e67e22;
  border-radius: 50%;
  border: 3px solid #fffaf5;
}

/* Right items */
.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(even) .timeline-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  width: 20px;
  height: 20px;
  background: #e67e22;
  border-radius: 50%;
  border: 3px solid #fffaf5;
}

/* Responsive */
@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    text-align: left !important;
    left: 0 !important;
  }

  .timeline-item .timeline-content::before {
    left: -30px !important;
    right: auto !important;
  }
}
#galeria img {
  border-radius: 15px; /* redondea las esquinas */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5); /* sombra para resaltar */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efecto hover */
#galeria img:hover {
  transform: scale(1.03); /* efecto de zoom suave */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
}