@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Flex:opsz,wdth,wght,XOPQ,XTRA,YOPQ,YTDE,YTFI,YTLC,YTUC@8..144,25,100..1000,96,468,79,-203,738,514,712&display=swap');

:root {
  --topbar-bg: #D1E8FA;
  --primary-blue: #066BBB;
  --accent-green: #3EC87B;
  --dark-blue: #1B3357;
  --card-bg-light: #384D62;
  --card-bg-dark: #252523;
  --text-gray: #B0B0B0;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  transition: filter 0.3s ease, transform 0.3s ease;
}

img:hover {
  filter: brightness(110%);
}

body {
  font-family: 'Roboto Flex', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
  color: #333;
  background-color: var(--white);
  line-height: 1.2;
  font-variation-settings:
    "slnt" 0,
    "wdth" 25,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Oswald', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Utilities */
.text-center {
  text-align: center;
}

.text-white {
  color: var(--white) !important;
}

.text-gray {
  color: var(--text-gray);
}

.text-green {
  color: var(--accent-green);
}

.text-light-blue {
  color: var(--topbar-bg);
  font-weight: 300;
  font-size: 0.96rem;
}

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 25px;
  min-height: 48px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-navbar {
  display: inline-block;
  padding: 5px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-green {
  background-color: var(--accent-green);
  color: var(--card-bg-dark);
  font-weight: 700;
}

.btn-green:hover {
  background-color: #33a566;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
  font-weight: 200;
}

.btn-outline-white:hover {
  background-color: var(--white);
  color: var(--primary-blue);
}

/* TOPBAR */
.topbar {
  background-color: var(--white);
  padding: 5px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.topbar.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.topbar.scrolled:hover {
  background-color: var(--white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* HAMBURGER MENU BASE */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  position: relative;
  transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 3px;
  background-color: var(--primary-blue);
  transition: all 0.3s ease;
}

.hamburger::before {
  top: -8px;
  left: 0;
}

.hamburger::after {
  top: 8px;
  left: 0;
}

/* Active state for hamburger */
.menu-toggle.active .hamburger {
  background-color: transparent;
}

.menu-toggle.active .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.menu-toggle.active .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: right;
}

.topbar-logo.text-logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.1;
  font-weight: 800;
}

.logo-wrapper {
  position: relative;
  display: flex;
}

.logo-wrapper::before {
  content: '';
  position: absolute;
  top: 4%;
  left: 6%;
  right: 6%;
  bottom: 6%;
  background-color: var(--white);
  z-index: 0;
  clip-path: polygon(5% 5%, 95% 5%, 95% 75%, 50% 98%, 5% 75%);
}

.logo-img {
  height: 60px;
  width: auto;
  max-width: none;
  position: relative;
  z-index: 1;
}

.logo-text {
  margin-left: 5px;
}

.logo-title {
  color: #000000;
  font-size: 1.2rem;
}

.logo-subtitle {
  color: var(--accent-green);
  font-size: 1rem;
}

/* HERO */
.hero {
  background-color: var(--primary-blue);
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
  color: var(--white);
  padding: 150px 0 80px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  width: 400px;
  margin-bottom: 0px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 30px;
}

.hero-info-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 1fr 4fr;
  gap: 15px;
  margin-bottom: 30px;
  background-color: rgba(6, 107, 187, 0.5);
  padding: 15px;
  border-radius: 8px;
  width: 700px;
}

.hero-info-item {
  border-right: 1px solid var(--white);
  padding-right: 20px;
  padding-left: 10px;
}

.hero-info-item:last-child {
  border-right: none;
  padding-right: 0;
}

.hero-info-item p {
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-logo-img {
  width: 115%;
  max-width: 650px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 45px rgba(255, 255, 255, 0.6));
  transform: translateX(-10%);
  transform-origin: right center;
}

.hero-logo-img:hover {
  filter: drop-shadow(0 0 45px rgba(255, 255, 255, 0.6)) brightness(110%);
}

/* SECTIONS */
.section-metrics,
.section-themes,
.section-attendees {
  padding: 0 0 60px 0;
}

.section-attendees {
  padding-top: 60px;
  padding-bottom: 60px;
}

.stats-ribbon {
  background-color: #f8f9fa;
  border-bottom: 1px solid #eaeaea;
  padding: 50px 0 20px 0;
}

.stats-grid {
  background-color: #eaedf1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0px;
  text-align: center;
  border: 3px solid #c9d0d4;
  border-radius: 15px;
  padding: 20px;
  margin: 0 auto;
}

.stat-item {
  border-right: 2px solid #ddd;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: #111;
  margin-bottom: 2px;
}

.stat-item p {
  color: #111;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--card-bg-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: var(--text-gray);
}

/* Themes Grid */
.themes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.theme-card {
  background-color: var(--card-bg-light);
  color: var(--white);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.theme-icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.theme-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--white);
}

.theme-content h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 500;
}

.theme-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Attendees Grid */
.attendees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.attendee-card {
  background-color: var(--card-bg-dark);
  color: var(--text-gray);
  padding: 15px;
  border-radius: 8px;
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.attendee-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--text-gray);
  margin-top: 2px;
}

.attendee-content h4 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.attendee-content p {
  font-size: 0.95rem;
  line-height: 1.3;
}

/* SECTION 2 */
.section-2 {
  background-color: var(--dark-blue);
  padding: 60px 0;
  color: var(--white);
}

.s2-grid {
  background-color: rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 15px 0;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.s2-item {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

/* Separadores flotantes */
.s2-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.s2-item:last-child::after {
  display: none;
}

.s2-item:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.s2-tag {
  position: absolute;
  top: 12px;
  right: 15px;
  background-color: var(--accent-green);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.s2-item:first-child,
.s2-item:last-child {
  padding-left: 10px;
  padding-right: 10px;
}

#programa,
#registro {
  border-top: 5px solid var(--accent-green);
}

.s2-item h3 {
  color: var(--accent-green);
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 5px;
}

.s2-item p {
  font-size: 1.1rem;
  font-weight: 600;
}

.s2-tag {
  position: absolute;
  top: -10px;
  right: -10px;
  background-color: var(--accent-green);
  color: #fff;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 12px;
  font-weight: bold;
}

/* SECTION 3 */
.section-3 {
  padding: 60px 0;
}

.agenda-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.agenda-col {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.agenda-header {
  padding: 20px;
  color: var(--white);
  display: flex;
  align-items: center;

}

.agenda-separador {
  padding-left: 15px;
}


.agenda-header.day-1 {
  background-color: var(--primary-blue);
}

.agenda-header.day-2 {
  background-color: var(--accent-green);
}

.agenda-header h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.agenda-header h3 span {
  font-size: 2rem;
  font-weight: 800;
  opacity: 0.5;
}

.agenda-header p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.agenda-body {
  background-color: var(--card-bg-dark);
  padding: 20px;
}

.agenda-item {
  display: flex;
  gap: 15px;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.agenda-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.agenda-time {
  color: var(--accent-green);
  font-weight: 700;
  font-size: 1rem;
  width: 60px;
  flex-shrink: 0;
}

.agenda-info {
  color: var(--text-gray);
}

.agenda-info h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 5px;
}

.agenda-info p {
  font-size: 0.98rem;
}

/* Mobile Tabs Switch */
.mobile-tabs {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-btn {
  padding: 12px 20px;
  min-height: 48px;
  border: none;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  cursor: pointer;
  background-color: #eee;
  color: #555;
  transition: all 0.3s;
}

.tab-btn.active.day-1-tab {
  background-color: var(--primary-blue);
  color: var(--white);
}

.tab-btn.active.day-2-tab {
  background-color: var(--accent-green);
  color: var(--white);
}

/* Sponsors */
.sponsors-container {
  display: flex;
  gap: 40px;
  align-items: center;
}

.sponsors-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.sponsor-large {
  width: 150px;
  height: 80px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsors-right {
  flex: 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.sponsor-small {
  height: 50px;
  background-color: #f9f9f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-svg {
  width: 40px;
  height: 40px;
  fill: #ccc;
}

/* ORGANIZERS & GALLERY */
.section-organizers {
  background-color: var(--dark-blue);
  padding: 60px 20px;
  width: 100%;
  color: var(--white);
  text-align: center;
}

.organizers-text {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 50px;
  margin-bottom: 40px;
  font-weight: 300;
}

.organizers-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.organizer-logo {
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
}

.organizer-logo:hover {
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.4)) brightness(110%);
}

.logo-elevawod {
  height: 120px;
}

.logo-armada {
  height: 155px;
}

.logo-h2 {
  height: 180px;
  display: none;
}

.organizers-bottom {
  padding-top: 60px;
}

.section-gallery {
  padding-bottom: 60px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 3/2;
}

/* SECTION 4 */
.section-4 {
  background-color: var(--primary-blue);
  padding: 60px 0;
  text-align: center;
}

.section-4 h2 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-4 p {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 30px;
}

.s4-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* FOOTER */
.footer {
  background-color: var(--dark-blue);
  color: var(--text-gray);
  padding: 40px 0 20px;
  font-size: 0.9rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr 1.5fr;
  gap: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.footer-top div {
  padding: 10px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
}

.footer-power-elevawod {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 0.7rem;
  opacity: 0.5;
}

.footer-power-a2lt {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 0.7rem;
  opacity: 0.5;
}

.footer-power-elevawod a,
.footer-power-a2lt a {
  text-decoration: none;
  color: inherit;
}

/* SPONSORSHIPS */
.section-sponsorship {
  background-color: var(--dark-blue);
  padding: 60px 0;
  color: var(--white);
}

.sponsorship-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 40px;
}

.sponsorship-card {
  background-color: var(--card-bg-light);
  border-radius: 8px;
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
}

.sponsorship-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-transform: uppercase;
  text-align: center;
}

.sponsorship-card .spots {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.sponsorship-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sponsorship-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
  line-height: 1.3;
}

.text-shine-platinum {
  color: #E5E4E2;
  background: linear-gradient(120deg, #9BA4B5 25%, #FFFFFF 50%, #9BA4B5 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

.text-shine-gold {
  color: #D4AF37;
  background: linear-gradient(120deg, #D4AF37 25%, #FFF29E 50%, #D4AF37 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

.text-shine-silver {
  color: #C0C0C0;
  background: linear-gradient(120deg, #7A7A7A 25%, #E8E8E8 50%, #7A7A7A 75%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 3s linear infinite;
}

.text-standard {
  color: #D1E8FA;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

/* Responsive */
@media (max-width: 992px) {

  .topbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .topbar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    right: 20px;
    width: calc(100% - 40px);
    max-width: 300px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-left: 0;

    /* Estado inicial (oculto) */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px) scale(0.95);
    transform-origin: top right;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .logo-img {
    height: 50px;
    width: auto;
  }

  .logo-title {
    font-size: 0.95rem;
  }

  .logo-subtitle {
    font-size: 0.95rem;
  }

  .btn-navbar {
    font-size: 0.85rem;
    padding: 5px 10px;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    width: 100%;
  }

  .hero-info-grid {
    padding-left: 0;
    grid-template-columns: repeat(2, auto);
    width: 100%;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 290px;
    transform: translateX(0);
    margin: 30px auto 0;
  }

  .hero-info-item {
    border-right: none;
    border-left: 1px solid var(--text-gray);
  }

  .hero-actions {
    justify-content: center;
  }

  .s2-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px 0;
    background-color: transparent;
    border: none;
    backdrop-filter: none;
  }

  .s2-item {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    padding: 25px 15px;
  }

  .s2-item::after {
    display: none;
  }

  .s2-tag {
    top: 8px;
    right: 8px;
  }

  .themes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .attendees-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sponsorship-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsors-container {
    flex-direction: column;
  }

  .sponsors-right {
    grid-template-columns: repeat(3, 1fr);
  }

  .organizers-logos {
    gap: 30px;
  }

  .logo-elevawod {
    height: 80px;
  }

  .logo-armada {
    height: 105px;
  }

  .logo-h2 {
    height: 110px;
    display: none;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .stats-grid,
  .s2-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-item p {
    font-size: 1.05rem;
  }

  .s2-item {
    padding: 20px 10px;
  }

  .s2-item h3 {
    font-size: 1.8rem;
  }

  .s2-item p {
    font-size: 0.9rem;
    line-height: 1.2;
  }

  .s2-item:last-child {
    border-bottom: none;
  }

  .attendees-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .sponsorship-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mobile-tabs {
    display: flex;
  }

  .agenda-container {
    grid-template-columns: 1fr;
  }

  .agenda-col {
    display: none;
    animation: slideIn 0.3s forwards;
  }

  .agenda-col.active {
    display: block;
  }

  .s4-actions {
    flex-direction: column;
    align-items: center;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-power {
    position: static;
    display: block;
    margin-top: 10px;
  }


}

@keyframes slideIn {
  from {
    transform: translateX(20px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {

  .section-2 .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sponsorship-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stats-grid,
  .s2-grid,
  .sponsorship-grid {
    grid-template-columns: 1fr;
  }

  .s2-grid,
  .sponsorship-card {
    width: 70%;
  }

  .s2-grid h3 {
    font-size: 3rem;
  }

  .s2-grid p {
    font-size: 1rem;
  }
}