/* ====================================
   1. RESET Y VARIABLES BASE
   ==================================== */
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #0E4F30;
    --light-green: #90EE90;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--light-green), var(--primary-green));
}

/* ====================================
   2. ESTILOS BASE
   ==================================== */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #FCFDF9;
    line-height: 1.6;
    color: #2D5C45;
    overflow-x: hidden;
    width: 100%;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.page-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* ====================================
   3. NAVEGACIÓN
   ==================================== */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(14, 79, 48, 0.08);
    padding: 0.5rem 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(14, 79, 48, 0.08);
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

nav:hover {
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    position: relative;
    padding: 0 1rem;
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-container img {
    height: 48px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-container img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-right: 2rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-links a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary-green);
    background: rgba(14, 79, 48, 0.05);
}

.nav-links a:hover::after {
    width: 80%;
}

/* ====================================
   4. MENÚ DE NAVEGACIÓN
   ==================================== */
   .nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Estilos de botones principales */
.btn, .user-points-btn {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    border: 2px solid var(--primary-green);
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(14, 79, 48, 0.15);
}

.btn:hover, .user-points-btn:hover {
    background: #0a3922;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(14, 79, 48, 0.2);
    border-color: #0a3922;
}

/* Menú hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
    margin-left: auto;
}

.hamburger span {
    width: 2rem;
    height: 0.25rem;
    background: var(--primary-green);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Dropdown de usuario */
.user-profile-wrapper {
    position: relative;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(14, 79, 48, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(14, 79, 48, 0.15);
    width: 250px;
    padding: 1rem;
    z-index: 200;
    display: none;
    transform-origin: top right;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0;
    transform: scale(0.95);
}

.user-dropdown.show {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.user-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(14, 79, 48, 0.1);
    padding-bottom: 1rem;
}

.user-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(14, 79, 48, 0.2);
}

.user-details .full-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.user-details .biocoins {
    font-size: 0.9rem;
    color: #2D5C45;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logout-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: #2D5C45;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.logout-option:hover {
    background: rgba(14, 79, 48, 0.05);
    color: var(--primary-green);
}

/* ====================================
   5. HERO SECTION
   ==================================== */
   .hero {
    position: relative;
    padding-top: 90px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: visible;
    background: linear-gradient(135deg, #98E790 0%, #0D452C 100%);
    background-size: 300% 300%;
    animation: gradientShift 20s ease infinite;
    min-height: 600px;
    display: flex;
    align-items: flex-start;
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
    border-bottom: 6px solid rgba(152, 231, 144, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(150px);
    pointer-events: none;
}

.hero::before {
    top: -200px;
    left: -200px;
    background: rgba(152, 231, 144, 0.6);
}

.hero::after {
    bottom: -200px;
    right: -200px;
    background: rgba(13, 69, 44, 0.6);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Container */
.container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
    padding: 0 60px;
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding-bottom: 100px;
    transition: padding-bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.static-content {
    position: sticky;
    top: 90px;
    z-index: 2;
    background: transparent;
    padding-bottom: 2.5rem;
    padding-top: 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1.2px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(13, 69, 44, 0.15);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
    letter-spacing: -1.5px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(13, 69, 44, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Cards Grid */
.cards-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.button-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 200px;
    transition: margin-bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button-wrapper:not(:hover) {
    margin-bottom: 0;
    transition: margin-bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ====================================
   6. BOTONES Y CONTENIDO EXPANDIBLE
   ==================================== */
/* Button Styles */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.9231rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  gap: 0.75rem;
}

.button-outline {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  background: transparent;
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.button-solid {
  background: #FFFFFF;
  color: #0D452C;
  border: none;
  box-shadow: 0 4px 15px rgba(13, 69, 44, 0.2);
}

.button-solid:hover {
  background: rgba(255, 255, 255, 0.9);
}

.arrow-icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s ease;
}

.button:hover .arrow-icon {
  transform: translateX(8px);
}

/* Expandable Content */
.expandable-content {
  background: rgba(255, 255, 255, 0.98);
  border-radius: 0.75rem;
  margin-top: 0.75rem;
  position: absolute;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(13, 69, 44, 0.15);
  padding: 1.25rem;
  pointer-events: none;
}

.button:hover + .expandable-content,
.expandable-content:hover {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.button-wrapper:hover ~ .hero,
.button-wrapper:hover ~ .hero-content {
  padding-bottom: 200px;
}

/* Card Content Styles */
.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0D452C;
  margin-bottom: 0.75rem;
  transform: translateY(0);
}

.card-text {
  font-size: 0.9rem;
  color: #2D5C45;
  margin: 0;
  line-height: 1.5;
  transform: translateY(0);
}

/* ====================================
   7. SECCIÓN NUEVA ERA
   ==================================== */
   .nueva-era {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fefa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Elementos decorativos */
.nueva-era::before {
    content: "";
    position: absolute;
    top: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 20s infinite ease-in-out;
}

.nueva-era::after {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 79, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatBubble 25s infinite ease-in-out reverse;
}

@keyframes floatBubble {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-30px, 30px) rotate(5deg); }
}

/* Título de la sección */
.nueva-era-title {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    padding: 0 2rem;
}

.nueva-era-title::before {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(45deg, rgba(144, 238, 144, 0.2), rgba(14, 79, 48, 0.1));
    border-radius: 50%;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(25px);
    z-index: 0;
}

.nueva-era-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0E4F30 0%, #2D8259 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.nueva-era-title p {
    color: #555;
    font-size: 1.4rem;
    line-height: 1.8;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Grid y estructura principal */
.nueva-era-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(14, 79, 48, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin-bottom: 1rem;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.1), rgba(14, 79, 48, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(14, 79, 48, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

/* Iconos y contenido */
.icon-container {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
    position: relative;
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #90EE90 0%, #0E4F30 100%);
    border-radius: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.8rem;
    box-shadow: 0 8px 20px rgba(14, 79, 48, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* ====================================
   8. ICONOS Y EFECTOS NUEVA ERA
   ==================================== */
/* Estilos específicos para Font Awesome 5 */
.icon-circle svg.svg-inline--fa,
.icon-circle .svg-inline--fa {
    width: 2.2rem !important;
    height: 2.2rem !important;
    font-size: 2.2rem !important;
    color: #ffffff;
}

.icon-circle .fa-mobile-alt,
.icon-circle .fa-book-open {
    width: 3rem !important;
    height: 3rem !important;
    font-size: 3rem !important;
}

.icon-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    top: -50%;
    left: -50%;
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.feature-card:hover .icon-circle::after {
    top: 100%;
    left: 100%;
}

.icon-container strong {
    color: #0E4F30;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.feature-content {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-left: 5.5rem;
    position: relative;
}

/* Ilustración */
.nueva-era-illustration {
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.nueva-era-illustration img {
    width: 100%;
    border-radius: 2rem;
    box-shadow: 0 25px 50px rgba(14, 79, 48, 0.15);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nueva-era-illustration::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 25px;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.4), rgba(14, 79, 48, 0.2));
    border-radius: 2rem;
    z-index: -1;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nueva-era-illustration:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.nueva-era-illustration:hover img {
    transform: translate(-15px, -15px);
    box-shadow: 0 35px 60px rgba(14, 79, 48, 0.2);
}

.nueva-era-illustration:hover::before {
    transform: translate(15px, 15px);
}

/* ====================================
   9. SECCIÓN ECOSISTEMA
   ==================================== */
.ecosystem {
    padding: 4rem 2rem;
    background: linear-gradient(
        135deg,
        #f8fefa 0%,
        var(--white) 60%,
        #f0f9f0 100%
    );
    position: relative;
    overflow: hidden;
}

.ecosystem::before,
.ecosystem::after {
    content: '';
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morphing 15s ease-in-out infinite;
}

.ecosystem::before {
    top: -15%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(
        135deg,
        rgba(144, 238, 144, 0.15),
        rgba(14, 79, 48, 0.1)
    );
    animation-delay: -7s;
}

.ecosystem::after {
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: linear-gradient(
        -45deg,
        rgba(14, 79, 48, 0.08),
        rgba(144, 238, 144, 0.12)
    );
    animation-delay: -3.5s;
}

@keyframes morphing {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

/* ====================================
   10. CONTENIDO ECOSISTEMA
   ==================================== */
/* Contenido Principal */
.ecosystem-content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto 2rem;
  text-align: center;
  z-index: 1;
}

.ecosystem-content span {
  font-size: 1.1rem;
  color: var(--primary-green);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.ecosystem-content span::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary-green), transparent);
}

.ecosystem-content h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
  font-weight: 800;
}

.ecosystem-content .highlight {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0.5rem 0 2rem;
  background: linear-gradient(to right, var(--primary-green), #2D8259);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.95;
}

.ecosystem-content p {
  color: #2c3e50;
  font-size: 1.4rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
}

/* Display Orbital */
.orbital-display {
  position: relative;
  width: 500px;
  height: 500px;
  margin: 2rem auto 2.5rem;
}

.rotating-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 2px dashed rgba(14, 79, 48, 0.2);
  border-radius: 50%;
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.content-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, var(--white), #f8fefa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
      0 10px 30px rgba(14, 79, 48, 0.1),
      0 0 0 2px rgba(14, 79, 48, 0.05);
  z-index: 2;
}

.content-wrapper {
  text-align: center;
  padding: 2rem;
  max-width: 220px;
  height: auto;
}

.content-wrapper .icon-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.content-wrapper .icon-container i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-green), #2D8259);
  border-radius: 50%;
  color: var(--white);
}

/* ====================================
   11. ICONOS ORBITALES Y TECNOLOGÍA
   ==================================== */
/* Botones orbitales */
.orbital-icon {
  position: absolute;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  background: var(--white);
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
      0 4px 15px rgba(14, 79, 48, 0.15),
      0 0 0 2px rgba(14, 79, 48, 0.05);
  transition: background 0.3s ease, color 0.3s ease;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* Posicionamiento de iconos orbitales */
.orbital-icon.top {
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.orbital-icon.right {
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

.orbital-icon.bottom {
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}

.orbital-icon.left {
  left: 20px;
  top: 50%;
  transform: translate(0, -50%);
}

.orbital-icon.active {
  background: var(--primary-green);
  color: var(--white);
}

.orbital-icon i svg {
  width: 1.5em !important;
  height: 1.5em !important;
}

/* Contenido de tecnología */
.technology-content {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
  padding-top: 2rem;
}

.technology-content h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.technology-content h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--light-green), var(--primary-green));
  border-radius: 2px;
}

.technology-content .subtitle {
  font-size: 1.4rem;
  color: #2c3e50;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.8;
  font-weight: 300;
}

/* Grid de tecnología */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 400px));
  gap: 2rem;
  max-width: 840px;
  margin: 0 auto;
  padding: 1rem;
  position: relative;
  z-index: 1;
  justify-content: center;
}

/* Estilos de enlaces de tarjetas */
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
}

.card-link:hover {
  transform: translateY(-8px);
}

.card-link:focus {
  outline: none;
}

.card-link:focus .card {
  box-shadow: 
      0 15px 35px rgba(14, 79, 48, 0.15),
      0 0 0 3px var(--primary-green);
}

/* ====================================
   12. TARJETAS DE TECNOLOGÍA
   ==================================== */
/* Estructura de la tarjeta */
.card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 
      0 15px 35px rgba(14, 79, 48, 0.1),
      0 0 0 1px rgba(14, 79, 48, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 79, 48, 0.08);
  height: 500px;
  cursor: pointer;
}

/* Sección del encabezado */
.card-header {
  padding: 1.5rem 1.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  min-height: 120px; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Icono de la tarjeta */
.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #0E4F30, #2D8259);
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
      0 12px 24px rgba(14, 79, 48, 0.2),
      0 4px 8px rgba(14, 79, 48, 0.1),
      inset 0 2px 4px rgba(255, 255, 255, 0.2);
}

.card-header h3 {
  color: #0E4F30;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0;
  line-height: 1.3;
  flex-grow: 1;
}

/* Contenedor de imagen */
.card-image {
  height: 280px;
  padding: 1rem;
  margin: 0.25rem 1.25rem;
  background: linear-gradient(135deg, rgba(14, 79, 48, 0.05), rgba(144, 238, 144, 0.05));
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(14, 79, 48, 0.15);
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Efectos hover */
.card:hover {
  box-shadow: 
      0 25px 50px rgba(14, 79, 48, 0.15),
      0 0 0 2px rgba(14, 79, 48, 0.1);
  border-color: rgba(14, 79, 48, 0.15);
}

.card:hover .card-image img {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(14, 79, 48, 0.2);
}

.card:hover .card-icon {
  transform: translateY(-5px) scale(1.05);
  background: linear-gradient(135deg, #2D8259, #0E4F30);
  box-shadow: 
      0 15px 30px rgba(14, 79, 48, 0.25),
      0 6px 10px rgba(14, 79, 48, 0.15),
      inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* Descripción de la tarjeta */
.card-description {
  height: 100px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.98));
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-description p {
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 auto;
  max-width: 90%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* ====================================
   13. SECCIÓN IMPACTO
   ==================================== */
   .impact {
    background: linear-gradient(125deg, #1a694a 0%, #0E4F30 50%, #166b42 100%);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: auto;
    font-family: inherit;
}

/* Efectos de fondo */
.impact::before,
.impact::after {
    content: '';
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    pointer-events: none;
}

.impact::before {
    top: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(144, 238, 144, 0.15), rgba(255, 255, 255, 0.05));
    animation: morphing 15s infinite;
    opacity: 0.6;
}

.impact::after {
    bottom: -15%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(-45deg, rgba(255, 255, 255, 0.1), rgba(144, 238, 144, 0.1));
    animation: morphing 20s infinite reverse;
    opacity: 0.4;
}

/* Título y texto */
.impact h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
    background: linear-gradient(to right, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.impact h2 .highlight {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #90EE90 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 0.5rem;
    position: relative;
    opacity: 0.95;
}

.impact h2 .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #90EE90, transparent);
    border-radius: 2px;
}

.impact p {
    margin-bottom: 3rem;
    font-size: 1.4rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Grid de estadísticas */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ====================================
   14. TARJETAS DE IMPACTO
   ==================================== */
   .impact-card {
    background: linear-gradient(165deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );
    padding: 2rem;
    border-radius: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 24px -1px rgba(0, 0, 0, 0.2),
        inset 0 0 24px rgba(144, 238, 144, 0.05);
}

/* Efectos de la tarjeta */
.impact-card::before {
    content: '';
    position: absolute;
    inset: 1px;
    background: linear-gradient(165deg, 
        rgba(144, 238, 144, 0.05) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.impact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(144, 238, 144, 0.08),
        transparent 70%
    );
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

/* Efectos hover */
.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 8px 32px -1px rgba(0, 0, 0, 0.3),
        inset 0 0 32px rgba(144, 238, 144, 0.08);
    border-color: rgba(144, 238, 144, 0.2);
}

.impact-card:hover::before,
.impact-card:hover::after {
    opacity: 1;
}

/* Contenido de la tarjeta */
.impact-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, 
        rgb(144, 238, 144) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.impact-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, 
        rgba(144, 238, 144, 0.5),
        transparent
    );
    border-radius: 1px;
}

.impact-card h4 {
    margin-bottom: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.impact-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-weight: 300;
}

/* Animación de conteo */
@keyframes countUp {
    from { 
        opacity: 0; 
        transform: translateY(20px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

.impact-card h3 {
    animation: countUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ====================================
   15. SECCIÓN TRAYECTORIA
   ==================================== */
   .trayectoria {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 0;
    background: linear-gradient(135deg, #f8fefa 0%, #ffffff 100%);
    font-family: inherit;
}

.trayectoria::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(144, 238, 144, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: -5s;
}

/* Contenedor principal */
.trayectoria-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Encabezado */
.trayectoria-header {
    text-align: center;
    position: relative;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    isolation: isolate;
}

.trayectoria-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(14, 79, 48, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 3s ease-in-out infinite;
}

.trayectoria-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #0E4F30 0%, #2D8259 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    transform: translateZ(0);
}

.trayectoria-header h2::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #90EE90, #0E4F30);
    border-radius: 2px;
}

.trayectoria-header p {
    color: #2c3e50;
    font-size: 1.4rem;
    max-width: 700px;
    line-height: 1.8;
    position: relative;
    margin-top: 1.5rem;
    padding: 0 1rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

/* Slider Container */
.slider-container {
    position: relative;
    height: 560px;
    margin: 0 auto;
    perspective: 1500px;
}

/* Wrapper de Tarjetas */
.cards-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

/* ====================================
   16. TARJETAS DE LOGROS
   ==================================== */
   .achievement-card {
    position: absolute;
    width: 460px;
    height: 520px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
    box-shadow:
        0 10px 30px rgba(14, 79, 48, 0.1),
        0 1px 3px rgba(14, 79, 48, 0.05),
        0 0 0 1px rgba(14, 79, 48, 0.05);
}

/* Estados de las tarjetas */
.achievement-card.prev {
    transform: translate3d(-60%, 0, -100px) rotateY(10deg);
    opacity: 0.7;
    z-index: 1;
}

.achievement-card.active {
    transform: translate3d(0, 0, 0) rotateY(0);
    opacity: 1;
    z-index: 2;
}

.achievement-card.next {
    transform: translate3d(60%, 0, -100px) rotateY(-10deg);
    opacity: 0.7;
    z-index: 1;
}

.achievement-card.hidden {
    opacity: 0;
    transform: translateX(100%) scale(0.8);
    pointer-events: none;
    visibility: hidden;
}

/* Imagen de la tarjeta */
.achievement-image {
    width: 100%;
    height: 240px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 100px 1px;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.05);
}

.achievement-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 60%,
        rgba(0, 0, 0, 0.2) 100%
    );
}

/* Contenido de la tarjeta */
.achievement-content {
    padding: 1.75rem;
    position: relative;
}

/* Año */
.achievement-year {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.2rem;
    background: rgba(14, 79, 48, 0.1);
    color: #0E4F30;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.achievement-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

/* Título del logro */
.achievement-title {
    font-size: 1.5rem;
    color: #0E4F30;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
}

.achievement-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #0E4F30;
    border-radius: 2px;
}

/* ====================================
   17. UBICACIÓN Y BANDERAS
   ==================================== */
/* Ubicación */
.achievement-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #2c3e50;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  background: rgba(14, 79, 48, 0.05);
  border-radius: 6px;
  width: fit-content;
}

.achievement-location i {
  color: #0E4F30;
}

/* Descripción */
.achievement-description {
  color: #2c3e50;
  font-size: 1rem;
  line-height: 1.6;
  padding: 0.75rem 0;
  position: relative;
}

/* Banderas */
.top-flags {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  max-width: 180px;
  justify-content: flex-end;
  z-index: 10;
  align-items: center;
}

.flag-wrapper {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.flag-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

/* Botones de navegación */
.nav-buttons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
  margin-left: -400px;
}

.nav-button {
  width: 55px;
  height: 55px;
  border: none;
  background: linear-gradient(135deg, #0E4F30 0%, #2D8259 100%);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(14, 79, 48, 0.25);
  overflow: hidden;
}

.nav-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 79, 48, 0.35);
}

.nav-button:hover::after {
  opacity: 1;
}

.nav-button:active {
  transform: scale(0.95);
  box-shadow: 0 2px 8px rgba(14, 79, 48, 0.2);
}

.nav-button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Animación de brillo */
@keyframes shimmer {
  100% {
      transform: translateX(100%);
  }
}

@keyframes pulseGlow {
  0%, 100% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.5;
  }
  50% {
      transform: translate(-50%, -50%) scale(1.2);
      opacity: 0.8;
  }
}

/* ====================================
   18. TRAYECTORIA CTA
   ==================================== */
   .trayectoria-cta {
    position: relative;
    margin: 0;
    padding: 8rem 2rem;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
    transform: translateZ(0);
    background: transparent;
  }

/* Capas de fondo */
.trayectoria-cta-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.trayectoria-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.85);
}

.trayectoria-cta:hover .trayectoria-cta-bg img {
  /* Efecto hover unificado: escalado y ligero translate */
  transform: scale(1.15) translateY(-2%);
}

.trayectoria-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        180deg,
        #f8fefa 0%,
        rgba(248, 254, 250, 0.98) 5%,
        rgba(248, 254, 250, 0.95) 10%,
        rgba(248, 254, 250, 0.8) 15%,
        rgba(248, 254, 250, 0.6) 20%,
        rgba(248, 254, 250, 0.2) 30%,
        transparent 40%,
        transparent 100%
    );
    pointer-events: none;
}

/* Contenido */
.trayectoria-cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 8px 32px rgba(14, 79, 48, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Contenedor del botón */
.button-container {
  position: relative;
  z-index: 4000;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Botón CTA */
.trayectoria-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem 3.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9f0 100%);
  color: #0E4F30;
  border: none;
  border-radius: 100px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
      0 4px 15px rgba(0, 0, 0, 0.2),
      0 0 0 2px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(14, 79, 48, 0.1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  z-index: 10;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.trayectoria-cta-button::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #90EE90 0%, #0E4F30 100%);
  border-radius: 100px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.trayectoria-cta-button::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

/* Efectos hover para desktop */
@media (hover: hover) {
  .trayectoria-cta-button:hover {
      color: white;
      transform: translateY(-2px);
      background: transparent;
      box-shadow: 
          0 6px 20px rgba(14, 79, 48, 0.25),
          0 0 0 2px rgba(255, 255, 255, 0.1);
  }

  .trayectoria-cta-button:hover::before {
      opacity: 1;
  }

  .trayectoria-cta-button:hover::after {
      transform: translateX(100%);
  }
}

.trayectoria-cta-button:hover i {
  transform: translateX(4px);
  animation: bounceArrow 1s infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(4px); }
  50% { transform: translateX(8px); }
}

/* Texto y elementos del CTA */
.trayectoria-cta-subtitle {
  display: inline-block;
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.2),
    inset 0 0 10px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.trayectoria-cta h3 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    position: relative;
}

.trayectoria-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    font-weight: 400;
}

/* =================================== */
/*              FOOTER                 */
/* =================================== */

.footer {
 background: linear-gradient(135deg, #0D452C 0%, #083D25 100%);
 color: #ffffff;
 padding: 4rem 0 2rem;
 position: relative;
 overflow: hidden;
 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.footer::before {
 content: '';
 position: absolute;
 width: 1000px;
 height: 1000px;
 border-radius: 50%;
 background: rgba(152, 231, 144, 0.05);
 top: -500px;
 right: -500px;
 z-index: 0;
}

.footer-content {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 2rem;
 position: relative;
 z-index: 2;
 text-align: center;
}

/* Sección de contacto */
.footer-contact {
 margin-bottom: 2rem;
 position: relative;
 display: flex;
 justify-content: center;
 align-items: center;
 flex-direction: column;
}

.footer-contact a {
 color: #98E790;
 text-decoration: none;
 font-size: 1rem;
 transition: all 0.3s ease;
 padding: 0.75rem 1.5rem;
 border-radius: 8px;
 display: inline-block;
 background: rgba(255, 255, 255, 0.1);
 backdrop-filter: blur(5px);
 -webkit-backdrop-filter: blur(5px);
 cursor: pointer;
 user-select: none;
 -webkit-tap-highlight-color: transparent;
}

.footer-contact a:hover {
 color: #ffffff;
 background: rgba(255, 255, 255, 0.2);
 transform: translateY(-2px);
}

.footer-contact a:active {
 transform: scale(0.98);
}

/* Tooltip para copiado */
.copy-tooltip {
 position: fixed;
 left: 50%;
 bottom: 20px;
 transform: translateX(-50%);
 background: rgba(46, 204, 113, 0.95);
 color: white;
 padding: 12px 24px;
 border-radius: 8px;
 font-size: 14px;
 opacity: 0;
 visibility: hidden;
 transition: all 0.3s ease;
 z-index: 1000;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 text-align: center;
 white-space: nowrap;
 pointer-events: none;
}

.copy-tooltip.show {
 opacity: 1;
 visibility: visible;
 transform: translateX(-50%) translateY(0);
}

/* Enlaces de navegación */
.footer-links {
 display: flex;
 justify-content: center;
 gap: 2rem;
 margin-bottom: 2rem;
}

.footer-links a {
 color: rgba(255, 255, 255, 0.8);
 text-decoration: none;
 transition: all 0.3s ease;
 font-size: 0.95rem;
 padding: 0.5rem 1rem;
 border-radius: 6px;
}

.footer-links a:hover {
 color: #98E790;
 background: rgba(255, 255, 255, 0.1);
}

/* Sección de redes sociales */
.footer-social-section {
 margin-bottom: 2rem;
 position: relative;
 z-index: 5;
}

.footer-social-text {
 color: rgba(255, 255, 255, 0.8);
 margin-bottom: 1.5rem;
 font-size: 0.95rem;
}

.footer-social {
 display: flex;
 justify-content: center;
 align-items: center;
 gap: 1.5rem;
 position: relative;
 z-index: 10;
}

.social-icon {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 color: #ffffff;
 text-decoration: none;
 transition: all 0.3s ease;
 position: relative;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 50%;
 cursor: pointer;
 -webkit-tap-highlight-color: transparent;
}

.social-icon i {
 font-size: 1.25rem;
 position: relative;
 z-index: 1;
 transition: transform 0.3s ease;
}

.social-icon:hover {
 color: #98E790;
 background: rgba(255, 255, 255, 0.2);
 transform: translateY(-2px);
}

.social-icon:active {
 transform: scale(0.95);
 background: rgba(255, 255, 255, 0.3);
}

/* Sección inferior */
.footer-bottom {
 text-align: center;
 color: rgba(255, 255, 255, 0.6);
 font-size: 0.9rem;
 padding-top: 2rem;
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 margin-top: 2rem;
}



/* ====================================
   MEDIA QUERIES UNIFICADOS
   ==================================== */
   @media (max-width: 1400px) {
    .container {
        padding: 0 40px;
    }

    .hero-content {
        max-width: 1000px;
    }

    .nueva-era-grid {
      gap: 3rem;
      padding: 0 2rem;
    }
  
    .nueva-era-title {
      padding: 0 1.5rem;
      text-align: center;
      margin: 0 auto 2.5rem;
    }
  
    .nueva-era-title h2 {
      font-size: 2.8rem;
      text-align: center;
      max-width: 800px;
      margin: 0 auto 1.5rem;
    }
  
    .nueva-era-title p {
      text-align: center;
      margin: 0 auto;
      max-width: 700px;
    }
  
    .feature-card {
      padding: 1.8rem;
    }

    /* Trayectoria */
    .achievement-card {
      width: 420px;
      min-height: 480px;
      height: auto;
    }
    .achievement-image {
      height: 220px;
    }
    .achievement-content {
      padding: 1.5rem;
    }
  
    .trayectoria-cta h3 {
      font-size: 3rem;
    }
    .trayectoria-cta p {
      font-size: 1.2rem;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2.75rem;
    }
    
    .nueva-era {
      padding: 4rem 0;
    }
  
    .nueva-era-title h2 {
      font-size: 2.2rem;
      max-width: 700px;
    }
  
    .nueva-era-title p {
      font-size: 1.3rem;
      max-width: 600px;
    }
  
    .nueva-era-grid {
      gap: 2.5rem;
    }
  
    .feature-card {
      padding: 1.5rem;
    }
  
    .icon-circle {
      width: 3.5rem;
      height: 3.5rem;
    }
  
    .icon-container strong {
      font-size: 1.2rem;
    }
  
    .feature-content {
      font-size: 1rem;
      margin-left: 5rem;
    }

    /* Ecosystem */
    .ecosystem-content h2,
    .ecosystem-content .highlight {
      font-size: 2.2rem;
    }
    
    .ecosystem-content p {
      font-size: 1.2rem;
      max-width: 600px;
    }
  
    .ecosystem {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .orbital-display {
      position: relative;
      transform: scale(1);
      margin: 0 0 0.5rem 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .technology-content h2 {
      font-size: 2.5rem;
    }
  
    .technology-content .subtitle {
      font-size: 1.2rem;
      max-width: 600px;
    }
  
    .tech-grid {
      gap: 1.5rem;
    }
  
    .card-header h3 {
      font-size: 1.2rem;
    }
  
    .card-description p {
      font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.15rem;
    }

    .nueva-era {
      padding: 3rem 0;
    }
  
    .nueva-era-title {
      margin-bottom: 2rem;
      padding: 0 2rem;
    }
  
    .nueva-era-title h2 {
      font-size: 2.2rem;
      max-width: 600px;
    }
  
    .nueva-era-title p {
      font-size: 1.2rem;
      padding: 0;
      max-width: 550px;
    }
  
    .nueva-era-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      max-width: 650px;
      margin: 0 auto;
    }
  
    .nueva-era-illustration {
      order: -1;
      transform: none;
      margin-bottom: 1rem;
      text-align: center;
    }
  
    .nueva-era-illustration img {
      max-width: 80%;
      margin: 0 auto;
      display: block;
    }
  
    .feature-card {
      max-width: 100%;
    }

    /* Ecosystem */
    .ecosystem {
      padding: 3rem 1.5rem;
    }
  
    .ecosystem-content h2 {
      font-size: 2.2rem;
    }
    
    .ecosystem-content .highlight {
      font-size: 2.2rem;
    }
    
    .ecosystem-content p {
      font-size: 1.15rem;
      padding: 0 1rem;
    }
  
    .orbital-display {
      transform: scale(0.98);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0.5rem 0;
    }
  
    .content-circle {
      width: 280px;
      height: 280px;
    }
  
    .content-wrapper {
      max-width: 200px;
    }
  
    .content-title {
      font-size: 1.1rem;
    }
  
    .content-description {
      font-size: 0.9rem;
    }
  
    .orbital-icon {
      width: 50px;
      height: 50px;
    }
  
    .technology-content {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
    }
  
    .technology-content h2 {
      font-size: 2.2rem;
    }
  
    .technology-content .subtitle {
      font-size: 1.15rem;
      padding: 0 1rem;
    }
  
    .tech-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      padding: 1rem;
    }
  
    .card {
      min-height: 360px;
    }

    /* Impact */
    .impact h2, 
    .impact h2 .highlight {
      font-size: 2.2rem;
    }
  
    .impact p {
      font-size: 1.2rem;
    }
  
    .impact-card h3 {
      font-size: 1.8rem;
    }

    /* Trayectoria */
    .trayectoria {
      padding: 3rem 0 0;
    }

    .achievement-card {
      width: 360px;
      min-height: 460px;
    }

    .achievement-image {
      height: 200px;
    }

    .achievement-card.prev {
      transform: translateX(-35%) scale(0.85);
    }

    .achievement-card.next {
      transform: translateX(35%) scale(0.85);
    }

    .nav-buttons {
      max-width: 600px;
      margin-left: -300px;
    }

    .nav-button {
      width: 50px;
      height: 50px;
      font-size: 1.1rem;
    }

    .achievement-title {
      font-size: 1.3rem;
    }

    .achievement-description {
      font-size: 0.95rem;
      line-height: 1.5;
    }
  
    .trayectoria-cta {
      padding: 5rem 1.5rem;
      margin-top: 4rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .trayectoria-cta-content {
      max-width: 700px;
      padding: 2.5rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .trayectoria-cta h3 {
      font-size: 2.8rem;
      line-height: 1.2;
    }

    .trayectoria-cta p {
      font-size: 1.15rem;
      padding: 0 1rem;
      margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigator */
    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 80px 40px;
        transition: right 0.3s ease-in-out;
        gap: 2rem;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        margin: 0;
        align-items: center;
        width: 100%;
    }

    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 1rem;
    }

    .user-profile-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hamburger.active span:first-child {
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg);
    }

    /* Hero */
    .hero {
        padding: 60px 20px 40px;
    }
    
    .static-content {
        top: 60px;
        padding-top: 3rem;
        padding-bottom: 0.8rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .button-wrapper {
        margin-bottom: 180px;
    }
     
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 2.25rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    /* Nueva Era */
    .nueva-era {
      padding: 2.5rem 0;
    }
  
    .nueva-era-title {
      padding: 0 1.5rem;
    }
  
    .nueva-era-title h2 {
      font-size: 2rem;
      max-width: 500px;
    }
  
    .nueva-era-title p {
      font-size: 1.1rem;
      max-width: 450px;
    }
  
    .nueva-era-grid {
      padding: 0 1.5rem;
    }
  
    .feature-card {
      padding: 1.25rem;
    }
  
    .icon-circle {
      width: 3.2rem;
      height: 3.2rem;
    }
  
    .icon-container strong {
      font-size: 1.1rem;
    }
  
    .feature-content {
      margin-left: 4.5rem;
      font-size: 0.95rem;
    }
  
    .nueva-era-illustration img {
      max-width: 90%;
    }

    /* Ecosystem */
    .ecosystem {
      padding: 2.5rem 1rem;
    }
  
    .ecosystem-content {
      margin-bottom: 2rem;
    }
  
    .ecosystem-content span {
      font-size: 1rem;
    }
  
    .ecosystem-content h2 {
      font-size: 2rem;
    }
    
    .ecosystem-content .highlight {
      font-size: 2rem;
    }
    
    .ecosystem-content p {
      font-size: 1.1rem;
      padding: 0 1rem;
    }
  
    .orbital-display {
      width: 450px;
      height: 450px;
      transform: scale(0.95);
      margin: 0 auto 0.5rem auto;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      left: 50%;
      transform: translateX(-50%) scale(0.95);
    }
  
    .rotating-circle {
      width: 400px;
      height: 400px;
    }
  
    .content-circle {
      width: 260px;
      height: 260px;
    }
  
    .content-wrapper {
      padding: 1rem;
      max-width: 180px;
    }
  
    .content-wrapper .icon-container {
      font-size: 2rem;
      margin-bottom: 0.75rem;
    }
  
    .content-title {
      font-size: 1rem;
      margin-bottom: 0.35rem;
    }
  
    .content-description {
      font-size: 0.85rem;
      line-height: 1.4;
    }
  
    .orbital-icon {
      width: 45px;
      height: 45px;
      font-size: 1.2rem;
    }
  
    .technology-content {
      margin-top: 1.5rem;
    }
  
    .technology-content h2 {
      font-size: 2rem;
    }
    
    .technology-content .subtitle {
      font-size: 1.1rem;
      padding: 0 1rem;
    }
  
    .tech-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
      margin: 0 auto;
      gap: 1.5rem;
    }
  
    .card {
      min-height: 340px;
    }
  
    .card-header {
      padding: 1.25rem 1.25rem 0.75rem;
    }
  
    .card-icon {
      width: 3.5rem;
      height: 3.5rem;
    }
  
    .card-header h3 {
      font-size: 1.1rem;
    }
  
    .card-description {
      padding: 1rem 1.25rem;
    }
  
    .card-description p {
      font-size: 0.9rem;
    }

    /* Impact */
    .impact-stats {
      grid-template-columns: 1fr;
      max-width: 400px;
    }
  
    .impact h2,
    .impact h2 .highlight {
      font-size: 2rem;
    }
  
    .impact p {
      font-size: 1.1rem;
    }
  
    .impact-card {
      padding: 1.75rem;
    }
  
    .impact-card h3 {
      font-size: 1.5rem;
    }
  
    .impact {
      padding: 3rem 0 0;
    }

    /* Trayectoria */
    .trayectoria-header {
      margin-bottom: -2rem;
      margin-top: -2rem;
    }

    .trayectoria-header h2 {
      font-size: 2rem;
    }

    .achievement-card {
      width: 300px;
      min-height: 440px;
    }

    .achievement-image {
      height: 180px;
    }

    .achievement-card.prev,
    .achievement-card.next {
      opacity: 0;
      transform: translateX(0) scale(0.85);
      pointer-events: none;
    }

    .slider-container {
      margin-bottom: 70px;
    }

    .nav-buttons {
      position: absolute;
      top: auto;
      bottom: -60px;
      left: 50%;
      transform: translateX(-50%);
      max-width: 140px;
      margin-left: 0;
      padding: 0;
    }

    .nav-button {
      width: 45px;
      height: 45px;
      font-size: 1rem;
      background: rgba(14, 79, 48, 0.9);
      backdrop-filter: blur(4px);
    }

    .achievement-content {
      padding: 1.25rem;
    }

    .achievement-title {
      font-size: 1.2rem;
    }

    .achievement-description {
      font-size: 0.9rem;
      line-height: 1.4;
    }

    .achievement-location {
      font-size: 0.85rem;
    }

    .achievement-year {
      font-size: 0.85rem;
      padding: 0.4rem 1rem;
    }

    .trayectoria-cta {
      padding: 4rem 1.5rem;
      margin-top: 3rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .trayectoria-cta-content {
      max-width: 600px;
      padding: 2rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .trayectoria-cta h3 {
      font-size: 2.2rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .trayectoria-cta p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
    }

    .trayectoria-cta-subtitle {
      font-size: 1rem;
      margin-bottom: 1.25rem;
    }

    /* Footer */
    .footer {
      padding: 3rem 0 1.5rem;
    }

    .footer-content {
      padding: 0 1.5rem;
    }

    .footer-links {
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-links a {
      display: block;
      padding: 0.75rem 1rem;
      background: rgba(255, 255, 255, 0.1);
      margin: 0 1rem;
    }

    .social-icon {
      width: 48px;
      height: 48px;
    }

    .social-icon i {
      font-size: 1.3rem;
    }

    .footer-social {
      padding: 10px 0;
      gap: 1.25rem;
    }

    .footer-social-text {
      padding: 0 1.5rem;
      margin-bottom: 1rem;
    }

    .copy-tooltip {
      width: auto;
      max-width: 90%;
      white-space: normal;
      padding: 10px 20px;
      bottom: 30px;
    }
}

@media (max-width: 640px) {
    .hero {
        min-height: auto;
        padding: 50px 15px 30px;
    }

    .static-content {
        top: 50px;
        padding-top: 3.1rem;
        padding-bottom: 0rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        padding: 0 15px;
    }

    .expandable-content {
        padding: 0;
    }

    .button:hover + .expandable-content,
    .expandable-content:hover {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .nueva-era {
      padding: 2rem 0;
    }
  
    .nueva-era-title {
      margin-bottom: 1.5rem;
      padding: 0 1rem;
    }
  
    .nueva-era-title h2 {
      font-size: 1.8rem;
      max-width: 400px;
    }
  
    .nueva-era-title p {
      font-size: 1rem;
      max-width: 350px;
      padding: 0;
    }
  
    .nueva-era-grid {
      padding: 0 1rem;
      gap: 1.5rem;
    }
  
    .feature-card {
      padding: 1rem;
    }
  
    .icon-circle {
      width: 3rem;
      height: 3rem;
    }
  
    .icon-container {
      margin-bottom: 0.8rem;
    }
  
    .icon-container strong {
      font-size: 1rem;
    }
  
    .feature-content {
      margin-left: 4rem;
      font-size: 0.9rem;
      line-height: 1.5;
    }
  
    .nueva-era-illustration img {
      max-width: 100%;
    }

    /* Footer */
    .footer {
      padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
      padding: 0 1rem;
    }

    .footer-contact a {
      display: block;
      margin: 0 auto;
      width: auto;
      max-width: 280px;
    }

    .footer-social {
      gap: 1rem;
    }

    .social-icon {
      width: 46px;
      height: 46px;
    }

    .social-icon i {
      font-size: 1.2rem;
    }

    .footer-bottom {
      padding-top: 1.5rem;
      margin-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }

    .button {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .button-wrapper {
        margin-bottom: 160px;
    }

    /* Ecosystem */
    .ecosystem {
      padding: 2rem 1rem;
    }
  
    .ecosystem-content span {
      font-size: 0.9rem;
    }
  
    .ecosystem-content h2 {
      font-size: 1.8rem;
    }
    
    .ecosystem-content .highlight {
      font-size: 1.8rem;
    }
    
    .ecosystem-content p {
      font-size: 1rem;
    }
  
    .orbital-display {
      width: 400px;
      height: 400px;
      margin: 0 auto 0.5rem auto;
      transform: translateX(-50%) scale(0.9);
      position: relative;
      left: 50%;
    }
  
    .rotating-circle {
      width: 350px;
      height: 350px;
    }
  
    .content-circle {
      width: 240px;
      height: 240px;
    }
  
    .content-wrapper {
      padding: 0.75rem;
      max-width: 160px;
    }
  
    .content-wrapper .icon-container {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
    }
  
    .content-title {
      font-size: 0.95rem;
    }
  
    .content-description {
      font-size: 0.8rem;
      line-height: 1.3;
    }
  
    .orbital-icon {
      width: 40px;
      height: 40px;
      font-size: 1.1rem;
    }
  
    /* Ajustar la posición de los íconos orbitales */
    .orbital-icon.top { top: 10px; }
    .orbital-icon.right { right: 10px; }
    .orbital-icon.bottom { bottom: 10px; }
    .orbital-icon.left { left: 10px; }

    .technology-content h2 {
      font-size: 1.8rem;
    }
    
    .technology-content .subtitle {
      font-size: 1rem;
    }
  
    .tech-grid {
      gap: 1.25rem;
    }
  
    .card {
      min-height: 320px;
    }
  
    .card-header {
      padding: 1rem 1rem 0.5rem;
    }
  
    .card-icon {
      width: 3rem;
      height: 3rem;
    }
  
    .card-header h3 {
      font-size: 1rem;
    }
  
    .card-description {
      padding: 0.75rem 1rem;
    }
  
    .card-description p {
      font-size: 0.85rem;
    }

    /* Impact */
    .impact {
      padding: 2.5rem 0 2rem;
    }
  
    .impact h2,
    .impact h2 .highlight {
      font-size: 1.8rem;
    }
  
    .impact p {
      font-size: 1rem;
      padding: 0 1rem;
    }
  
    .impact-card {
      padding: 1.5rem;
    }
  
    .impact-card h3 {
      font-size: 1.5rem;
    }

    /* Trayectoria */
    .trayectoria {
      padding: 2rem 0 0;
    }

    .trayectoria-header h2 {
      font-size: 1.8rem;
    }

    .trayectoria-header p {
      font-size: 1rem;
      padding: 0 1rem;
    }

    .achievement-card {
      width: 280px;
      min-height: 420px;
    }

    .achievement-image {
      height: 160px;
    }

    .nav-buttons {
      bottom: -50px;
      max-width: 120px;
    }

    .nav-button {
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
    }

    .top-flags {
      padding: 0.15rem;
      gap: 0.15rem;
      max-width: 160px;
    }

    .flag-wrapper {
      width: 1.4em;
      height: 1em;
    }

    .trayectoria-cta {
      padding: 3rem 1rem;
      min-height: 100vh;
    }

    .trayectoria-cta-content {
      padding: 1.5rem;
      gap: 0.8rem;
    }

    .trayectoria-cta h3 {
      font-size: 1.8rem;
      margin-bottom: 0.8rem;
    }

    .trayectoria-cta p {
      font-size: 1rem;
      line-height: 1.5;
      margin-bottom: 1.5rem;
    }

    .trayectoria-cta-subtitle {
      font-size: 0.9rem;
      letter-spacing: 2px;
      padding: 0.4rem 1.2rem;
    }
}

@media (max-width: 380px) {
    .nueva-era-title h2 {
      font-size: 1.6rem;
      max-width: 300px;
    }
  
    .nueva-era-title p {
      max-width: 280px;
    }
  
    .icon-circle {
      width: 2.8rem;
      height: 2.8rem;
    }
  
    .icon-container strong {
      font-size: 0.95rem;
    }
  
    .feature-content {
      margin-left: 3.8rem;
      font-size: 0.85rem;
    }
}

@media (max-width: 360px) {
    .orbital-display {
      width: 360px;
      height: 360px;
      margin: 0 auto 0.25rem auto;
      transform: translateX(-50%) scale(0.85);
      position: relative;
      left: 50%;
    }
  
    .rotating-circle {
      width: 320px;
      height: 320px;
    }
  
    .content-circle {
      width: 220px;
      height: 220px;
    }
  
    .content-wrapper {
      padding: 0.5rem;
      max-width: 140px;
    }
  
    .orbital-icon {
      width: 35px;
      height: 35px;
      font-size: 1rem;
    }
  
    .technology-content h2 {
      font-size: 1.6rem;
    }
  
    .technology-content .subtitle {
      font-size: 0.95rem;
    }
  
    .card {
      min-height: 300px;
    }

    /* Achievement */
    .achievement-card {
      width: 260px;
      min-height: 400px;
    }

    .achievement-image {
      height: 150px;
    }
  
    /* CTA */
    .trayectoria-cta {
      padding: 2rem 1rem;
    }

    .trayectoria-cta h3 {
      font-size: 1.6rem;
    }

    .trayectoria-cta p {
      font-size: 0.95rem;
      margin-bottom: 1.2rem;
    }
}

/* Soporte para modo oscuro */
@media (prefers-color-scheme: dark) {
    .footer {
        background: linear-gradient(135deg, #083D25 0%, #052817 100%);
    }

    .social-icon {
        background: rgba(255, 255, 255, 0.15);
    }

    .copy-tooltip {
        background: rgba(46, 204, 113, 0.98);
    }
}

/* Soporte para alto contraste */
@media (prefers-contrast: high) {
    .footer-contact a,
    .footer-links a,
    .social-icon {
        border: 1px solid #ffffff;
    }

    .copy-tooltip {
        border: 2px solid #ffffff;
    }
}

/* Soporte para reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
    .footer-contact a,
    .footer-links a,
    .social-icon,
    .copy-tooltip {
        transition: none;
    }

    .social-icon:hover,
    .social-icon:active {
        transform: none;
    }
}