/*
Theme Name: Global Tickets
Theme URI: https://tusitio.com
Author: Tu Nombre
Version: 1.0
Description: Tema personalizado moderno para Global Tickets
*/

body {
  font-family: 'Poppins', sans-serif;
  background: #f9fafb;
  color: #1e293b;
  margin: 0;
  line-height: 1.6;
}

/* ================= HEADER ================= */
header {
  background: linear-gradient(90deg, #0ea5e9, #6366f1);
  color: white;
  padding: 15px 40px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-height: 130px;
  width: auto;
}

/* Menú principal */
nav .menu-principal {
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav .menu-principal a {
  background: white;
  color: #0ea5e9;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  padding: 8px 16px;
  transition: all 0.3s ease;
  display: inline-block;
}

nav .menu-principal a:hover {
  background: #facc15;
  color: #1e293b;
  transform: translateY(-2px);
}

/* LINK DE PAGO DEBAJO DEL LOGO */
.header-bottom {
  text-align: left;
  margin-top: 10px;
}

.btn-menu {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-pago {
  background: #facc15;
  color: #1e293b;
}

.btn-pago:hover {
  background: #fde047;
  transform: translateY(-2px);
}

/* ================= HERO ================= */
.hero {
  background: linear-gradient(135deg, #FFFFFF, #E3E1DE);
  color: white;
  padding: 100px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero .btn-cta {
  background: white;
  color: #0ea5e9;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
}
.hero .btn-cta:hover {
  background: #1e293b;
  color: white;
}

/* Contenedor general de los eventos */
.etn-event-card {
    margin: 15px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.etn-event-card:hover {
    transform: translateY(-5px);
}

/* Imagen */
.etn-event-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    object-fit: cover;
    width: 100%;
    height: 220px;
}

/* Títulos */
.etn-title a {
    font-size: 18px !important;
    font-weight: bold;
    color: #111 !important;
    text-decoration: none !important;
}

/* Ubicación */
.etn-meta-location {
    color: #007bff !important;
    font-weight: 500;
}

.etn-btn {
    display: inline-block;
    background: linear-gradient(90deg, #3f51b5, #00c6ff) !important; /* Azul → Turquesa */
    color: #fff !important;
    font-weight: bold;
    border-radius: 25px;
    padding: 10px 25px;
    margin-top: 10px;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none !important;
}

.etn-btn:hover {
    background: linear-gradient(90deg, #2c3e91, #0099cc) !important; /* Hover más oscuro */
    color: #fff !important;
}


/* Grid: que no queden pegados */
.etn-event-layout-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px !important;
}



/* ================= FOOTER ================= */
footer {
  background: #1e293b;
  color: white;
  text-align: center;
  padding: 30px 20px;
  margin-top: 50px;
}
footer p {
  margin: 5px 0;
}

/* ================= BOTÓN WHATSAPP ================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 999;
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
}
