/*
Theme Name: Eventick Theme
Author: Admin
Description: Tema personalizado creado desde cero para el proyecto de Analítica de Datos.
Version: 1.0
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #a6a6ea;
  background-image: 
    radial-gradient(circle at 10% 20%, #845cac 0%, #322b67 70%),
    repeating-linear-gradient(45deg, rgba(255, 120, 200, 0.02) 0px, rgba(255, 120, 200, 0.02) 2px, transparent 2px, transparent 6px);
  font-family: 'Inter', sans-serif;
  color: #e2deec;
  line-height: 1.5;
  min-height: 100vh;
  padding: 2rem 1.2rem;
}

/* textura grano sútil (indie) */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJmIj48ZmVUdXJidWxlbmNlIHR5cGU9ImZyYWN0YWxOb2lzZSIgYmFzZUZyZXF1ZW5jeT0iLjc0IiBudW1PY3RhdmVzPSIzIiAvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbHRlcj0idXJsKCNmKSIgb3BhY2l0eT0iMC4wMjUiIC8+PC9zdmc+');
  pointer-events: none;
  opacity: 0.35;
  z-index: 999;
  mix-blend-mode: overlay;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* tipografía títulos */
h1, h2, h3, .logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* header estilo fever pero más crudo */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(145deg, #e59ccd, #8abeea);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px #f07aafe0;
}

.city-badge {
  background: rgba(159, 134, 183, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid #80c2df;
  padding: 0.4rem 1.1rem;
  border-radius: 40px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
}

.city-badge i {
  color: #efebed;
}

.lang-switch {
  background: #534264;
  border: 1px solid #e0dbdd;
  color: #f4f1f2;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  box-shadow: 0 0 8px #e66ea4b8;
}

/* hero */
.hero {
  margin-bottom: 4.5rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 12vw, 5rem);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff, #e1b2ff, #b3d0ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 20px #ff70c1b3;
}

.hero .tagline {
  font-size: 1.4rem;
  color: #cfc1e6;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .tagline span {
  background: #1d1728;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  border-left: 6px solid #ff9f6e;
  border-right: 1px solid #ff9f6e60;
  font-weight: 400;
}

/* secciones */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 3.5rem 0 1.8rem;
}

.section-header h2 {
  font-size: 2.3rem;
  background: linear-gradient(145deg, #e6d9e1, #bc9aff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline;
}

.section-header h2::before {
  content: "◆";
  color: #ece8ea;
  font-size: 1.8rem;
  margin-right: 8px;
  opacity: 0.7;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 80%;
  height: 4px;
  background: linear-gradient(90deg, #dad2d7, #ffb26e, #b8a6f3);
  border-radius: 4px;
  margin-top: 6px;
}

.section-link {
  color: #f7f3f5;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px dotted #f3eef0;
  padding-bottom: 2px;
  transition: 0.2s;
}

.section-link i {
  font-size: 0.8rem;
}

.section-link:hover {
  color: #ffe0f0;
  border-bottom: 2px solid #ebe6e9;
}

/* grid de tarjetas */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: rgba(17, 12, 26, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(244, 126, 197, 0.607);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 30px -15px black, 0 0 0 1px rgba(255, 80, 179, 0.628) inset;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 30px 40px -18px black, 0 0 0 2px rgba(228, 70, 191, 0.678) inset;
  border-color: #f5eff2;
}

.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #352e3f;
  border-bottom: 1px solid #ff66a660;
  transition: 0.2s;
}

.card:hover .card-img {
  filter: brightness(1.1) saturate(1.1);
}

.card-content {
  padding: 1.5rem 1.2rem 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: #f7e5f1;
  margin-bottom: 0.5rem;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: #bfb0d9;
  margin: 0.4rem 0;
}

.card-meta i {
  color: #ffffff;
  width: 1.1rem;
  text-align: center;
}

.badge {
  background: #864e72;
  padding: 0.25rem 0.9rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #ffc9e6;
  border: 1px solid #ffffff;
  align-self: flex-start;
  margin: 0.6rem 0 0.8rem;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #ffffff;
  color: #f9e7f1;
  padding: 0.5rem 1rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: 0.15s;
  width: fit-content;
  margin-top: auto;
  cursor: default;
}

.btn-outline i {
  font-size: 0.7rem;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #ff66aa20;
  border-color: #ebd2e0;
  color: #fff0fa;
}

/* banner experiencias */
.experiencia-block {
  margin: 5rem 0 3rem;
  text-align: center;
  background: linear-gradient(135deg, #1e132b, #110b1a);
  border-radius: 80px;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(255, 110, 180, 0.3);
  box-shadow: 0 20px 30px -10px black;
}

.experiencia-block h2 {
  font-size: 2.6rem;
  background: linear-gradient(145deg, #fec5ef, #f6e9f1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.experiencia-block p {
  color: #cfbfe6;
  max-width: 600px;
  margin: 0 auto 1.8rem;
  font-size: 1.2rem;
}

.experiencia-block .btn-outline {
  border-width: 2px;
  padding: 0.8rem 2.5rem;
  font-size: 1.2rem;
  border-color: #efe8ed;
  color: #ffd6f0;
}

.footer {
  margin-top: 5rem;
  text-align: center;
  color: #6f5f82;
  border-top: 1px dashed #4a3a55;
  padding-top: 2rem;
  font-size: 0.9rem;
}

.footer i {
  color: #e7c4d0;
}

/* algunos detalles chulos */
.fa-sparkles {
  color: #ffb8e0;
  filter: drop-shadow(0 0 4px #f6f4f5);
}