:root {
/* Otras propiedades */
  --color-background-dark: #060E3A;
  --color-background-light: #0D1A63;
  --color-texto: #FFFFFF;
  --color-texto-secundario: #B0BBE0;
  --color-menta: #2845D6;
  --color-menta-light: #4A6BFF;
  --color-menta-dark: #1A2CA3;
  --color-naranja: #F68048;
  --color-naranja-light: #FF9A6C;
  --color-naranja-dark: #E06A30;
  --color-error: #FF5E5E;
  --color-success: #22C55E;
  --color-warning: #FFB844;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-normal: 0 4px 12px rgba(0, 0, 0, 0.2);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.3);
  --shadow-glow-menta: 0 0 20px rgba(40, 69, 214, 0.3);
  --shadow-glow-naranja: 0 0 20px rgba(246, 128, 72, 0.3);
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 15px;
  --radius-xl: 25px;
  --radius-full: 50px;}

* {
/* Modelo de caja */
  box-sizing: border-box;

  /* Márgenes */
  margin: 0;

  /* Relleno */
  padding: 0;}

html {
/* Otras propiedades */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;}

body {
/* Modelo de caja */
  overflow-x: hidden;

  /* Dimensiones */
  min-height: 100vh;
  min-height: 100dvh;

  /* Fondos */
  background: linear-gradient(135deg, #030520 0%, #060E3A 100%);

  /* Tipografía */
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;

  /* Colores y efectos */
  color: var(--color-texto);

  /* Otras propiedades */
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;}

.visually-hidden {
/* Posicionamiento */
  position: absolute;

  /* Modelo de caja */
  overflow: hidden;

  /* Dimensiones */
  width: 1px;
  height: 1px;

  /* Márgenes */
  margin: -1px;

  /* Relleno */
  padding: 0;

  /* Bordes */
  border: 0;

  /* Otras propiedades */
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;}

.particle {
/* Posicionamiento */
  position: absolute;

  /* Dimensiones */
  width: 4px;
  height: 4px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: rgba(40, 69, 214, 0.5);

  /* Transiciones y animaciones */
  animation: float 6s ease-in-out infinite;}

.container {
/* Dimensiones */
  max-width: 1200px;

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: 0 20px;}

header {
/* Posicionamiento */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  /* Dimensiones */
  width: 100%;

  /* Relleno */
  padding: 1rem 0;

  /* Bordes */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  /* Fondos */
  background: rgba(6, 14, 58, 0.85);

  /* Colores y efectos */
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Otras propiedades */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);}

header.scrolled {
/* Relleno */
  padding: 0.75rem 0;

  /* Fondos */
  background: rgba(6, 14, 58, 0.95);

  /* Colores y efectos */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

  /* Otras propiedades */
  border-bottom-color: rgba(40, 69, 214, 0.15);}

nav {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: center;

  /* Dimensiones */
  max-width: 1200px;

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: 0 2rem;}

.logo {
/* Posicionamiento */
  position: relative;

  /* Tipografía */
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;

  /* Colores y efectos */
  color: var(--color-naranja);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  letter-spacing: 1px;
  white-space: nowrap;}

.logo:hover {
/* Colores y efectos */
  text-shadow: 0 0 15px rgba(246, 128, 72, 0.6);

  /* Otras propiedades */
  transform: scale(1.02);}

.nav-links {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: 2.5rem;
  align-items: center;

  /* Márgenes */
  margin: 0;

  /* Relleno */
  padding: 0;

  /* Otras propiedades */
  list-style: none;}

.nav-links a {
/* Posicionamiento */
  position: relative;

  /* Relleno */
  padding: 0.5rem 0;

  /* Tipografía */
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;

  /* Colores y efectos */
  color: var(--color-texto-secundario, #A8B2C1);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Otras propiedades */
  letter-spacing: 0.5px;}

.nav-links a:hover {
/* Colores y efectos */
  color: var(--color-menta, #2845D6);
  text-shadow: 0 0 8px rgba(40, 69, 214, 0.4);}

.nav-links a::after {
/* Posicionamiento */
  position: absolute;
  bottom: 0;
  left: 0;

  /* Dimensiones */
  width: 0;
  height: 2px;

  /* Bordes */
  border-radius: 2px;

  /* Fondos */
  background: linear-gradient(90deg, var(--color-menta, #2845D6), var(--color-menta-light, #4A6BFF));

  /* Colores y efectos */
  box-shadow: 0 0 8px var(--color-menta, #2845D6);

  /* Transiciones y animaciones */
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Otras propiedades */
  content: '';}

.nav-links a:hover::after {
/* Dimensiones */
  width: 100%;

  /* Colores y efectos */
  opacity: 0.7;}

.nav-links a.active {
/* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-menta, #2845D6);}

.nav-links a.active::after {
/* Dimensiones */
  width: 100%;

  /* Colores y efectos */
  opacity: 1;}

.hero {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: flex;
  overflow: hidden;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  min-height: 100vh;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-background-dark) 0%, #030520 100%);

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  color: var(--color-texto);}

#particles-js {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;

  /* Dimensiones */
  width: 100%;
  height: 100%;}

.hero-content {
/* Posicionamiento */
  position: relative;
  z-index: 10;

  /* Dimensiones */
  max-width: 800px;

  /* Relleno */
  padding: 2rem;

  /* Transiciones y animaciones */
  animation: fadeInUp 1s ease-out;
  transition: transform 0.1s ease-out;

  /* Otras propiedades */
  transform-style: preserve-3d;}

.hero h1 {
/* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  font-size: 3.5rem;
  font-weight: 700;

  /* Colores y efectos */
  text-shadow: 0 0 10px rgba(40, 69, 214, 0.5);}

.hero-subtitle {
/* Márgenes */
  margin-bottom: 2rem;

  /* Tipografía */
  font-size: 1.3rem;

  /* Colores y efectos */
  opacity: 0.9;}

.hero-description {
/* Márgenes */
  margin-bottom: 2rem;

  /* Tipografía */
  font-size: 1.1rem;

  /* Colores y efectos */
  opacity: 0.8;}

.cta-button {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: inline-block;
  overflow: hidden;

  /* Márgenes */
  margin: 0 10px;

  /* Relleno */
  padding: 12px 30px;

  /* Bordes */
  border-radius: 50px;
  border: 2px solid rgba(246, 128, 72, 0.5);

  /* Fondos */
  background: rgba(246, 128, 72, 0.2);

  /* Tipografía */
  text-decoration: none;
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-texto);
  box-shadow: 0 0 10px rgba(246, 128, 72, 0.2);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.cta-button::before {
/* Posicionamiento */
  position: absolute;
  top: -50%;
  left: -50%;
  z-index: -1;

  /* Dimensiones */
  width: 200%;
  height: 200%;

  /* Fondos */
  background: linear-gradient(45deg,
      rgba(40, 69, 214, 0) 0%,
      rgba(40, 69, 214, 0.1) 50%,
      rgba(246, 128, 72, 0) 100%);

  /* Transiciones y animaciones */
  animation: shine 3s infinite;

  /* Otras propiedades */
  content: '';
  transform: rotate(45deg);}

.cta-button:hover {
/* Fondos */
  background: var(--color-naranja);

  /* Colores y efectos */
  color: #060E3A;
  box-shadow: 0 0 20px rgba(246, 128, 72, 0.5);

  /* Otras propiedades */
  transform: translateY(-2px) scale(1.02);}

.cta-button:focus {
/* Otras propiedades */
  outline: 2px solid var(--color-menta);
  outline-offset: 3px;}

.cta-button:active {
/* Colores y efectos */
  box-shadow: 0 0 10px rgba(246, 128, 72, 0.3);

  /* Transiciones y animaciones */
  transition: transform 0.1s ease;

  /* Otras propiedades */
  transform: translateY(0) scale(0.98);}

.particle {
/* Posicionamiento */
  position: absolute;

  /* Dimensiones */
  width: 4px;
  height: 4px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: rgba(40, 69, 214, 0.5);

  /* Transiciones y animaciones */
  animation: float 6s ease-in-out infinite;}

.about {
/* Relleno */
  padding: 5rem 0;

  /* Fondos */
  background: #060E3A;}

.section-title {
/* Posicionamiento */
  position: relative;

  /* Márgenes */
  margin-bottom: 3rem;

  /* Tipografía */
  text-align: center;
  font-size: 2.5rem;

  /* Colores y efectos */
  color: var(--color-texto);
  text-shadow: 0 0 10px rgba(40, 69, 214, 0.4);

  /* Transiciones y animaciones */
  animation: pulse 4s infinite alternate;}

.section-title::after {
/* Posicionamiento */
  position: absolute;
  bottom: -10px;
  left: 50%;

  /* Dimensiones */
  width: 60px;
  height: 3px;

  /* Fondos */
  background: var(--color-naranja);

  /* Colores y efectos */
  box-shadow: 0 0 10px var(--color-naranja);

  /* Otras propiedades */
  content: '';
  transform: translateX(-50%);}

.about-content {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: 3rem;
  align-items: center;

  /* Otras propiedades */
  grid-template-columns: 1fr 2fr;}

.about-text {
/* Tipografía */
  font-size: 1.1rem;
  line-height: 1.8;

  /* Colores y efectos */
  color: var(--color-texto-secundario);}

.highlight {
/* Posicionamiento */
  position: relative;

  /* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-menta);
  text-shadow: 0 0 5px rgba(40, 69, 214, 0.4);}

.highlight::after {
/* Posicionamiento */
  position: absolute;
  bottom: -2px;
  left: 0;

  /* Dimensiones */
  width: 100%;
  height: 1px;

  /* Fondos */
  background: var(--color-menta);

  /* Colores y efectos */
  opacity: 0.3;
  box-shadow: 0 0 5px var(--color-menta);

  /* Otras propiedades */
  content: '';}

.stat-item {
/* Relleno */
  padding: 1.5rem;

  /* Bordes */
  border-radius: 10px;
  border: 1px solid rgba(40, 69, 214, 0.1);

  /* Fondos */
  background: var(--color-background-light);

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 8px rgba(40, 69, 214, 0.1) inset;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.stat-item:hover {
/* Bordes */
  border-color: rgba(40, 69, 214, 0.3);

  /* Colores y efectos */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(40, 69, 214, 0.2) inset;

  /* Otras propiedades */
  transform: translateY(-5px) scale(1.03);}

.stat-number {
/* Tipografía */
  font-size: 2.5rem;
  font-weight: bold;

  /* Colores y efectos */
  color: var(--color-naranja);
  text-shadow: 0 0 10px rgba(246, 128, 72, 0.3);

  /* Transiciones y animaciones */
  animation: pulse 3s infinite alternate;}

.stat-label {
/* Márgenes */
  margin-top: 0.5rem;

  /* Tipografía */
  font-size: 0.9rem;

  /* Colores y efectos */
  color: var(--color-texto-secundario);}

.skills {
/* Relleno */
  padding: 5rem 0;

  /* Fondos */
  background: #0D1A63;}

.skills-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: 2rem;

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));}

.skill-category {
/* Relleno */
  padding: 2rem;

  /* Bordes */
  border-radius: 15px;
  border: 1px solid rgba(40, 69, 214, 0.1);

  /* Fondos */
  background: #060E3A;

  /* Colores y efectos */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3), 0 0 10px rgba(40, 69, 214, 0.1) inset;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.skill-category:hover {
/* Bordes */
  border-color: rgba(40, 69, 214, 0.3);

  /* Colores y efectos */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(40, 69, 214, 0.2) inset;

  /* Otras propiedades */
  transform: translateY(-5px) scale(1.02);}

.skill-category h3 {
/* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  font-size: 1.3rem;

  /* Colores y efectos */
  color: var(--color-menta);
  text-shadow: 0 0 5px rgba(40, 69, 214, 0.5);}

.skill-tags {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  gap: 0.5rem;}

.skill-tag {
/* Relleno */
  padding: 0.3rem 0.8rem;

  /* Bordes */
  border-radius: 20px;

  /* Fondos */
  background: #F68048;

  /* Tipografía */
  font-size: 0.9rem;

  /* Colores y efectos */
  color: #060E3A;

  /* Transiciones y animaciones */
  transition: background 0.3s ease;}

.skill-tag:hover, .skill-tag:focus {
/* Fondos */
  background: #2845D6;

  /* Otras propiedades */
  outline: 2px solid var(--color-menta);
  outline-offset: 2px;}

.experience {
/* Relleno */
  padding: 5rem 0;

  /* Fondos */
  background: #060E3A;}

.timeline {
/* Posicionamiento */
  position: relative;

  /* Márgenes */
  margin: 0;

  /* Relleno */
  padding-left: 2rem;

  /* Otras propiedades */
  list-style: none;}

.timeline::before {
/* Posicionamiento */
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;

  /* Dimensiones */
  width: 3px;

  /* Fondos */
  background: var(--color-naranja);

  /* Colores y efectos */
  box-shadow: 0 0 15px var(--color-naranja);

  /* Otras propiedades */
  content: '';}

.timeline-item {
/* Posicionamiento */
  position: relative;

  /* Márgenes */
  margin-bottom: 3rem;

  /* Relleno */
  padding-left: 2rem;}

.timeline-item::before {
/* Posicionamiento */
  position: absolute;
  left: -1.5rem;
  top: 0;

  /* Dimensiones */
  width: 12px;
  height: 12px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: var(--color-menta);

  /* Colores y efectos */
  box-shadow: 0 0 10px var(--color-menta), 0 0 20px var(--color-menta);

  /* Transiciones y animaciones */
  animation: pulse 3s infinite alternate;

  /* Otras propiedades */
  content: '';}

.timeline-content {
/* Relleno */
  padding: 2rem;

  /* Bordes */
  border-radius: 15px;
  border: 1px solid rgba(40, 69, 214, 0.1);

  /* Fondos */
  background: var(--color-background-light);

  /* Colores y efectos */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 5px rgba(40, 69, 214, 0.1) inset;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.timeline-content:hover {
/* Bordes */
  border-color: rgba(40, 69, 214, 0.3);

  /* Colores y efectos */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3), 0 0 10px rgba(40, 69, 214, 0.2) inset;

  /* Otras propiedades */
  transform: translateX(10px) scale(1.02);}

.timeline-date {
/* Márgenes */
  margin-bottom: 0.5rem;

  /* Tipografía */
  font-weight: bold;

  /* Colores y efectos */
  color: var(--color-naranja);
  text-shadow: 0 0 5px rgba(246, 128, 72, 0.3);}

.timeline-title {
/* Márgenes */
  margin-bottom: 0.5rem;

  /* Tipografía */
  font-size: 1.3rem;

  /* Colores y efectos */
  color: var(--color-texto);
  text-shadow: 0 0 8px rgba(40, 69, 214, 0.3);}

.timeline-company {
/* Márgenes */
  margin-bottom: 1rem;

  /* Colores y efectos */
  color: var(--color-texto-secundario);
  text-shadow: 0 0 5px rgba(40, 69, 214, 0.1);}

.contact {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Relleno */
  padding: 5rem 0;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-background-light) 0%, var(--color-background-dark) 100%);

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  color: var(--color-texto);}

.contact::before {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;

  /* Fondos */
  background: radial-gradient(circle at 20% 30%, rgba(40, 69, 214, 0.03) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(246, 128, 72, 0.03) 0%, transparent 25%);

  /* Otras propiedades */
  content: '';}

.contact-content {
/* Posicionamiento */
  position: relative;
  z-index: 1;

  /* Dimensiones */
  max-width: 600px;

  /* Márgenes */
  margin: 0 auto;}

.contact-info {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: center;
  gap: 2rem;

  /* Márgenes */
  margin-top: 2rem;}

.contact-item {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 0.5rem;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.contact-item:hover {
/* Otras propiedades */
  transform: translateY(-3px);}

.contact-item span {
/* Colores y efectos */
  color: var(--color-naranja);
  text-shadow: 0 0 5px rgba(246, 128, 72, 0.5);}

.contact-item a {
/* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: var(--color-menta);
  text-shadow: 0 0 5px rgba(40, 69, 214, 0.3);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.contact-item a:hover {
/* Colores y efectos */
  opacity: 0.8;
  text-shadow: 0 0 10px rgba(40, 69, 214, 0.6);}

.fade-in {
/* Colores y efectos */
  opacity: 0;

  /* Transiciones y animaciones */
  transition: all 0.8s ease;

  /* Otras propiedades */
  transform: translateY(30px);}

.fade-in.visible {
/* Colores y efectos */
  opacity: 1;

  /* Transiciones y animaciones */
  animation: pulse 4s infinite alternate;

  /* Otras propiedades */
  transform: translateY(0);}

.footer {
/* Relleno */
  padding: 2rem 0 1rem;

  /* Bordes */
  border-top: 1px solid rgba(40, 69, 214, 0.15);

  /* Fondos */
  background: linear-gradient(180deg, rgba(6, 14, 58, 0.98) 0%, rgba(0, 0, 0, 0.99) 100%);

  /* Tipografía */
  font-size: 0.85rem;
  text-align: center;

  /* Colores y efectos */
  color: var(--color-texto-secundario);}

.footer .container {
/* Dimensiones */
  max-width: 700px;}

.footer-brand {
/* Márgenes */
  margin-bottom: 1.25rem;}

.footer-logo-text {
/* Márgenes */
  margin-bottom: 0.25rem;

  /* Tipografía */
  font-size: 1.2rem;
  font-weight: 700;

  /* Colores y efectos */
  color: var(--color-naranja);
  text-shadow: 0 0 15px rgba(246, 128, 72, 0.3);}

.footer-tagline {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 0.8rem;

  /* Colores y efectos */
  color: var(--color-texto-secundario);
  opacity: 0.7;}

.footer-nav {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;

  /* Márgenes */
  margin-bottom: 1.25rem;

  /* Relleno */
  padding-bottom: 1.25rem;

  /* Bordes */
  border-bottom: 1px solid rgba(40, 69, 214, 0.1);}

.footer-nav a {
/* Relleno */
  padding: 0.25rem 0;

  /* Tipografía */
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;

  /* Colores y efectos */
  color: var(--color-texto);

  /* Transiciones y animaciones */
  transition: color 0.2s ease;}

.footer-nav a:hover {
/* Colores y efectos */
  color: var(--color-menta);}

.footer-meta {
/* Márgenes */
  margin-bottom: 1.25rem;}

.footer-legal, .footer-contact {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem 0.75rem;

  /* Márgenes */
  margin-bottom: 0.5rem;}

.footer-legal a, .footer-contact a {
/* Tipografía */
  font-size: 0.75rem;
  text-decoration: none;

  /* Colores y efectos */
  color: var(--color-texto-secundario);

  /* Transiciones y animaciones */
  transition: color 0.2s ease;}

.footer-legal a:hover, .footer-contact a:hover {
/* Colores y efectos */
  color: var(--color-menta);}

.footer-separator {
/* Tipografía */
  font-size: 0.6rem;

  /* Colores y efectos */
  color: rgba(40, 69, 214, 0.3);}

.footer-cookie-link {
/* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-menta) !important;}

.footer-cookie-link:hover {
/* Colores y efectos */
  color: var(--color-naranja) !important;}

.footer-bottom {
/* Relleno */
  padding-top: 0.75rem;

  /* Bordes */
  border-top: 1px solid rgba(40, 69, 214, 0.05);}

.footer-bottom p {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 0.7rem;

  /* Colores y efectos */
  color: var(--color-texto-secundario);
  opacity: 0.5;}

.footer a:focus {
/* Otras propiedades */
  outline: 2px solid var(--color-menta);
  outline-offset: 2px;}

.cookie-banner {
/* Posicionamiento */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;

  /* Bordes */
  border-top: 1px solid rgba(59, 130, 246, 0.3);

  /* Fondos */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);

  /* Colores y efectos */
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;

  /* Transiciones y animaciones */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;

  /* Interactividad */
  pointer-events: none;

  /* Otras propiedades */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform: translateY(100%);}

.cookie-banner.visible {
/* Colores y efectos */
  opacity: 1;

  /* Interactividad */
  pointer-events: auto;

  /* Otras propiedades */
  transform: translateY(0);}

.cookie-banner.hidden {
/* Colores y efectos */
  opacity: 0;

  /* Interactividad */
  pointer-events: none;

  /* Otras propiedades */
  transform: translateY(100%);}

.cookie-banner-content {
/* Dimensiones */
  max-width: 1200px;

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: 1.5rem 2rem;}

.cookie-banner-header {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 1rem;

  /* Márgenes */
  margin-bottom: 1rem;}

.cookie-icon {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;
  flex-shrink: 0;

  /* Dimensiones */
  width: 48px;
  height: 48px;

  /* Bordes */
  border-radius: 12px;

  /* Fondos */
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);

  /* Colores y efectos */
  color: white;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);}

.cookie-banner-header h3 {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 1.5rem;
  font-weight: 700;

  /* Colores y efectos */
  color: #fff;}

.cookie-banner-text {
/* Márgenes */
  margin-bottom: 1.25rem;}

.cookie-banner-text p {
/* Márgenes */
  margin-bottom: 0.75rem;

  /* Tipografía */
  font-size: 0.95rem;
  line-height: 1.7;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.85);}

.cookie-banner-text p:last-child {
/* Márgenes */
  margin-bottom: 0;}

.cookie-banner-text a {
/* Tipografía */
  text-decoration: none;
  font-weight: 500;

  /* Colores y efectos */
  color: #60a5fa;

  /* Transiciones y animaciones */
  transition: color 0.2s ease;}

.cookie-banner-text a:hover {
/* Tipografía */
  text-decoration: underline;

  /* Colores y efectos */
  color: #93c5fd;}

.cookie-banner-text strong {
/* Colores y efectos */
  color: #fff;}

.cookie-banner-actions {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  gap: 0.75rem;

  /* Márgenes */
  margin-bottom: 1rem;}

.cookie-banner-footer {
/* Relleno */
  padding-top: 1rem;

  /* Bordes */
  border-top: 1px solid rgba(255, 255, 255, 0.1);}

.cookie-banner-footer small {
/* Tipografía */
  font-size: 0.8rem;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.5);}

.cookie-btn {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  /* Relleno */
  padding: 0.75rem 1.5rem;

  /* Bordes */
  border-radius: 8px;
  border: none;

  /* Tipografía */
  font-weight: 600;
  font-size: 0.9rem;

  /* Transiciones y animaciones */
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  white-space: nowrap;}

.cookie-btn svg {
/* Flexbox y Grid */
  flex-shrink: 0;}

.cookie-btn:focus {
/* Otras propiedades */
  outline: 2px solid #60a5fa;
  outline-offset: 2px;}

.cookie-btn-primary {
/* Fondos */
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);}

.cookie-btn-primary:hover {
/* Fondos */
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);

  /* Colores y efectos */
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);

  /* Otras propiedades */
  transform: translateY(-2px);}

.cookie-btn-secondary {
/* Bordes */
  border: 1px solid rgba(59, 130, 246, 0.3);

  /* Fondos */
  background: rgba(59, 130, 246, 0.15);

  /* Colores y efectos */
  color: #60a5fa;}

.cookie-btn-secondary:hover {
/* Bordes */
  border-color: rgba(59, 130, 246, 0.5);

  /* Fondos */
  background: rgba(59, 130, 246, 0.25);}

.cookie-btn-outline {
/* Bordes */
  border: 1px solid rgba(255, 255, 255, 0.3);

  /* Fondos */
  background: transparent;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.8);}

.cookie-btn-outline:hover {
/* Bordes */
  border-color: rgba(255, 255, 255, 0.5);

  /* Fondos */
  background: rgba(255, 255, 255, 0.1);

  /* Colores y efectos */
  color: #fff;}

.cookie-btn-config {
/* Bordes */
  border: 1px solid rgba(139, 92, 246, 0.3);

  /* Fondos */
  background: rgba(139, 92, 246, 0.15);

  /* Colores y efectos */
  color: #a78bfa;}

.cookie-btn-config:hover {
/* Bordes */
  border-color: rgba(139, 92, 246, 0.5);

  /* Fondos */
  background: rgba(139, 92, 246, 0.25);}

.cookie-modal {
/* Posicionamiento */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Fondos */
  background: rgba(0, 0, 0, 0.8);

  /* Colores y efectos */
  opacity: 0;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Otras propiedades */
  backdrop-filter: blur(4px);
  visibility: hidden;}

.cookie-modal.active {
/* Colores y efectos */
  opacity: 1;

  /* Otras propiedades */
  visibility: visible;}

.cookie-modal-content {
/* Modelo de caja */
  overflow-y: auto;

  /* Dimensiones */
  width: 95%;
  max-width: 650px;
  max-height: 90vh;

  /* Bordes */
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.2);

  /* Fondos */
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98) 0%, rgba(30, 41, 59, 0.98) 100%);

  /* Colores y efectos */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);

  /* Transiciones y animaciones */
  animation: modalAppear 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Otras propiedades */
  backdrop-filter: blur(20px);}

.cookie-modal-header {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: center;

  /* Relleno */
  padding: 1.5rem;

  /* Bordes */
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  /* Fondos */
  background: rgba(59, 130, 246, 0.05);}

.cookie-modal-header h3 {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 0.75rem;

  /* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 1.25rem;
  font-weight: 700;

  /* Colores y efectos */
  color: #fff;}

.cookie-modal-header h3 svg {
/* Colores y efectos */
  color: #3b82f6;}

.cookie-modal-close {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 36px;
  height: 36px;

  /* Bordes */
  border: none;
  border-radius: 8px;

  /* Fondos */
  background: rgba(255, 255, 255, 0.1);

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.7);

  /* Transiciones y animaciones */
  transition: all 0.2s ease;

  /* Interactividad */
  cursor: pointer;}

.cookie-modal-close:hover {
/* Fondos */
  background: rgba(239, 68, 68, 0.2);

  /* Colores y efectos */
  color: #ef4444;}

.cookie-modal-close:focus {
/* Otras propiedades */
  outline: 2px solid #60a5fa;
  outline-offset: 2px;}

.cookie-modal-intro {
/* Relleno */
  padding: 1.25rem 1.5rem;

  /* Bordes */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  /* Fondos */
  background: rgba(59, 130, 246, 0.05);}

.cookie-modal-intro p {
/* Márgenes */
  margin-bottom: 0.5rem;

  /* Tipografía */
  font-size: 0.9rem;
  line-height: 1.6;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.75);}

.cookie-modal-intro p:last-child {
/* Márgenes */
  margin-bottom: 0;}

.cookie-modal-intro strong {
/* Colores y efectos */
  color: #60a5fa;}

.cookie-categories {
/* Relleno */
  padding: 0.5rem 0;}

.cookie-category {
/* Relleno */
  padding: 1.25rem 1.5rem;

  /* Bordes */
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);

  /* Transiciones y animaciones */
  transition: background 0.2s ease;}

.cookie-category:hover {
/* Fondos */
  background: rgba(255, 255, 255, 0.02);}

.cookie-category:last-child {
/* Bordes */
  border-bottom: none;}

.cookie-category-essential {
/* Fondos */
  background: rgba(34, 197, 94, 0.05);}

.cookie-category-header {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  /* Márgenes */
  margin-bottom: 0.75rem;}

.cookie-category-info {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 0.75rem;
  flex: 1;}

.cookie-category-icon {
/* Tipografía */
  font-size: 1.25rem;}

.cookie-category-title {
/* Tipografía */
  font-weight: 600;
  font-size: 1rem;

  /* Colores y efectos */
  color: #fff;}

.cookie-info-btn {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 20px;
  height: 20px;

  /* Bordes */
  border: none;
  border-radius: 50%;

  /* Fondos */
  background: rgba(59, 130, 246, 0.2);

  /* Colores y efectos */
  color: #60a5fa;

  /* Transiciones y animaciones */
  transition: all 0.2s ease;

  /* Interactividad */
  cursor: pointer;}

.cookie-info-btn:hover {
/* Fondos */
  background: rgba(59, 130, 246, 0.3);}

.cookie-toggle {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 0.5rem;}

.cookie-toggle input {
/* Posicionamiento */
  position: absolute;

  /* Dimensiones */
  width: 0;
  height: 0;

  /* Colores y efectos */
  opacity: 0;}

.cookie-toggle-slider {
/* Posicionamiento */
  position: relative;

  /* Dimensiones */
  width: 52px;
  height: 28px;

  /* Bordes */
  border-radius: 28px;

  /* Fondos */
  background: rgba(100, 116, 139, 0.5);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Interactividad */
  cursor: pointer;}

.cookie-toggle-slider:before {
/* Posicionamiento */
  position: absolute;
  top: 3px;
  left: 3px;

  /* Dimensiones */
  width: 22px;
  height: 22px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: #fff;

  /* Colores y efectos */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);

  /* Transiciones y animaciones */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Otras propiedades */
  content: "";}

input:checked+.cookie-toggle-slider {
/* Fondos */
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);}

input:checked+.cookie-toggle-slider:before {
/* Otras propiedades */
  transform: translateX(24px);}

input:disabled+.cookie-toggle-slider {
/* Fondos */
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);

  /* Interactividad */
  cursor: not-allowed;}

input:disabled+.cookie-toggle-slider:before {
/* Otras propiedades */
  transform: translateX(24px);}

.cookie-toggle-label {
/* Tipografía */
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;

  /* Colores y efectos */
  color: #22c55e;

  /* Otras propiedades */
  letter-spacing: 0.5px;}

.cookie-toggle-disabled .cookie-toggle-slider {
/* Colores y efectos */
  opacity: 1;}

.cookie-category-description {
/* Tipografía */
  font-size: 0.875rem;
  line-height: 1.6;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.6);}

.cookie-examples {
/* Márgenes */
  margin-top: 0.5rem;

  /* Relleno */
  padding-top: 0.5rem;

  /* Bordes */
  border-top: 1px dashed rgba(255, 255, 255, 0.1);

  /* Tipografía */
  font-size: 0.8rem;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.5);}

.cookie-examples strong {
/* Colores y efectos */
  color: rgba(255, 255, 255, 0.7);}

.cookie-modal-footer {
/* Relleno */
  padding: 1.25rem 1.5rem;

  /* Bordes */
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  /* Fondos */
  background: rgba(0, 0, 0, 0.2);}

.cookie-modal-footer-info {
/* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  text-align: center;}

.cookie-modal-footer-info small {
/* Tipografía */
  font-size: 0.8rem;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.5);}

.cookie-modal-footer-actions {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;}

.contact-form {
/* Dimensiones */
  max-width: 600px;

  /* Márgenes */
  margin: 0 auto 2rem;

  /* Relleno */
  padding: 2rem;

  /* Bordes */
  border-radius: 8px;
  border: 1px solid var(--color-menta);

  /* Fondos */
  background: rgba(6, 14, 58, 0.6);

  /* Colores y efectos */
  box-shadow: 0 0 20px rgba(40, 69, 214, 0.1);}

.form-group {
/* Posicionamiento */
  position: relative;

  /* Márgenes */
  margin-bottom: 1.5rem;}

.form-group input, .form-group textarea {
/* Dimensiones */
  width: 100%;

  /* Relleno */
  padding: 12px 15px;

  /* Bordes */
  border: 1px solid #333;
  border-radius: 4px;

  /* Fondos */
  background: rgba(30, 40, 50, 0.6);

  /* Tipografía */
  font-size: 1rem;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.form-group input:focus, .form-group textarea:focus {
/* Bordes */
  border-color: var(--color-menta);

  /* Colores y efectos */
  box-shadow: 0 0 8px rgba(40, 69, 214, 0.3);

  /* Otras propiedades */
  outline: none;}

.form-group label {
/* Posicionamiento */
  position: absolute;
  top: -10px;
  left: 10px;

  /* Relleno */
  padding: 0 8px;

  /* Fondos */
  background: var(--color-background-dark);

  /* Tipografía */
  font-size: 0.85rem;

  /* Colores y efectos */
  color: var(--color-menta);}

.form-group input::placeholder, .form-group textarea::placeholder {
/* Colores y efectos */
  color: rgba(255, 255, 255, 0.5);}

.contact-form .cta-button {
/* Dimensiones */
  width: 100%;

  /* Relleno */
  padding: 12px 20px;

  /* Bordes */
  border: none;
  border-radius: 4px;

  /* Fondos */
  background: linear-gradient(90deg, var(--color-naranja) 0%, #E06A30 100%);

  /* Tipografía */
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;

  /* Colores y efectos */
  color: var(--color-background-dark);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  letter-spacing: 1px;}

.contact-form .cta-button:hover {
/* Fondos */
  background: linear-gradient(90deg, #FF9A6C 0%, #F68048 100%);

  /* Colores y efectos */
  box-shadow: 0 4px 12px rgba(40, 69, 214, 0.3);

  /* Otras propiedades */
  transform: translateY(-2px);}

.form-error {
/* Modelo de caja */
  display: block;

  /* Márgenes */
  margin-top: 0.5rem;

  /* Tipografía */
  font-size: 0.85rem;

  /* Colores y efectos */
  color: #ef4444;}

.form-error[hidden] {
/* Modelo de caja */
  display: none;}

.form-group input.error, .form-group textarea.error {
/* Bordes */
  border-color: #ef4444;

  /* Colores y efectos */
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);}

.form-group input.success, .form-group textarea.success {
/* Bordes */
  border-color: #22c55e;

  /* Colores y efectos */
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);}

.form-submit-btn {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  /* Dimensiones */
  min-width: 180px;}

.form-submit-btn:disabled {
/* Colores y efectos */
  opacity: 0.7;

  /* Interactividad */
  cursor: not-allowed;}

.form-submit-btn .btn-loading {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 0.5rem;}

.form-submit-btn .btn-loading[hidden] {
/* Modelo de caja */
  display: none;}

.form-submit-btn .btn-text[hidden] {
/* Modelo de caja */
  display: none;}

.spinner {
/* Transiciones y animaciones */
  animation: spin 1s linear infinite;}

.toast-container {
/* Posicionamiento */
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9998;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: 0.75rem;

  /* Dimensiones */
  max-width: 400px;}

.toast {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: flex-start;
  gap: 0.75rem;

  /* Relleno */
  padding: 1rem 1.25rem;

  /* Bordes */
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);

  /* Fondos */
  background: rgba(15, 23, 42, 0.95);

  /* Colores y efectos */
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  color: #fff;

  /* Transiciones y animaciones */
  animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Otras propiedades */
  backdrop-filter: blur(10px);}

.toast.toast-exit {
/* Transiciones y animaciones */
  animation: toastSlideOut 0.3s ease forwards;}

.toast-icon {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 24px;
  height: 24px;

  /* Bordes */
  border-radius: 50%;}

.toast-success .toast-icon {
/* Fondos */
  background: rgba(34, 197, 94, 0.2);

  /* Colores y efectos */
  color: #22c55e;}

.toast-error .toast-icon {
/* Fondos */
  background: rgba(239, 68, 68, 0.2);

  /* Colores y efectos */
  color: #ef4444;}

.toast-info .toast-icon {
/* Fondos */
  background: rgba(59, 130, 246, 0.2);

  /* Colores y efectos */
  color: #3b82f6;}

.toast-content {
/* Flexbox y Grid */
  flex: 1;}

.toast-title {
/* Márgenes */
  margin-bottom: 0.25rem;

  /* Tipografía */
  font-weight: 600;
  font-size: 0.95rem;}

.toast-message {
/* Tipografía */
  font-size: 0.875rem;
  line-height: 1.4;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.7);}

.toast-close {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-shrink: 0;
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 24px;
  height: 24px;

  /* Bordes */
  border: none;
  border-radius: 4px;

  /* Fondos */
  background: transparent;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.5);

  /* Transiciones y animaciones */
  transition: all 0.2s;

  /* Interactividad */
  cursor: pointer;}

.toast-close:hover {
/* Fondos */
  background: rgba(255, 255, 255, 0.1);

  /* Colores y efectos */
  color: #fff;}

.toast-success {
/* Bordes */
  border-color: rgba(34, 197, 94, 0.3);}

.toast-error {
/* Bordes */
  border-color: rgba(239, 68, 68, 0.3);}

.back-to-top {
/* Posicionamiento */
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 48px;
  height: 48px;

  /* Bordes */
  border: none;
  border-radius: 50%;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-menta, #2845D6) 0%, #1A2CA3 100%);

  /* Colores y efectos */
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(40, 69, 214, 0.4);
  opacity: 0;

  /* Transiciones y animaciones */
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  visibility: hidden;
  transform: translateY(20px);}

.back-to-top.visible {
/* Colores y efectos */
  opacity: 1;

  /* Otras propiedades */
  visibility: visible;
  transform: translateY(0);}

.back-to-top:hover {
/* Fondos */
  background: linear-gradient(135deg, #FF9A6C 0%, #F68048 100%);

  /* Colores y efectos */
  box-shadow: 0 8px 30px rgba(40, 69, 214, 0.5);

  /* Otras propiedades */
  transform: translateY(-4px);}

.back-to-top:focus {
/* Otras propiedades */
  outline: 2px solid var(--color-naranja, #F68048);
  outline-offset: 3px;}

.back-to-top:active {
/* Otras propiedades */
  transform: translateY(-2px);}

.toast-container~.back-to-top, .back-to-top:has(~ .toast-container .toast) {
/* Posicionamiento */
  bottom: calc(2rem + 80px);}

.whatsapp-float {
/* Posicionamiento */
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1000;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 60px;
  height: 60px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: #25D366;

  /* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);

  /* Transiciones y animaciones */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s infinite;

  /* Interactividad */
  cursor: pointer;}

.whatsapp-float svg {
/* Dimensiones */
  width: 36px;
  height: 36px;

  /* Otras propiedades */
  fill: white;}

.whatsapp-float:hover {
/* Colores y efectos */
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);

  /* Transiciones y animaciones */
  animation: none;

  /* Otras propiedades */
  transform: scale(1.12);}

.whatsapp-float:active {
/* Otras propiedades */
  transform: scale(1.05);}

.whatsapp-float .whatsapp-tooltip {
/* Posicionamiento */
  position: absolute;
  bottom: 70px;
  left: 50%;

  /* Relleno */
  padding: 8px 14px;

  /* Bordes */
  border-radius: 8px;
  border: 1px solid rgba(37, 211, 102, 0.4);

  /* Fondos */
  background: #1a1a2e;

  /* Tipografía */
  font-size: 0.8rem;

  /* Colores y efectos */
  color: #fff;
  opacity: 0;

  /* Transiciones y animaciones */
  transition: opacity 0.3s ease;

  /* Interactividad */
  pointer-events: none;

  /* Otras propiedades */
  transform: translateX(-50%);
  white-space: nowrap;}

.whatsapp-float .whatsapp-tooltip::after {
/* Posicionamiento */
  position: absolute;
  top: 100%;
  left: 50%;

  /* Bordes */
  border: 6px solid transparent;

  /* Otras propiedades */
  content: '';
  transform: translateX(-50%);
  border-top-color: #1a1a2e;}

.whatsapp-float:hover .whatsapp-tooltip {
/* Colores y efectos */
  opacity: 1;}

.mobile-menu-toggle {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: none;

  /* Dimensiones */
  width: 30px;
  height: 24px;

  /* Bordes */
  border: none;

  /* Fondos */
  background: none;

  /* Interactividad */
  cursor: pointer;}

.hamburger-icon, .hamburger-icon::before, .hamburger-icon::after {
/* Posicionamiento */
  position: absolute;

  /* Dimensiones */
  height: 3px;
  width: 100%;

  /* Bordes */
  border-radius: 2px;

  /* Fondos */
  background: var(--color-menta);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Otras propiedades */
  content: '';}

.hamburger-icon {
/* Posicionamiento */
  top: 50%;

  /* Otras propiedades */
  transform: translateY(-50%);}

.hamburger-icon::before {
/* Posicionamiento */
  top: -8px;}

.hamburger-icon::after {
/* Posicionamiento */
  bottom: -8px;}