/* ===== RESET BÁSICO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f6;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HEADER LOGO ===== */
.header-logo {
  text-align: center;
  padding: 20px;
  background: linear-gradient(120deg, #e0f7fa, #f1f8f9);
}

.logo {
  max-width: 180px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(57,255,20,0.35));
  transition: transform 0.3s ease;
  cursor: pointer;
}
.logo:hover {
  transform: scale(1.08) rotate(-3deg);
}

/* ===== BOTÓN VOLVER ===== */
.btn-volver {
  position: fixed;
  top: 20px;
  left: 20px;
  background: #1e90ff;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(30,144,255,0.4);
  transition: all 0.3s ease;
  z-index: 1000;
}
.btn-volver:hover {
  background: #39ff14;
  color: #000;
  box-shadow: 0 0 18px rgba(57,255,20,0.7);
  transform: scale(1.1);
}

/* ===== SECCIÓN CONTACTO ===== */
.banner-contacto {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(160deg, #f1f8f9, #e0f7fa);
  animation: fadeIn 1.5s ease-in-out;
}

.titulo-banner {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1e90ff;
  text-shadow: 0 0 8px rgba(125,60,255,0.3);
  animation: slideDown 1s ease;
}

.descripcion-banner {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
  animation: fadeInUp 1.2s ease;
}

/* LISTA DE CONTACTO */
.info-contacto {
  list-style: none;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: fadeInUp 1.4s ease;
}

.info-contacto li {
  margin: 15px 0;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #333;
}

.info-contacto strong {
  color: #1e90ff;
}

.info-contacto a {
  color: #7d3cff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.info-contacto a:hover {
  color: #39ff14;
  text-shadow: 0 0 8px rgba(57,255,20,0.5);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 20px;
  background: #1e90ff;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(125,60,255,0.2) 0%, transparent 70%);
  animation: rotatePortal 14s linear infinite;
}

/* ===== ANIMACIONES ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes rotatePortal {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
