/* ============================================ */
/* VARIABLES CON COLORES CORPORATIVOS INETSOS */
/* ============================================ */
:root {
  /* Colores corporativos exactos */
  --primary: #72A29A;
  --primary-light: #8FB8B1;
  --primary-dark: #5A827C;
  
  --accent: #5EDCD4;
  --accent-light: #7EE3DD;
  --accent-dark: #4BB0AA;
  
  --navy: #03224a;
  --navy-dark: #0A0C17;
  --navy-light: #1a365d;
  
  --gray-dark: #333333;
  --gray-medium: #666666;
  --gray-light: #999999;
  --gray-soft: #f5f5f5;
  
  --white: #ffffff;
  --black: #000000;
  
  /* Colores de estado */
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Tipografía */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Espaciado */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  
  /* Bordes */
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-2xl: 2.5rem;
  
  /* Sombras */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* RESET Y BASE */
/* ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================ */
/* TIPOGRAFÍA */
/* ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-semibold);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
}

p {
  margin-bottom: var(--space-4);
  color: var(--gray-medium);
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================ */
/* LAYOUT */
/* ============================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-8);
  }
}

.section {
  padding: var(--space-20) 0;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: var(--space-4);
  color: var(--navy);
}

.section__subtitle {
  font-size: 1.125rem;
  color: var(--gray-medium);
  line-height: 1.6;
}

/* ============================================ */
/* COMPONENTES: HEADER Y NAVEGACIÓN */
/* ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 var(--space-4);
}

.nav__logo {
  display: flex;
  align-items: center;
  padding: var(--space-2);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.nav__logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.nav__logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  transition: var(--transition);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: var(--space-6);
}

.nav__link {
  text-decoration: none;
  color: var(--gray-dark);
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav__link:hover,
.nav__link.active {
  color: var(--primary);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  color: var(--gray-medium);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav__phone:hover {
  color: var(--primary);
}

/* ============================================ */
/* COMPONENTES: BOTONES */
/* ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--secondary {
  background: transparent;
  color: var(--gray-dark);
  border: 1px solid var(--gray-light);
}

.btn--secondary:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: 0.875rem;
  border-radius: var(--radius-md);
}

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: 1rem;
  border-radius: var(--radius-xl);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.btn-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================ */
/* HERO SECTION - ESTILO CRYPTOFLOW */
/* ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  overflow: hidden;
  padding-top: 70px;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

#particles-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
}

.hero__bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 23, 0.5);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: var(--white);
}

.hero__description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero__trust {
  display: flex;
  gap: var(--space-8);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--accent);
  margin-bottom: var(--space-1);
}

.trust-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================ */
/* HERO SECTION - AJUSTES PARA MÓVILES */
/* ============================================ */
@media (max-width: 768px) {
  .hero {
    padding-top: 90px;
    min-height: calc(100vh - 70px);
  }

  .hero__content {
    gap: var(--space-8);
  }

  .hero__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  .hero__description {
    font-size: 1rem;
    margin-bottom: var(--space-6);
  }

  .hero__actions {
    margin-bottom: var(--space-8);
  }
  
  .header {
    height: 70px;
  }
  
  .nav {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 85px;
    min-height: calc(100vh - 60px);
  }

  .hero__title {
    font-size: 1.8rem;
  }

  .hero__trust {
    gap: var(--space-6);
  }

  .trust-item {
    flex: 1;
    min-width: 100px;
  }
}

/* ============================================ */
/* GLASS CARD EFFECT - MEJORADO CRYPTOFLOW */
/* ============================================ */
.glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  box-shadow: 
    0 8px 32px 0 rgba(31, 38, 135, 0.37),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.7s ease;
}

.glass:hover::before {
  left: 100%;
}

.floating-card {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* ============================================ */
/* FORMULARIOS HERO */
/* ============================================ */
.hero__visual {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .hero__visual {
    margin: 0;
    max-width: 450px;
  }
}

.card__header {
  margin-bottom: var(--space-6);
  text-align: center;
}

.card__header h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin: 0;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: var(--space-5);
  width: 100%;
}

.form-group label {
  display: block;
  margin-bottom: var(--space-2);
  font-weight: var(--font-weight-medium);
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact .form-group input,
.contact .form-group select,
.contact .form-group textarea {
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--gray-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact .form-group input::placeholder,
.contact .form-group textarea::placeholder {
  color: var(--gray-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(94, 220, 212, 0.1);
}

.contact .form-group input:focus,
.contact .form-group select:focus,
.contact .form-group textarea:focus {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(114, 162, 154, 0.1);
}

/* ============================================ */
/* CHECKBOX MEJORADO - VERSIÓN FINAL */
/* ============================================ */
.form-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin: var(--space-6) 0;
  padding: var(--space-4);
  background: rgba(114, 162, 154, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(114, 162, 154, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-checkbox-group:hover {
  border-color: var(--primary);
  background: rgba(114, 162, 154, 0.08);
}

.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-light);
  border-radius: 4px;
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-checkbox:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.form-checkbox:checked {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.05);
}

.form-checkbox:checked::before {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: var(--white);
  font-weight: var(--font-weight-bold);
  font-size: 12px;
  animation: checkmarkPop 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes checkmarkPop {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.form-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(114, 162, 154, 0.2);
  border-color: var(--primary);
}

.form-checkbox-group label {
  color: var(--gray-dark);
  font-size: 0.9rem;
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
  flex: 1;
  transition: color 0.3s ease;
}

.form-checkbox-group:hover label {
  color: var(--navy);
}

.form-checkbox-group a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
  font-weight: var(--font-weight-medium);
}

.form-checkbox-group a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.hero .form-checkbox-group,
.contact .form-checkbox-group {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero .form-checkbox-group label,
.contact .form-checkbox-group label {
  color: rgba(255, 255, 255, 0.9);
}

.hero .form-checkbox,
.contact .form-checkbox {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.hero .form-checkbox:checked,
.contact .form-checkbox:checked {
  background: var(--accent);
  border-color: var(--accent);
}

.hero .form-checkbox-group a,
.contact .form-checkbox-group a {
  color: var(--accent);
}

.hero .form-checkbox-group a:hover,
.contact .form-checkbox-group a:hover {
  color: var(--accent-light);
}

.form-checkbox:invalid {
  border-color: var(--error);
}

.form-checkbox:valid:checked {
  border-color: var(--success);
}

.contact-form .btn--primary {
  margin-top: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
}

.hero .contact-form .btn--primary {
  background: var(--accent);
  color: var(--navy);
}

.hero .contact-form .btn--primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(94, 220, 212, 0.3);
}

/* ============================================ */
/* MENSAJES DE VALIDACIÓN */
/* ============================================ */
.form-message {
  padding: var(--space-4);
  border-radius: var(--radius);
  margin: var(--space-4) 0;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid var(--success);
  color: var(--success);
}

.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--error);
  color: var(--error);
}

.is-invalid {
  border-color: var(--error) !important;
}

.is-invalid:focus {
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

/* ============================================ */
/* NAVEGACIÓN MÓVIL */
/* ============================================ */
.nav__toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.nav__toggle span {
  width: 25px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

@media (max-width: 968px) {
  .nav__menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--space-8);
    transition: var(--transition-slow);
    box-shadow: var(--shadow-lg);
  }

  .nav__menu.active {
    left: 0;
  }

  .nav__list {
    flex-direction: column;
    width: 100%;
    gap: var(--space-4);
  }

  .nav__actions {
    flex-direction: column;
    width: 100%;
    margin-top: var(--space-8);
  }

  .nav__toggle {
    display: flex;
  }

  .nav__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .nav__toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* ============================================ */
/* SERVICES SECTION - ESTILO CRYPTOFLOW */
/* ============================================ */
.services {
  padding: var(--space-20) 0;
  background: var(--gray-soft);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid rgba(114, 162, 154, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(94, 220, 212, 0.15) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  pointer-events: none;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  width: 500px;
  height: 500px;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--accent);
  box-shadow: 
    0 20px 60px rgba(94, 220, 212, 0.3),
    0 0 40px rgba(94, 220, 212, 0.2);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--white);
  transition: all 0.5s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(94, 220, 212, 0.3);
  z-index: 1;
}

.service-card__icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  filter: blur(10px);
}

.service-card:hover .service-card__icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(94, 220, 212, 0.5);
}

.service-card:hover .service-card__icon::before {
  opacity: 1;
}

.service-card__title {
  font-size: 1.375rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-4);
  color: var(--navy);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.service-card__description {
  color: var(--gray-medium);
  margin-bottom: var(--space-6);
  line-height: 1.6;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.service-card__features {
  list-style: none;
  margin-bottom: var(--space-8);
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

.service-card__features li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-card__features li::before {
  background: var(--accent);
  transform: scale(1.2);
}

.service-card__actions {
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--primary);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  font-size: 0.95rem;
  transition: var(--transition);
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--primary);
  border-radius: var(--radius-lg);
  background: transparent;
}

.service-card__link:hover {
  color: var(--white);
  background: var(--primary);
  gap: var(--space-3);
}

.service-card__link svg {
  transition: transform 0.3s ease;
}

.service-card__link:hover svg {
  transform: translateX(4px);
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================ */
/* WHY CHOOSE US SECTION - ESTILO CRYPTOFLOW */
/* ============================================ */
.why-choose {
  background: var(--white);
}

.why-choose__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
}

@media (min-width: 1024px) {
  .why-choose__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: start;
  }
}

.why-choose__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.stat-card {
  background: rgba(114, 162, 154, 0.05);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(114, 162, 154, 0.2);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: attr(data-number);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 8rem;
  font-weight: 900;
  color: rgba(94, 220, 212, 0.05);
  z-index: 0;
  line-height: 1;
}

.stat-card__content {
  position: relative;
  z-index: 1;
}

.stat-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(94, 220, 212, 0.25);
}

.stat-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(94, 220, 212, 0.3);
  transition: var(--transition);
}

.stat-card:hover .stat-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
  filter: drop-shadow(0 0 20px rgba(94, 220, 212, 0.3));
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-dark);
  font-weight: var(--font-weight-medium);
}

.why-choose__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.feature-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: rgba(114, 162, 154, 0.03);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(114, 162, 154, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  transition: height 0.5s ease;
}

.feature-item:hover::before {
  height: 100%;
}

.feature-item:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(94, 220, 212, 0.2);
  transform: translateX(12px);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.5s ease;
  box-shadow: 0 8px 20px rgba(94, 220, 212, 0.3);
}

.feature-item:hover .feature-item__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(94, 220, 212, 0.5);
}

.feature-item__content {
  flex: 1;
}

.feature-item__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.feature-item__description {
  color: var(--gray-medium);
  line-height: 1.6;
  margin: 0;
}

/* ============================================ */
/* TIMELINE DE PROCESO */
/* ============================================ */
.process-timeline {
  margin-top: var(--space-20);
  position: relative;
  padding: var(--space-8) 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent),
    transparent
  );
  transform: translateX(-50%);
  z-index: 1;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-16);
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  position: relative;
  z-index: 2;
}

.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.4s; }
.process-step:nth-child(4) { animation-delay: 0.6s; }
.process-step:nth-child(5) { animation-delay: 0.8s; }

.process-step:nth-child(even) .process-content:first-child {
  order: 3;
}

.process-content {
  background: rgba(114, 162, 154, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(114, 162, 154, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.5s ease;
  position: relative;
  z-index: 3;
}

.process-content:hover {
  transform: scale(1.05);
  border-color: var(--accent);
  box-shadow: 0 15px 40px rgba(94, 220, 212, 0.25);
}

.process-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(94, 220, 212, 0.4);
  position: relative;
  z-index: 4;
  border: 4px solid var(--white);
}

.process-number::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(94, 220, 212, 0.3) 0%,
    transparent 70%
  );
  animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

.process-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.process-description {
  color: var(--gray-medium);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .process-timeline::before {
    left: 30px;
    z-index: 1;
  }
  
  .process-step {
    grid-template-columns: auto 1fr;
    gap: var(--space-6);
    z-index: 2;
  }
  
  .process-step:nth-child(even) .process-content:first-child {
    order: initial;
  }
  
  .process-content:first-child {
    display: none;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border: 3px solid var(--white);
  }
}

/* ============================================ */
/* CTA SECTION - CRYPTOFLOW */
/* ============================================ */
.why-choose__cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-2xl);
  padding: var(--space-12);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 220, 212, 0.2);
}

.why-choose__cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(94, 220, 212, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 1.75rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-4);
  color: var(--white);
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-actions .btn--primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: var(--navy);
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(94, 220, 212, 0.4);
  position: relative;
  overflow: hidden;
}

.cta-actions .btn--primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-actions .btn--primary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-actions .btn--primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 50px rgba(94, 220, 212, 0.6);
}

.cta-actions .btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ================================ */
/* CLIENTS MARQUEE - PNG VERSION */
/* ================================ */
.clients {
  padding: 80px 0;
  background: linear-gradient(180deg, #0A0C17 0%, #03224a 100%);
  overflow: hidden;
}

.clients .section__title,
.clients .section__subtitle {
  color: #ffffff !important;
}

.clients__marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  margin-top: 40px;
  border-radius: 20px;
  background: rgba(10, 12, 23, 0.3);
  backdrop-filter: blur(10px);
}

.clients__marquee-wrapper::before,
.clients__marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients__marquee-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(10, 12, 23, 0.9) 0%, transparent 100%);
  border-radius: 20px 0 0 20px;
}

.clients__marquee-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, rgba(10, 12, 23, 0.9) 0%, transparent 100%);
  border-radius: 0 20px 20px 0;
}

.clients__marquee-track {
  display: flex;
  gap: 60px;
  width: fit-content;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}

.clients__marquee-track:hover {
  animation-play-state: paused;
}

.client-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 140px;
}

.client-logo img {
  max-height: 60px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%) brightness(0) invert(1);
}

.client-logo:hover img {
  opacity: 1;
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1) invert(0);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .clients {
    padding: 60px 0;
  }

  .clients__marquee-track {
    gap: 40px;
    animation-duration: 20s;
  }
  
  .client-logo {
    height: 60px;
    min-width: 100px;
  }
  
  .client-logo img {
    max-height: 45px;
    max-width: 100px;
  }
  
  .clients__marquee-wrapper::before,
  .clients__marquee-wrapper::after {
    width: 50px;
  }
}

/* ================================ */
/* TESTIMONIALS FULL WIDTH - ALINEACIÓN IZQUIERDA */
/* ================================ */
.testimonials {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}

.testimonials .container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

.testimonials-carousel-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.testimonials-swiper {
  width: 100% !important;
  height: 600px;
  overflow: hidden;
}

.testimonials-swiper .swiper-slide {
  width: 100vw !important;
  max-width: 100%;
}

.testimonial-slide {
  position: relative;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.testimonial-slide:hover .testimonial-bg {
  transform: scale(1.05);
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 12, 23, 0.95) 0%, rgba(22, 78, 99, 0.85) 100%);
  z-index: 1;
}

.testimonial-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 80px;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.company-logo {
  margin-bottom: 40px;
  animation: fadeInDown 0.8s ease;
}

.company-logo img {
  height: 60px;
  width: auto;
  opacity: 0.9;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}

.company-logo:hover img {
  opacity: 1;
  transform: scale(1.1);
}

.testimonial-quote {
  font-size: 1.5rem;
  line-height: 2rem;
  color: #ffffff;
  font-weight: 300;
  margin: 0 0 40px 0;
  font-style: italic;
  position: relative;
  padding-left: 50px;
  animation: fadeIn 1s ease 0.2s both;
  max-width: 900px;
}

.testimonial-quote::before {
  content: '"';
  font-size: 5rem;
  color: #5EDCD4;
  position: absolute;
  top: -30px;
  left: 0;
  font-family: Georgia, serif;
  opacity: 0.4;
  line-height: 1;
}

.testimonial-author {
  margin-top: auto;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.author-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #5EDCD4;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-position {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}

.testimonials-swiper .swiper-pagination {
  bottom: 30px;
  z-index: 10;
}

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: #5EDCD4;
  width: 40px;
  border-radius: 6px;
}

.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #ffffff;
  background: rgba(94, 220, 212, 0.2);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10;
}

.testimonials-swiper .swiper-button-next::after,
.testimonials-swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.testimonials-swiper .swiper-button-next:hover,
.testimonials-swiper .swiper-button-prev:hover {
  background: rgba(94, 220, 212, 0.4);
  transform: scale(1.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .testimonial-content-wrapper {
    padding: 60px 60px;
  }
}

@media (max-width: 768px) {
  .testimonials-swiper {
    height: 550px;
  }

  .testimonial-content-wrapper {
    padding: 40px 30px;
  }

  .testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.75rem;
    padding-left: 40px;
    max-width: 100%;
  }

  .testimonial-quote::before {
    font-size: 4rem;
    left: 0;
    top: -25px;
  }

  .company-logo img {
    height: 45px;
  }

  .author-name {
    font-size: 1.125rem;
  }

  .author-position {
    font-size: 0.875rem;
  }

  .testimonials-swiper .swiper-button-next,
  .testimonials-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .testimonials-swiper .swiper-button-next::after,
  .testimonials-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonials-swiper {
    height: 500px;
  }

  .testimonial-content-wrapper {
    padding: 30px 20px;
  }

  .testimonial-quote {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-left: 35px;
  }

  .testimonial-quote::before {
    font-size: 3.5rem;
    top: -20px;
  }
}

/* ============================================ */
/* CONTACT SECTION - MEJORADO */
/* ============================================ */
.contact {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(114, 162, 154, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(94, 220, 212, 0.1) 0%, transparent 50%);
}

.contact .section__header {
  position: relative;
  z-index: 2;
}

.contact .section__title,
.contact .section__subtitle {
  color: var(--white);
}

.contact__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-16);
  margin-top: var(--space-12);
}

@media (min-width: 1024px) {
  .contact__content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: start;
  }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
  transform: translateX(8px);
}

.contact-card__icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.contact-card__content {
  flex: 1;
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
  color: var(--white);
  margin-bottom: var(--space-2);
}

.contact-card__text {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

.contact-link:hover {
  color: var(--accent-light);
  text-decoration: underline;
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: 0.875rem;
}

.trust-badge span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: var(--font-weight-medium);
}

.contact__form {
  width: 100%;
}

.form-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  animation: float 6s ease-in-out infinite;
}

.form-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.form-header h3 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
}

.form-header p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-footer {
  margin-top: var(--space-8);
}

.form-disclaimer {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-top: var(--space-4);
  margin-bottom: 0;
}

/* ============================================ */
/* FOOTER - MEJORADO */
/* ============================================ */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
  }
}

@media (min-width: 1024px) {
  .footer__content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-12);
  }
}

.footer__column {
  display: flex;
  flex-direction: column;
}

.footer__logo {
  margin-bottom: var(--space-6);
}

.footer__logo img {
  width: 120px;
  height: 100px;
  object-fit: contain;
  transition: var(--transition);
}

.footer__logo img:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.footer__description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  font-size: 0.95rem;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
  margin-top: auto;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--accent);
  color: var(--navy);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(94, 220, 212, 0.3);
}

.footer__title {
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  color: var(--white);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  padding: var(--space-1) 0;
}

.footer__link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--accent);
}

.footer__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: var(--space-12) 0 var(--space-8);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__legal-link:hover {
  color: var(--accent);
}

/* ============================================ */
/* SELECT STYLES MEJORADOS */
/* ============================================ */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235EDCD4' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.form-group select option {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--space-3) var(--space-4);
}

/* ============================================ */
/* MONITOR DE AMENAZAS COMPACTO */
/* ============================================ */
.threat-monitor-compact {
  background: rgba(3, 34, 74, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(94, 220, 212, 0.1);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.monitor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(94, 220, 212, 0.1);
}

.monitor-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #2ed573;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.threat-counter {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff4757;
}

.monitor-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#world-map-compact {
  position: relative;
  width: 100%;
  height: 300px;
  background: 
    url('../assets/img/world-map-dots.png') center center no-repeat,
    linear-gradient(180deg, rgba(10, 12, 23, 0.5) 0%, rgba(3, 34, 74, 0.5) 100%);
  background-size: 95% auto, cover;
  border: 1px solid rgba(94, 220, 212, 0.15);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

#world-map-compact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(94, 220, 212, 0.15);
  pointer-events: none;
  z-index: 0;
}

.activity-feed-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 180px;
  overflow-y: auto;
  padding-right: 4px;
}

.activity-feed-compact::-webkit-scrollbar {
  width: 3px;
}

.activity-feed-compact::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 3px;
}

.activity-feed-compact::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 3px;
}

.feed-item-compact {
  background: rgba(10, 12, 23, 0.6);
  border-left: 2px solid #ff4757;
  padding: 8px 10px;
  border-radius: 4px;
  animation: slideInRight 0.3s ease-out;
}

.feed-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.feed-item-type {
  font-size: 0.7rem;
  font-weight: 600;
  color: #ff4757;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.feed-item-time {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'JetBrains Mono', monospace;
}

.feed-item-location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2px;
}

.feed-item-ip {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'JetBrains Mono', monospace;
}

.threat-point-compact {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #ff4757;
  border-radius: 50%;
  animation: threatPulse 2s infinite;
  box-shadow: 0 0 15px #ff4757;
}

.threat-point-compact::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: #ff4757;
  border-radius: 50%;
  animation: ripple 2s infinite;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes threatPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(3.5);
    opacity: 0;
  }
}

/* ============================================ */
/* SELECTOR DE IDIOMAS */
/* ============================================ */
.language-switcher {
  display: flex;
  gap: var(--space-2);
  margin-left: var(--space-6);
  align-items: center;
}

.language-btn {
  padding: var(--space-2) var(--space-3);
  border: 2px solid var(--primary);
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 700;
  transition: var(--transition);
  min-width: 48px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-btn:hover,
.language-btn.active {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(114, 162, 154, 0.4);
}

/* ============================================ */
/* ACCESIBILIDAD */
/* ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.nav__link:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: var(--navy);
  padding: var(--space-2) var(--space-4);
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
  z-index: 10000;
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================ */
/* UTILIDADES */
/* ============================================ */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }

/* ============================================ */
/* RESPONSIVE ADJUSTMENTS */
/* ============================================ */
@media (max-width: 768px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero__trust {
    justify-content: space-around;
  }
  
  .why-choose__stats {
    grid-template-columns: 1fr;
  }
  
  .stat-card::before {
    font-size: 5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: var(--space-6);
  }
  
  .carousel-controls {
    gap: var(--space-4);
  }
  
  .carousel-prev,
  .carousel-next {
    width: 40px;
    height: 40px;
  }
  
  .form-container {
    padding: var(--space-6);
  }
  
  .contact-card {
    flex-direction: column;
    text-align: center;
  }
  
  .contact-card__icon {
    align-self: center;
  }
  
  .trust-badges {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .trust-badge {
    flex: 1;
    min-width: 140px;
    justify-content: center;
  }
  
  .footer {
    padding: var(--space-16) 0 var(--space-6);
  }
  
  .footer__content {
    gap: var(--space-8);
  }
  
  .footer__column {
    text-align: center;
  }
  
  .footer__title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer__social {
    justify-content: center;
  }
  
  .footer__legal {
    gap: var(--space-4);
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }
  
  .language-switcher {
    margin-left: 0;
    margin-top: var(--space-4);
    justify-content: center;
  }
  
  .form-checkbox-group {
    padding: var(--space-3);
  }
  
  .form-checkbox-group label {
    font-size: 0.85rem;
  }
  
  .form-checkbox {
    width: 18px;
    height: 18px;
  }
  
  #world-map-compact {
    height: 200px;
  }
  
  .activity-feed-compact {
    max-height: 160px;
  }
}

@media (max-width: 640px) {
  .clients-track {
    gap: var(--space-6);
  }
  
  .client-logo {
    width: 120px;
    height: 60px;
  }
  
  @keyframes scrollLogos {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-120px * 8 - var(--space-6) * 8));
    }
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
  
  .author-info {
    align-items: center;
  }
  
  .service-card:hover {
    transform: translateY(-8px);
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero__visual {
    max-width: 550px;
  }
  
  .threat-monitor-compact {
    max-width: 550px;
  }
  
  #world-map-compact {
    height: 300px;
  }
  
  .activity-feed-compact {
    max-height: 240px;
  }
}

/* ============================================ */
/* PRINT STYLES */
/* ============================================ */
@media print {
  .header,
  .nav,
  .footer,
  .btn,
  .form-checkbox-group,
  .threat-monitor-compact {
    display: none;
  }
  
  body {
    color: #000;
    background: #fff;
  }
}

/* ============================================ */
/* SECURITY SHIELD CON RADAR Y ONDAS */
/* ============================================ */
.security-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-shield {
  position: relative;
  width: 24px;
  height: 24px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-wave {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #2ed573;
  border-radius: 50%;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  animation: radarWaveFromShield 3s ease-out infinite;
  pointer-events: none;
}

.radar-wave.wave-1 {
  animation-delay: 0s;
}

.radar-wave.wave-2 {
  animation-delay: 1s;
}

.radar-wave.wave-3 {
  animation-delay: 2s;
}

@keyframes radarWaveFromShield {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

.shield-icon {
  position: relative;
  z-index: 3;
  color: #2ed573;
  filter: drop-shadow(0 0 8px rgba(46, 213, 115, 0.6));
  animation: shieldGlow 2s ease-in-out infinite;
}

@keyframes shieldGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px rgba(46, 213, 115, 0.6));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(46, 213, 115, 0.9));
  }
}

.radar-scanner {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.radar-scanner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 9px;
  background: linear-gradient(to bottom, transparent, #2ed573);
  transform-origin: top center;
  animation: radarScan 2s linear infinite;
}

@keyframes radarScan {
  0% {
    transform: translate(-50%, -100%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -100%) rotate(360deg);
  }
}

.radar-pulse {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #2ed573;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 6px #2ed573;
  animation: pulseDot 1.5s ease-in-out infinite;
  z-index: 4;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.5);
  }
}

.title-text {
  margin-left: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .security-icon-wrapper {
    width: 35px;
    height: 35px;
  }
  
  .security-shield {
    width: 20px;
    height: 20px;
  }
  
  .shield-icon {
    width: 20px;
    height: 20px;
  }
}

/* ============================================ */
/* BACK TO TOP BUTTON */
/* ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(94, 220, 212, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 9999;
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(94, 220, 212, 0.6);
}

.back-to-top:active {
  transform: translateY(-2px);
}

.back-to-top::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* ============================================ */
/* TESTIMONIALS ADVANCED - CARRUSEL SWIPER (Glass version) */
/* ============================================ */
.testimonials-advanced {
  background: var(--white);
  overflow: hidden;
  position: relative;
}

.testimonials-carousel-wrapper {
  margin-top: 4rem;
  position: relative;
}

.testimonials-swiper {
  width: 100%;
  padding-bottom: 80px;
}

.testimonial-slide {
  width: 85%;
  max-width: 900px;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.9);
  opacity: 0.6;
}

.swiper-slide-active .testimonial-slide {
  transform: scale(1);
  opacity: 1;
}

.swiper-slide-active .testimonial-bg {
  transform: scale(1.05);
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 12, 23, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
  border-radius: inherit;
}

.testimonials-pagination {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testimonials-pagination .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: transparent;
  opacity: 1;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--gray-light);
  color: var(--gray-dark);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonials-pagination .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.testimonials-pagination .swiper-pagination-bullet-active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(94, 220, 212, 0.1);
}

.testimonials-pagination .swiper-pagination-bullet-active::before {
  width: 100%;
}

.testimonials-pagination .swiper-pagination-bullet:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* ================================ */
/* COOKIE CONSENT BANNER - INETSOS STYLE */
/* ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(10, 12, 23, 0.98) 0%, rgba(22, 78, 99, 0.98) 100%);
  backdrop-filter: blur(20px);
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  border-top: 2px solid rgba(94, 220, 212, 0.3);
  z-index: 99999;
  display: block;
  animation: slideUp 0.5s ease;
}

.cookie-banner.hidden {
  display: none;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  gap: 24px;
}

.cookie-icon {
  font-size: 48px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: #5EDCD4;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.cookie-text a {
  color: #5EDCD4;
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-text a:hover {
  color: #72A29A;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-accept {
  background: linear-gradient(135deg, #5EDCD4 0%, #72A29A 100%);
  color: #0A0C17;
  box-shadow: 0 4px 15px rgba(94, 220, 212, 0.3);
}

.btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 220, 212, 0.5);
}

.btn-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-settings {
  background: transparent;
  color: #5EDCD4;
  border: 2px solid #5EDCD4;
}

.btn-settings:hover {
  background: rgba(94, 220, 212, 0.1);
}

.cookie-settings {
  display: none;
  margin-top: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(94, 220, 212, 0.2);
  animation: fadeIn 0.3s ease;
}

.cookie-settings.active {
  display: block;
}

.cookie-settings h4 {
  margin: 0 0 8px 0;
  color: #5EDCD4;
  font-size: 18px;
  font-weight: 600;
}

.settings-description {
  margin: 0 0 20px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.cookie-category {
  margin-bottom: 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border-left: 3px solid #5EDCD4;
}

.category-header {
  margin-bottom: 8px;
}

.category-header label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #ffffff;
  font-weight: 600;
}

.category-name {
  flex: 1;
  font-size: 15px;
}

.badge-required {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #5EDCD4;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.category-description {
  margin: 0;
  padding-left: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.cookie-settings-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-save {
  background: linear-gradient(135deg, #5EDCD4 0%, #72A29A 100%);
  color: #0A0C17;
  padding: 12px 28px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(94, 220, 212, 0.4);
}

.btn-cancel {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-cancel:hover {
  background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 1024px) {
  .cookie-content {
    flex-wrap: wrap;
  }
  
  .cookie-icon {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    padding: 20px 16px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-icon {
    font-size: 36px;
  }

  .cookie-text h4 {
    font-size: 18px;
  }

  .cookie-text p {
    font-size: 13px;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
    justify-content: center;
  }

  .cookie-settings {
    padding: 20px 16px;
  }

  .cookie-settings-buttons {
    flex-direction: column;
  }

  .btn-save,
  .btn-cancel {
    width: 100%;
  }
}

/* ============================================================ */
/* OCULTAR BADGE reCAPTCHA v3 Y MOSTRAR AVISO LEGAL EN FOOTER */
/* ============================================================ */
.grecaptcha-badge {
  display: none !important;
}

.footer .recaptcha-disclaimer {
  margin-top: 1.2rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  text-align: center;
}

.footer .recaptcha-disclaimer a {
  color: #72a29a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .recaptcha-disclaimer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ============================================================ */
/* MENSAJE LEGAL Y reCAPTCHA EN FORMULARIO INETSOS */
/* ============================================================ */
.recaptcha-inline {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.1rem;
}

.recaptcha-icon {
  width: 18px;
  height: 18px;
  filter: brightness(1.2);
  opacity: 0.8;
}

@media (max-width: 480px) {
  .form-checkbox-group label {
    font-size: 0.68rem;
    line-height: 1.3;
  }
}