/* Importación de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');

/* Variables CSS personalizadas */
:root {
  --eci-dark-primary: #121212;
  --eci-dark-secondary: #1E1E1E;
  --eci-metallic-primary: #D4D4D8;
  --eci-metallic-secondary: #71717A;
  --eci-highlight: #06B6D4;
  --eci-text-primary: #F5F5F5;
  --eci-text-secondary: #A1A1AA;
  --eci-card-bg: #18181B;
  --eci-border: #3F3F46;
  --eci-error: #EF4444;
  --eci-success: #10B981;
  
  /* Espaciado fluido */
  --eci-space-xs: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
  --eci-space-sm: clamp(0.75rem, 0.6rem + 0.75vw, 1.25rem);
  --eci-space-md: clamp(1.25rem, 1rem + 1.25vw, 2rem);
  --eci-space-lg: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --eci-space-xl: clamp(3rem, 2.5rem + 3vw, 5rem);
  
  /* Tipografía fluida */
  --eci-text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --eci-text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --eci-text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --eci-text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --eci-text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --eci-text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --eci-text-3xl: clamp(1.875rem, 1.6rem + 1.25vw, 2.25rem);
  --eci-text-4xl: clamp(2.25rem, 2rem + 1.5vw, 3rem);
  
  /* Efectos metálicos */
  --eci-metallic-gradient: linear-gradient(135deg, #3F3F46 0%, #71717A 50%, #3F3F46 100%);
  --eci-highlight-gradient: linear-gradient(135deg, #0891B2 0%, #06B6D4 50%, #0891B2 100%);
}

/* Reset y estilos básicos */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--eci-dark-primary);
  color: var(--eci-text-primary);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--eci-highlight);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

a:hover, a:focus {
  color: var(--eci-metallic-primary);
  transform: translateY(-2px);
}

/* Tipografía */
h1, h2, h3, h4, h5, h6 {
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: var(--eci-space-sm);
}

h1 {
  font-size: var(--eci-text-4xl);
}

h2 {
  font-size: var(--eci-text-3xl);
}

h3 {
  font-size: var(--eci-text-2xl);
}

h4 {
  font-size: var(--eci-text-xl);
}

h5 {
  font-size: var(--eci-text-lg);
}

h6 {
  font-size: var(--eci-text-base);
}

p {
  margin-bottom: var(--eci-space-sm);
  font-size: var(--eci-text-base);
}

/* Layout principal */
.eci-layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.eci-content {
  flex: 1;
}

/* Navbar */
.eci-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(18, 18, 18, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--eci-border);
  padding: var(--eci-space-sm) var(--eci-space-md);
}

.eci-navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
}

.eci-logo {
  height: 40px;
  width: auto;
}

.eci-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--eci-text-primary);
  font-size: var(--eci-text-xl);
  cursor: pointer;
}

.eci-nav-links {
  display: flex;
  gap: var(--eci-space-md);
  list-style: none;
}

.eci-nav-link {
  font-size: var(--eci-text-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
}

.eci-nav-link a {
  color: var(--eci-text-primary);
  padding: var(--eci-space-xs) 0;
  display: block;
}

.eci-nav-link a:hover, .eci-nav-link a:focus {
  color: var(--eci-highlight);
}

.eci-nav-link a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--eci-highlight);
  transition: width 0.3s ease;
}

.eci-nav-link a:hover:after, 
.eci-nav-link a:focus:after,
.eci-nav-link.active a:after {
  width: 100%;
}

/* Tarjetas deslizables */
.eci-cards-wrapper {
  position: relative;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding: var(--eci-space-md) 0;
}

.eci-cards-scroller {
  display: flex;
  gap: var(--eci-space-md);
  padding: 0 var(--eci-space-md);
}

.eci-card {
  min-width: min(90%, 350px);
  scroll-snap-align: start;
  background-color: var(--eci-card-bg);
  border: 1px solid var(--eci-border);
  border-radius: 12px;
  padding: var(--eci-space-md);
  transform: translateZ(0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eci-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--eci-highlight-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease-out;
}

.eci-card:hover, .eci-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.eci-card:hover::before, .eci-card:focus-within::before {
  transform: scaleX(1);
}

.eci-card-title {
  font-size: var(--eci-text-xl);
  margin-bottom: var(--eci-space-sm);
  color: var(--eci-metallic-primary);
}

.eci-card-content {
  font-size: var(--eci-text-base);
  color: var(--eci-text-secondary);
  margin-bottom: var(--eci-space-md);
}

.eci-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: var(--eci-space-sm);
}

/* Botones */
.eci-btn {
  display: inline-block;
  padding: var(--eci-space-xs) var(--eci-space-md);
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--eci-text-sm);
  position: relative;
  overflow: hidden;
  border: none;
  background-color: transparent;
}

.eci-btn-primary {
  background: var(--eci-highlight);
  color: var(--eci-dark-primary);
}

.eci-btn-primary:hover, .eci-btn-primary:focus {
  background: #0891B2;
  color: var(--eci-dark-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(6, 182, 212, 0.2);
}

.eci-btn-outline {
  background: transparent;
  border: 1px solid var(--eci-metallic-secondary);
  color: var(--eci-text-primary);
}

.eci-btn-outline:hover, .eci-btn-outline:focus {
  border-color: var(--eci-highlight);
  color: var(--eci-highlight);
  transform: translateY(-2px);
}

.eci-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.eci-btn:hover::before, .eci-btn:focus::before {
  transform: translateX(0);
}

/* Secciones */
.eci-section {
  padding: var(--eci-space-lg) var(--eci-space-md);
}

.eci-section-header {
  text-align: center;
  margin-bottom: var(--eci-space-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.eci-section-title {
  font-size: var(--eci-text-3xl);
  margin-bottom: var(--eci-space-sm);
  background: var(--eci-metallic-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.eci-section-subtitle {
  font-size: var(--eci-text-lg);
  color: var(--eci-text-secondary);
}

.eci-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 200px), 1fr));
  gap: var(--eci-space-md);
}

/* Hero section */
.eci-hero {
  position: relative;
  padding: var(--eci-space-xl) var(--eci-space-md);
  background-color: var(--eci-dark-secondary);
  overflow: hidden;
}

.eci-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.6));
  z-index: 1;
}

.eci-hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.eci-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.eci-hero-title {
  font-size: var(--eci-text-4xl);
  margin-bottom: var(--eci-space-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.eci-hero-subtitle {
  font-size: var(--eci-text-xl);
  margin-bottom: var(--eci-space-lg);
  color: var(--eci-metallic-primary);
}

/* Formularios */
.eci-form {
  max-width: 600px;
  margin: 0 auto;
  padding: var(--eci-space-md);
  background-color: var(--eci-card-bg);
  border-radius: 12px;
  border: 1px solid var(--eci-border);
}

.eci-form-group {
  margin-bottom: var(--eci-space-md);
}

.eci-form-label {
  display: block;
  margin-bottom: var(--eci-space-xs);
  font-weight: 500;
  color: var(--eci-metallic-primary);
}

.eci-form-input,
.eci-form-textarea,
.eci-form-select {
  width: 100%;
  padding: var(--eci-space-sm);
  border: 1px solid var(--eci-border);
  border-radius: 6px;
  background-color: var(--eci-dark-primary);
  color: var(--eci-text-primary);
  font-family: 'Space Grotesk', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.eci-form-input:focus,
.eci-form-textarea:focus,
.eci-form-select:focus {
  outline: none;
  border-color: var(--eci-highlight);
  box-shadow: 0 0 0 2px rgba(6, 182, 212, 0.2);
}

.eci-form-textarea {
  min-height: 120px;
  resize: vertical;
}

.eci-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--eci-space-xs);
}

.eci-checkbox-input {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--eci-border);
  border-radius: 4px;
  background-color: var(--eci-dark-primary);
  display: grid;
  place-content: center;
  margin-top: 3px;
}

.eci-checkbox-input::before {
  content: "";
  width: 12px;
  height: 12px;
  transform: scale(0);
  transition: transform 0.2s ease-in-out;
  box-shadow: inset 1em 1em var(--eci-highlight);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.eci-checkbox-input:checked::before {
  transform: scale(1);
}

.eci-checkbox-label {
  font-size: var(--eci-text-sm);
  color: var(--eci-text-secondary);
}

.eci-checkbox-label a {
  text-decoration: underline;
}

/* Footer */
.eci-footer {
  background-color: var(--eci-dark-secondary);
  padding: var(--eci-space-lg) var(--eci-space-md);
  border-top: 1px solid var(--eci-border);
}

.eci-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: var(--eci-space-lg);
}

.eci-footer-column {
  display: flex;
  flex-direction: column;
}

.eci-footer-title {
  font-size: var(--eci-text-lg);
  margin-bottom: var(--eci-space-sm);
  color: var(--eci-metallic-primary);
}

.eci-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--eci-space-xs);
}

.eci-footer-link a {
  color: var(--eci-text-secondary);
  transition: color 0.3s ease;
}

.eci-footer-link a:hover, .eci-footer-link a:focus {
  color: var(--eci-highlight);
}

.eci-footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--eci-space-xs);
}

.eci-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--eci-space-xs);
  color: var(--eci-text-secondary);
}

.eci-contact-icon {
  color: var(--eci-highlight);
  font-size: var(--eci-text-lg);
  min-width: 24px;
}

.eci-footer-bottom {
  text-align: center;
  margin-top: var(--eci-space-lg);
  padding-top: var(--eci-space-md);
  border-top: 1px solid var(--eci-border);
  color: var(--eci-text-secondary);
  font-size: var(--eci-text-xs);
}

/* Efectos metálicos y reflejos */
.eci-metallic {
  position: relative;
  overflow: hidden;
}

.eci-metallic::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 6s infinite linear;
}

@keyframes shine {
  from {
    transform: translateX(-100%) rotate(30deg);
  }
  to {
    transform: translateX(100%) rotate(30deg);
  }
}

/* Efectos de hover para tarjetas y elementos interactivos */
.eci-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eci-hover-lift:hover, .eci-hover-lift:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Efectos especiales y resaltados */
.eci-highlight-text {
  color: var(--eci-highlight);
}

.eci-metallic-text {
  background: var(--eci-metallic-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Cookie consent */
.eci-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--eci-dark-secondary);
  padding: var(--eci-space-md);
  z-index: 1000;
  border-top: 1px solid var(--eci-border);
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.eci-cookie-banner.eci-visible {
  transform: translateY(0);
}

.eci-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--eci-space-md);
}

.eci-cookie-text {
  flex: 1;
  min-width: 280px;
}

.eci-cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--eci-space-sm);
}

.eci-cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1010;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--eci-space-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.eci-cookie-modal.eci-visible {
  opacity: 1;
  visibility: visible;
}

.eci-cookie-modal-content {
  background-color: var(--eci-dark-secondary);
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--eci-space-md);
  position: relative;
}

.eci-cookie-close {
  position: absolute;
  top: var(--eci-space-sm);
  right: var(--eci-space-sm);
  background: transparent;
  border: none;
  color: var(--eci-text-primary);
  font-size: var(--eci-text-xl);
  cursor: pointer;
}

.eci-cookie-categories {
  margin: var(--eci-space-md) 0;
}

.eci-cookie-category {
  border-bottom: 1px solid var(--eci-border);
  padding-bottom: var(--eci-space-sm);
  margin-bottom: var(--eci-space-sm);
}

.eci-cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--eci-space-xs);
}

.eci-cookie-category-title {
  font-weight: 500;
  color: var(--eci-metallic-primary);
}

.eci-cookie-category-description {
  font-size: var(--eci-text-sm);
  color: var(--eci-text-secondary);
}

.eci-cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.eci-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.eci-cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--eci-border);
  transition: .4s;
  border-radius: 34px;
}

.eci-cookie-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: var(--eci-text-primary);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .eci-cookie-slider {
  background-color: var(--eci-highlight);
}

input:focus + .eci-cookie-slider {
  box-shadow: 0 0 1px var(--eci-highlight);
}

input:checked + .eci-cookie-slider:before {
  transform: translateX(26px);
}

/* Utilidades */
.eci-text-center {
  text-align: center;
}

.eci-mb-sm {
  margin-bottom: var(--eci-space-sm);
}

.eci-mb-md {
  margin-bottom: var(--eci-space-md);
}

.eci-mb-lg {
  margin-bottom: var(--eci-space-lg);
}

.eci-max-w-sm {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.eci-max-w-md {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.eci-max-w-lg {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.eci-w-full {
  width: 100%;
}

/* Media queries */
@media (max-width: 992px) {
  .eci-nav-links {
    gap: var(--eci-space-sm);
  }
  
  .eci-section {
    padding: var(--eci-space-lg) var(--eci-space-sm);
  }
}

.eci-close-menu {
  display: none;
}

@media (max-width: 768px) {
  .eci-menu-toggle {
    display: block;
  }
  
  .eci-nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--eci-dark-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 90;
  }
  
  .eci-nav-links.eci-active {
    transform: translateX(0);
  }
  
  .eci-close-menu {
    position: absolute;
    top: var(--eci-space-md);
    right: var(--eci-space-md);
    background: transparent;
    border: none;
    color: var(--eci-text-primary);
    font-size: var(--eci-text-xl);
    cursor: pointer;
  }
  
  .eci-hero-title {
    font-size: var(--eci-text-3xl);
  }
  
  .eci-hero-subtitle {
    font-size: var(--eci-text-lg);
  }
  
  .eci-section-title {
    font-size: var(--eci-text-2xl);
  }
  
  .eci-cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .eci-cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .eci-card {
    min-width: 85%;
  }
  
  .eci-btn {
    width: 100%;
  }
  
  .eci-hero {
    padding: var(--eci-space-lg) var(--eci-space-sm);
  }
  
  .eci-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* Personalización de la biblioteca intl-tel-input */
.iti {
  width: 100%;
}

.iti__flag-container {
  z-index: 10;
}

.iti__selected-flag {
  background-color: var(--eci-dark-primary) !important;
  border-radius: 6px 0 0 6px;
}

.iti__country-list {
  background-color: var(--eci-dark-secondary) !important;
  border-color: var(--eci-border) !important;
}

.iti__country {
  color: var(--eci-text-primary) !important;
}

.iti__country:hover {
  background-color: var(--eci-card-bg) !important;
}

.iti__country.iti__highlight {
  background-color: var(--eci-highlight) !important;
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eci-animate-fade {
  animation: fadeIn 0.8s ease forwards;
}

.eci-animate-stagger > * {
  opacity: 0;
  transform: translateY(20px);
}

.eci-animate-stagger > *:nth-child(1) {
  animation: fadeIn 0.5s ease forwards 0.1s;
}

.eci-animate-stagger > *:nth-child(2) {
  animation: fadeIn 0.5s ease forwards 0.2s;
}

.eci-animate-stagger > *:nth-child(3) {
  animation: fadeIn 0.5s ease forwards 0.3s;
}

.eci-animate-stagger > *:nth-child(4) {
  animation: fadeIn 0.5s ease forwards 0.4s;
}

.eci-animate-stagger > *:nth-child(5) {
  animation: fadeIn 0.5s ease forwards 0.5s;
}

.eci-animate-stagger > *:nth-child(6) {
  animation: fadeIn 0.5s ease forwards 0.6s;
}

/* Prism.js customization */
pre[class*="language-"] {
  background-color: var(--eci-dark-secondary) !important;
  border-radius: 8px;
  margin: var(--eci-space-md) 0;
}

code[class*="language-"] {
  font-family: 'Space Grotesk', monospace !important;
  font-size: var(--eci-text-sm) !important;
}

:not(pre) > code {
  background-color: var(--eci-dark-secondary);
  color: var(--eci-highlight);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-family: 'Space Grotesk', monospace;
}

/* Mapas interactivos */
.eci-map-container {
  height: 400px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--eci-border);
}

/* Tablas */
.eci-table-wrapper {
  overflow-x: auto;
  margin: var(--eci-space-md) 0;
}

.eci-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.eci-table th {
  background-color: var(--eci-dark-secondary);
  color: var(--eci-metallic-primary);
  font-weight: 500;
  padding: var(--eci-space-sm);
  border-bottom: 2px solid var(--eci-border);
}

.eci-table td {
  padding: var(--eci-space-sm);
  border-bottom: 1px solid var(--eci-border);
}

.eci-table tr:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Tooltips */
.eci-tooltip {
  position: relative;
  display: inline-block;
}

.eci-tooltip-text {
  visibility: hidden;
  width: 200px;
  background-color: var(--eci-dark-secondary);
  color: var(--eci-text-primary);
  text-align: center;
  border-radius: 6px;
  padding: var(--eci-space-sm);
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: var(--eci-text-xs);
  border: 1px solid var(--eci-border);
}

.eci-tooltip-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: var(--eci-border) transparent transparent transparent;
}

.eci-tooltip:hover .eci-tooltip-text {
  visibility: visible;
  opacity: 1;
}

/* Acordeones */
.eci-accordion {
  border: 1px solid var(--eci-border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: var(--eci-space-md);
}

.eci-accordion-header {
  background-color: var(--eci-dark-secondary);
  padding: var(--eci-space-sm) var(--eci-space-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.eci-accordion-header:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.eci-accordion-title {
  font-weight: 500;
  color: var(--eci-metallic-primary);
}

.eci-accordion-icon {
  transition: transform 0.3s ease;
}

.eci-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: var(--eci-card-bg);
}

.eci-accordion-inner {
  padding: var(--eci-space-md);
}

.eci-accordion.eci-active .eci-accordion-icon {
  transform: rotate(180deg);
}

.eci-accordion.eci-active .eci-accordion-content {
  max-height: 1000px;
}

/* Thank you page */
.eci-thanks-container {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--eci-space-xl) var(--eci-space-md);
}

.eci-thanks-icon {
  font-size: 72px;
  color: var(--eci-success);
  margin-bottom: var(--eci-space-md);
}

.eci-thanks-title {
  font-size: var(--eci-text-3xl);
  margin-bottom: var(--eci-space-md);
  color: var(--eci-metallic-primary);
}

.eci-thanks-text {
  font-size: var(--eci-text-lg);
  margin-bottom: var(--eci-space-lg);
  color: var(--eci-text-secondary);
}