/* Reset y Variables */
:root {
  /* Colores sofisticados */
  --pink-primary: #c2185b;
  --pink-dark: #880e4f;
  --pink-light: #f48fb1;
  --pink-accent: #e91e63;

  --black: #000000;
  --white: #ffffff;
  --gray-dark: #1a1a1a;
  --gray-medium: #333333;
  --gray-light: #f5f5f5;
  --gray-text: #666666;

  --gold: #d4af37;
  --gold-light: #f4e4bc;

  /* Tipografías profesionales */
  --font-display: "Playfair Display", serif;
  --font-body: "Montserrat", sans-serif;
  --font-accent: "Dancing Script", cursive;

  /* Espaciado */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transiciones */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--black);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(194, 24, 91, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(138, 43, 226, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(233, 30, 99, 0.1) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      ellipse at 30% 20%,
      rgba(194, 24, 91, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(138, 43, 226, 0.08) 0%,
      transparent 40%
    );
  animation: smoke 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 86%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navegación */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar.scrolled {
  box-shadow: 0 2px 30px rgba(194, 24, 91, 0.2);
  background: rgba(0, 0, 0, 0.95);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: var(--transition);
}

.logo-img {
  height: 50px;
  width: auto;
  transition: var(--transition);
  filter: brightness(1);
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
  transition: var(--transition);
}

.logo:hover .logo-img {
  filter: brightness(1.2);
  transform: scale(1.05);
}

.logo:hover .logo-text {
  color: var(--pink-primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  text-transform: uppercase;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--pink-primary);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(194, 24, 91, 0.15) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: left;
  color: var(--white);
  padding: 0 2rem;
  max-width: 600px;
  margin-left: 10%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.7);
  animation: fadeInUp 1s ease;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: var(--font-accent);
  font-size: 1.6rem;
  margin-bottom: 3rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  animation: fadeInUp 1.2s ease;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  animation: fadeInUp 1.4s ease;
}

.hero-social {
  display: flex;
  gap: 2.5rem;
  justify-content: flex-start;
  animation: fadeInUp 1.6s ease;
}

.social-icon {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}

.social-icon::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

.social-icon:hover::after {
  width: 100%;
}

.social-icon:hover {
  opacity: 0.8;
}

/* Botones */
.btn {
  padding: 14px 32px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.btn-primary {
  background: var(--pink-primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(194, 24, 91, 0.3);
}

.btn-primary:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(194, 24, 91, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* Secciones Generales */
section {
  padding: var(--spacing-xl) 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.title-divider {
  width: 80px;
  height: 3px;
  background: var(--pink-primary);
  margin: 0 auto;
}

/* Biografía */
.biografia-section {
  background: transparent;
  padding: var(--spacing-xl) 0;
}

.biografia-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--spacing-lg);
  align-items: center;
}

.biografia-image {
  position: relative;
}

.bio-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.biografia-text {
  padding: 2rem 0;
}

.bio-intro {
  margin-bottom: 2rem;
}

.bio-intro .lead {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.bio-intro p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.9;
}

.bio-intro strong {
  color: var(--white);
  font-weight: 600;
}

.bio-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Música */
.musica-section {
  background: transparent;
  padding: var(--spacing-xl) 0;
}

.spotify-embed-wrapper {
  margin: 3rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.spotify-iframe {
  border-radius: 12px;
}

.video-section {
  margin: 4rem 0;
}

.video-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  background: var(--black);
}

.youtube-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.video-placeholder {
  background: var(--black);
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
}

.video-placeholder p {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.video-stats {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.platforms-links {
  text-align: center;
  margin-top: 4rem;
}

.platforms-title {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.platforms-grid {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.platform-btn {
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.platform-btn:hover {
  background: var(--pink-primary);
  transform: translateY(-2px);
}

/* Prensa */
.prensa-section {
  background: transparent;
  padding: var(--spacing-xl) 0;
}

.prensa-carousel-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.prensa-carousel {
  overflow: hidden;
  border-radius: 12px;
}

.prensa-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 0;
  will-change: transform;
}

.prensa-carousel-track .prensa-card {
  min-width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
  flex-shrink: 0;
  pointer-events: auto;
  box-sizing: border-box;
}

.prensa-carousel-track:active .prensa-card {
  pointer-events: none;
}

.prensa-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 auto;
}

.prensa-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.prensa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(194, 24, 91, 0.3);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(194, 24, 91, 0.3);
}

.prensa-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prensa-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: var(--transition-slow);
}

.prensa-card:hover .prensa-img {
  transform: scale(1.05);
}

.prensa-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prensa-source {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pink-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.prensa-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.4;
  flex: 1;
}

.prensa-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.prensa-read-more {
  font-size: 0.9rem;
  color: var(--pink-primary);
  font-weight: 600;
  margin-top: auto;
  display: inline-block;
  transition: var(--transition);
}

.prensa-card:hover .prensa-read-more {
  transform: translateX(5px);
  color: var(--pink-light);
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  z-index: 10;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn:hover {
  background: rgba(194, 24, 91, 0.8);
  border-color: var(--pink-primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
  left: -70px;
}

.carousel-btn-next {
  right: -70px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--pink-primary);
  width: 30px;
  border-radius: 6px;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.carousel-dot.active:hover {
  background: var(--pink-light);
}

/* Equipos */
.equipos-section {
  background: transparent;
  padding: var(--spacing-lg) 0;
}

.equipos-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.equipo-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.95rem;
}

.equipo-item:last-child {
  border-bottom: none;
}

.equipo-category {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  text-align: center;
}

.equipo-separator {
  display: none;
}

.equipo-name {
  color: var(--white);
  font-weight: 500;
  white-space: nowrap;
  text-align: center;
}

.equipo-link {
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
  text-align: center;
}

.equipo-link:hover {
  color: var(--pink-light);
  text-decoration: underline;
}

/* Proyectos */
.proyectos-section {
  background: transparent;
  padding: var(--spacing-xl) 0;
}

.proyectos-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.proyectos-list {
  max-width: 100%;
}

.proyectos-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proyectos-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.proyecto-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  align-items: start;
}

.proyecto-item:last-child {
  border-bottom: none;
}

/* Evento Activo en Proyectos */
.evento-activo-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 2px solid var(--pink-primary);
  align-items: start;
  position: relative;
}

.evento-activo-item.evento-activo-hidden {
  display: none;
}

.evento-activo-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pink-primary), var(--pink-dark));
  border-radius: 0 2px 2px 0;
}

.evento-activo-date {
  font-family: var(--font-display);
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.evento-fecha-texto {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-primary);
  margin-bottom: 1rem;
}

.evento-imagen-proyectos {
  width: 100%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  border-radius: 8px;
  margin-top: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
}

.evento-imagen-hidden {
  display: none !important;
}

.evento-countdown-inline {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.countdown-item-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}

.countdown-number-inline {
  font-size: 1.1rem;
  color: var(--pink-primary);
  font-weight: 700;
  line-height: 1;
  min-width: 24px;
  text-align: center;
}

.countdown-label-inline {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown-separator {
  font-size: 1rem;
  color: var(--pink-primary);
  font-weight: 700;
  margin: 0 0.1rem;
  line-height: 1;
}

.proyecto-date {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-primary);
  text-align: right;
}

.proyecto-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.proyecto-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.7;
}

/* Contacto */
.contacto-section {
  background: transparent;
  padding: var(--spacing-xl) 0;
}

.contacto-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: start;
}

.contacto-image {
  position: relative;
}

.contact-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contacto-info {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.contact-main-section {
  padding-top: 0;
}

.contact-details {
  margin: 0 0 2rem 0;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.contact-item a {
  color: var(--pink-primary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--pink-dark);
  text-decoration: underline;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 2rem 0;
}

.social-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  width: fit-content;
}

.social-link:hover {
  color: var(--pink-primary);
  border-bottom-color: var(--pink-primary);
}

.fan-support {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fan-support h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.fan-support p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.merchandising {
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.merchandising h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.merchandising p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.newsletter {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: nowrap;
}

.newsletter-wrapper {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  margin-right: 1rem;
  flex-shrink: 0;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  margin-right: auto;
  flex-shrink: 0;
  white-space: nowrap;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  max-width: 350px;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--white);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--pink-primary);
  background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.footer-container {
  width: 86%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .biografia-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .contacto-content {
    grid-template-columns: 1fr;
  }

  .proyectos-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .proyectos-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .proyecto-item {
    grid-template-columns: 120px 1fr;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    gap: 1.5rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-social {
    justify-content: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .bio-stats {
    justify-content: space-around;
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .prensa-carousel-wrapper {
    max-width: 100%;
    padding: 0 60px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
  }

  .carousel-btn-prev {
    left: 10px;
  }

  .carousel-btn-next {
    right: 10px;
  }

  .proyectos-content {
    grid-template-columns: 1fr;
  }

  .proyectos-image {
    order: -1;
    margin-bottom: 2rem;
  }

  .proyecto-item {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .proyecto-date {
    text-align: left;
    font-size: 1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .section-title {
    font-size: 2rem;
  }

  .bio-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .equipo-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .equipo-link {
    justify-self: flex-start;
  }

  .container {
    padding: 0 1rem;
  }

  section {
    padding: var(--spacing-lg) 0;
  }

  .prensa-carousel-wrapper {
    padding: 0 50px;
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
  }

  .carousel-btn svg {
    width: 18px;
    height: 18px;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
  }

  .carousel-dot.active {
    width: 24px;
  }
}

/* ========================================
   Mensajes del Newsletter
   ======================================== */
.newsletter-message {
  margin-top: 1.5rem;
  padding: 1.25rem 1.75rem;
  border-radius: 12px;
  font-family: var(--font-body);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.newsletter-message-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.newsletter-message-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  animation: iconPulse 0.5s ease;
}

.newsletter-message-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.newsletter-message-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.newsletter-message-title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.newsletter-message-details {
  display: block;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0.9;
}

.newsletter-message-success {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.15) 0%,
    rgba(56, 142, 60, 0.15) 100%
  );
  color: #4caf50;
  border: 2px solid rgba(76, 175, 80, 0.4);
}

.newsletter-message-success .newsletter-message-icon {
  color: #4caf50;
  filter: drop-shadow(0 0 8px rgba(76, 175, 80, 0.4));
}

.newsletter-message-error {
  background: linear-gradient(
    135deg,
    rgba(244, 67, 54, 0.15) 0%,
    rgba(211, 47, 47, 0.15) 100%
  );
  color: #f44336;
  border: 2px solid rgba(244, 67, 54, 0.4);
}

.newsletter-message-error .newsletter-message-icon {
  color: #f44336;
  filter: drop-shadow(0 0 8px rgba(244, 67, 54, 0.4));
}

.newsletter-message-warning {
  background: linear-gradient(
    135deg,
    rgba(255, 152, 0, 0.15) 0%,
    rgba(255, 143, 0, 0.15) 100%
  );
  color: #ff9800;
  border: 2px solid rgba(255, 152, 0, 0.4);
}

.newsletter-message-warning .newsletter-message-icon {
  color: #ff9800;
  filter: drop-shadow(0 0 8px rgba(255, 152, 0, 0.4));
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes iconPulse {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .newsletter-message {
    padding: 1rem 1.25rem;
    margin-top: 1rem;
  }

  .newsletter-message-content {
    gap: 0.75rem;
  }

  .newsletter-message-icon {
    width: 18px;
    height: 18px;
  }

  .newsletter-message-title {
    font-size: 0.95rem;
  }

  .newsletter-message-details {
    font-size: 0.8rem;
  }
}

/* ========================================
   Popup de Evento con Contador Regresivo
   ======================================== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.popup-overlay.popup-hidden {
  display: none;
}

.popup-image-hidden {
  display: none !important;
}

.popup-container {
  background: linear-gradient(
    135deg,
    rgba(255, 0, 150, 0.2) 0%,
    rgba(75, 0, 130, 0.2) 100%
  );
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  max-width: 600px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  box-shadow: 0 20px 60px rgba(255, 0, 150, 0.3);
}

.popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.popup-close:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.1);
}

.popup-image {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
}

.popup-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--font-heading);
}

.popup-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.countdown-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.countdown-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--pink-primary);
  text-shadow: 0 0 20px rgba(255, 0, 150, 0.5);
  line-height: 1;
  font-family: var(--font-heading);
}

.countdown-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 0.5rem;
  letter-spacing: 1px;
  font-family: var(--font-body);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .popup-container {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .popup-content h2 {
    font-size: 1.5rem;
  }

  .popup-content p {
    font-size: 1rem;
  }

  .countdown-number {
    font-size: 2rem;
  }

  .countdown-container {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 60px;
  }

  .popup-image {
    max-height: 200px;
  }
}
