/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #E8401C;
  --color-dark-red: #B83210;
  --color-gold: #C9A84C;
  --color-white: #FFFFFF;
  --color-off-white: #FAF8F5;
  --color-light-bg: #FFF5EE;
  --color-dark-text: #1A1A1A;
  --color-medium-text: #3D3D3D;
  --color-footer-bg: #1A0A00;
  --hero-gradient: linear-gradient(135deg, #C84B1A 0%, #E8401C 40%, #F5A623 100%);
  --pain-gradient: linear-gradient(160deg, #8B1A00 0%, #C84B1A 50%, #E8401C 100%);
  --text-muted: #999999;
  --border-light: #EEEEEE;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 34px;
  color: var(--color-dark-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 8px;
}

.section-title {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-cta {
  display: inline-block;
  background: #d30f4b;
  color: var(--color-white) !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(211, 15, 75, 0.35);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
  background: #cd514b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 81, 75, 0.4);
}

.btn-cta-nav {
  background: #d30f4b !important;
  color: #fff !important;
  padding: 11px 22px;
  border-radius: 10px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(211, 15, 75, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta-nav:hover {
  background: #cd514b !important;
  box-shadow: 0 6px 20px rgba(205, 81, 75, 0.4);
}

/* ===== 1. NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: url('https://enlazandoalmas.com/wp-content/uploads/2026/06/bkgHeader.png') no-repeat left top / cover;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
  position: relative;
}

.navbar__logo img {
  display: block;
  height: 50px;
  width: auto;
}

.navbar__links a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navbar__links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== 2. HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,75,26,0.75) 0%, rgba(232,64,28,0.7) 50%, rgba(245,166,35,0.6) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__fecha {
  margin: 16px auto;
  max-width: 280px;
  height: auto;
  display: block;
}

.hero__title {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  color: var(--color-white);
  margin: 20px 0;
}



.hero__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 34px;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 28px;
}

.hero__preventa {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.hero__aliados {
  margin-top: 40px;
}

.hero__aliados img {
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

.countdown {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 32px 0;
}

.countdown div {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 16px 24px;
  min-width: 80px;
}

.countdown span {
  font-family: 'Roboto Slab', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--color-white);
  display: block;
  line-height: 1;
}

.countdown label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  display: block;
}

/* ===== COUNTDOWN SECTION (separada, fondo blanco) ===== */
.countdown-section {
  background: var(--color-white);
  text-align: center;
  padding: 60px 20px;
}

.countdown-section__label {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.countdown-section .countdown {
  margin: 0 0 32px;
}

.countdown-section .countdown div {
  background: var(--color-off-white);
  min-width: 90px;
}

  .countdown-section .countdown span {
    color: var(--color-primary);
    font-size: 60px;
  }

  @media (max-width: 768px) {
    .countdown-section .countdown {
      gap: 8px;
    }
    .countdown-section .countdown div {
      padding: 8px 10px;
      min-width: 60px;
    }
    .countdown-section .countdown span {
      font-size: 28px;
    }
    .countdown-section .countdown label {
      font-size: 10px;
    }
  }

  @media (max-width: 480px) {
    .countdown-section .countdown {
      gap: 6px;
    }
    .countdown-section .countdown div {
      padding: 6px 8px;
      min-width: 50px;
    }
    .countdown-section .countdown span {
      font-size: 20px;
    }
    .countdown-section .countdown label {
      font-size: 9px;
    }
  }

.countdown-section .countdown label {
  color: var(--color-medium-text);
  font-weight: 500;
  letter-spacing: 0.15em;
}

.btn-hero--countdown {
  display: inline-block;
  background: #d30f4b;
  color: var(--color-white);
  padding: 16px 44px;
  border-radius: 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(211, 15, 75, 0.35);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-hero--countdown:hover {
  background: #cd514b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 81, 75, 0.4);
}

.btn-hero {
  display: inline-block;
  background: #d30f4b;
  color: #fff;
  padding: 18px 48px;
  border-radius: 10px;
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
  box-shadow: 0 4px 15px rgba(211, 15, 75, 0.35);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero:hover {
  background: #cd514b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(205, 81, 75, 0.4);
}

/* ===== 3. PAIN ===== */
.pain {
  padding: 80px 0;
  background: linear-gradient(to bottom, #fff, #f8dac3);
}

.pain-title {
  color: var(--color-primary);
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.pain-grid {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.pain-text {
  flex: 1;
}

.pain-text p {
  margin-bottom: 20px;
  font-size: 24px;
  line-height: 34px;
  font-weight: 300;
}

.pain-list {
  flex: 1;
  list-style: none;
}

.pain-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 34px;
}

.pain-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: url('https://enlazandoalmas.com/wp-content/uploads/2026/06/icoBullet.svg') no-repeat center / contain;
}

/* ===== BANNER IMAGEN ===== */
.banner-image {
  width: 100%;
  height: 600px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pain-headline {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  font-style: italic;
  color: var(--color-primary);
  text-align: center;
  margin-top: 48px;
}

/* ===== 5. VIBRAFEST NO ES UN CONGRESO ===== */
.diferente {
  padding: 80px 0;
  background: var(--color-white);
}

.diferente h2,
.diferente p {
  color: #DC4343;
}

.diferente-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.diferente-img {
  width: 100%;
  height: 500px;
  overflow: hidden;
  border-radius: 16px;
}

.diferente-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.diferente-texto h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  color: #DC4343;
  margin-bottom: 24px;
}

.diferente-texto p {
  font-size: 24px;
  line-height: 34px;
  color: #DC4343;
  margin-bottom: 20px;
}

.diferente-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.dif-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.dif-card-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  display: block;
}

.dif-card h3 {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.dif-card p {
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  opacity: 0.92;
}

.dif-card-ciencia {
  background: linear-gradient(135deg, #E8401C, #C84B1A);
}

.dif-card-experiencia {
  background: linear-gradient(135deg, #D42B1A, #E8602C);
}

.dif-card-comunidad {
  background: linear-gradient(135deg, #B83210, #E8401C);
}

.diferente-banner {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 60px 20px;
  border-radius: 10px;
  background: url('https://enlazandoalmas.com/wp-content/uploads/2026/06/bkgHeader.png') no-repeat center bottom / cover;
  text-align: center;
}

.diferente-banner img {
  display: block;
  max-width: 280px;
  margin: 0 auto;
  height: auto;
}

.diferente__cta {
  text-align: center;
}

/* ===== 6. SPEAKERS ===== */
.speakers-section {
  padding: 80px 0;
  background: var(--color-light-bg);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.speaker-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.speaker-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin: 0 auto 24px;
}

.speaker-name {
  font-family: 'Roboto Slab', serif;
  color: #EB561B;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.speaker-role {
  font-family: 'Roboto', sans-serif;
  color: #424141;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  line-height: 1.5;
}

.speaker-country {
  font-size: 18px;
  margin-top: 8px;
  color: #666;
}

/* ===== 7. AGENDA ===== */
.agenda-section {
  background: var(--hero-gradient);
  padding: 80px 0;
}

.agenda-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden;
}

.agenda-tab {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.agenda-tab.active {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
}

.agenda-tab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.25);
}

.agenda-content {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 30px;
}

.agenda-content.active {
  display: block;
}

.agenda-item {
  display: flex;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-light);
}

.agenda-item:last-child {
  border-bottom: none;
}

.agenda-time {
  min-width: 140px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.agenda-info {
  display: flex;
  flex-direction: column;
}

.agenda-speaker {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 2px;
}

.agenda-talk {
  font-size: 24px;
  line-height: 34px;
  color: #555;
}

.agenda-break .agenda-speaker {
  color: var(--text-muted);
  font-style: italic;
}

.agenda-placeholder {
  text-align: center;
  color: #888;
  font-style: italic;
  padding: 40px 0;
}

/* ===== 8. EXPERIENCIAS / TICKETS ===== */
.experiencias-section {
  padding: 80px 0;
  background: var(--color-white);
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.ticket-card {
  background: var(--color-white);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  position: relative;
}

.ticket-card-featured {
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(232, 64, 28, 0.15);
}

.ticket-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
}

.ticket-header {
  margin-bottom: 24px;
}

.ticket-title {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.ticket-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
}

.ticket-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.ticket-features li {
  padding: 8px 0;
  font-size: 24px;
  line-height: 34px;
  border-bottom: 1px solid #F5F5F5;
}

.ticket-features li:last-child {
  border-bottom: none;
}

.ticket-price-old {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.ticket-price {
  font-family: 'Roboto Slab', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 4px;
}

.ticket-price-sub {
  font-size: 0.82rem;
  color: #888;
  margin-bottom: 24px;
}

.btn-ticket {
  display: block;
  width: 100%;
  padding: 14px 16px;
  background: #d30f4b;
  color: var(--color-white);
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(211, 15, 75, 0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

.btn-ticket:hover {
  background: #cd514b;
  box-shadow: 0 6px 20px rgba(205, 81, 75, 0.4);
}

.btn-ticket-secondary {
  background: #d30f4b;
}

.btn-ticket-secondary:hover {
  background: #cd514b;
}

/* ===== 9. VIDEOS / TESTIMONIOS ===== */
.videos-section {
  background: url('https://enlazandoalmas.com/wp-content/uploads/2026/06/bkg2.png') no-repeat center center / cover;
  padding: 80px 0;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  cursor: pointer;
}

.video-thumb {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.video-card:hover .video-thumb {
  transform: scale(1.05);
}

.video-play-btn {
  font-size: 3rem;
  color: var(--color-white);
  opacity: 0.85;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

.video-card:hover .video-play-btn {
  opacity: 1;
}



/* ===== CTA FINAL ===== */


/* ===== 10. FAQ ===== */
.faq-section {
  padding: 80px 0;
  background: var(--color-white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  background: var(--color-off-white);
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  color: var(--color-dark-text);
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-toggle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 34px;
  color: #555;
  font-weight: 300;
}

.faq-contact {
  text-align: center;
  margin-top: 40px;
  padding: 32px;
  background: var(--color-off-white);
  border-radius: 12px;
}

.faq-contact p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--color-medium-text);
}

/* ===== 11. CTA FINAL BLOCK ===== */
.cta-final-block {
  padding: 140px 0;
  text-align: center;
  color: var(--color-white);
  position: relative;
  background: url('https://enlazandoalmas.com/wp-content/uploads/2026/06/CTA_vibra-1024x683-1.jpg') no-repeat center center / cover;
}

.cta-final-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.cta-final-block-content {
  position: relative;
  z-index: 1;
}

.cta-final-block-content h2 {
  font-family: 'Roboto Slab', serif;
  font-size: 34px;
  line-height: 38px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-final-block-content p {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 20px;
  opacity: 0.92;
}

.cta-final-block-content .btn-cta {
  margin-top: 12px;
}

/* ===== 12. FOOTER ===== */
.footer {
  background: url('https://enlazandoalmas.com/wp-content/uploads/2026/06/bkgHeader.png') no-repeat center bottom / cover;
  color: var(--color-white);
  padding: 60px 40px;
  text-align: center;
}

.footer-fecha {
  display: block;
  max-width: 280px;
  margin: 0 auto 24px;
  height: auto;
}

.footer-content .btn-cta {
  margin-bottom: 32px;
}

.footer-content p {
  margin-bottom: 8px;
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 300;
}

.footer-content a {
  color: var(--color-white);
  font-weight: 500;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  transition: background 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.25);
}

.footer-tagline {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== 12. WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .diferente-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tickets-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-card-featured {
    transform: none;
  }

  .videos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a0a00;
    padding: 20px;
    gap: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    margin: 4px 0;
    color: #fff;
  }

  .nav-toggle {
    display: block;
  }

  .navbar-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .hero {
    padding: 60px 20px;
  }

  .pain {
    padding: 60px 20px;
  }

  .banner-image {
    height: 300px;
  }

  .pain-grid {
    flex-direction: column;
    gap: 30px;
  }

  .pain-list {
    padding-left: 0;
  }

  .diferente-grid {
    grid-template-columns: 1fr;
  }

  .diferente-img {
    height: 300px;
  }

  .diferente-cards {
    grid-template-columns: 1fr;
  }

  .speakers-grid {
    grid-template-columns: 1fr;
  }

  .tickets-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .countdown {
    gap: 8px;
  }

  .countdown div {
    padding: 8px 8px;
    min-width: 55px;
  }

  .countdown span {
    font-size: 24px;
  }

  .countdown label {
    font-size: 10px;
  }

  .agenda-item {
    flex-direction: column;
    gap: 6px;
  }

  .agenda-tab {
    font-size: 0.7rem;
    padding: 12px 10px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .countdown {
    gap: 6px;
  }

  .countdown div {
    padding: 6px 8px;
    min-width: 50px;
  }

  .countdown span {
    font-size: 18px;
  }

  .countdown label {
    font-size: 9px;
  }
}
