/*--------------------------------------------------------------
# General - Tipografía Moderna y Elegante
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&family=Roboto:wght@300;400;500;700;900&family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

/* ========================================
   SISTEMA DE COLORES CONSISTENTE
======================================== */

:root {
   /* Colores primarios con blanco */
   --primary-blue: #3498db;
   --primary-green: #2ecc71;
   --primary-dark: #2c3e50;
   --primary-light: #ffffff;
   --primary-off-white: #f8fafc;
   
   /* Colores secundarios con blanco */
   --secondary-blue: #2980b9;
   --secondary-green: #27ae60;
   --secondary-gray: #ecf0f1;
   --secondary-dark: #34495e;
   --secondary-white: #ffffff;
   
   /* Colores de acento (rojo solo para alertas) */
   --accent-blue: #1cadd1;
   --accent-orange: #f39c12;
   --accent-red: #e74c3c; /* Solo para alertas/errores */
   --accent-purple: #9b59b6;
   --accent-white: #ffffff;
   
   /* Gradientes con blanco */
   --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
   --gradient-secondary: linear-gradient(135deg, var(--secondary-blue) 0%, var(--secondary-green) 100%);
   --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-blue) 100%);
   --gradient-white-blue: linear-gradient(135deg, #ffffff 0%, var(--primary-blue) 100%);
   --gradient-white-green: linear-gradient(135deg, #ffffff 0%, var(--primary-green) 100%);
   --gradient-soft: linear-gradient(135deg, #ffffff 0%, var(--primary-off-white) 100%);
   
   /* Grises con más blancos */
   --gray-50: #f8fafc;
   --gray-100: #f1f5f9;
   --gray-200: #e2e8f0;
   --gray-300: #cbd5e1;
   --gray-400: #94a3b8;
   --gray-500: #64748b;
   --gray-600: #475569;
   --gray-700: #334155;
   --gray-800: #1e293b;
   --gray-900: #0f172a;
   --white: #ffffff;
   --off-white: #fefefe;
   
   /* Sombras suaves */
   --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
   --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
   --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
   --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
   --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
   --shadow-white: 0 4px 20px rgba(255, 255, 255, 0.3);
   
   /* Espaciado */
   --spacing-xs: 0.25rem;
   --spacing-sm: 0.5rem;
   --spacing-md: 1rem;
   --spacing-lg: 1.5rem;
   --spacing-xl: 2rem;
   --spacing-2xl: 3rem;
   --spacing-3xl: 4rem;
   
   /* Bordes */
   --border-radius-sm: 0.375rem;
   --border-radius-md: 0.5rem;
   --border-radius-lg: 0.75rem;
   --border-radius-xl: 1rem;
   --border-radius-2xl: 1.5rem;
   
   /* Transiciones */
   --transition-fast: 0.15s ease-in-out;
   --transition-normal: 0.3s ease-in-out;
   --transition-slow: 0.5s ease-in-out;
 }

/*--------------------------------------------------------------
# General - Optimización de Rendimiento
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-700);
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
  font-kerning: normal;
  font-variant-ligatures: common-ligatures;
  overflow-x: hidden;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* Optimización de imágenes */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
  -ms-interpolation-mode: bicubic;
}

/* Optimización de enlaces */
a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
}

a:hover,
a:focus {
  color: var(--secondary-blue);
  outline: none;
}

/* Optimización de botones */
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-tap-highlight-color: transparent;
}

button:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Optimización de formularios */
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius-md);
  padding: var(--spacing-sm) var(--spacing-md);
  transition: var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

/* Optimización de listas */
ul,
ol {
  list-style: none;
}

/* Optimización de títulos */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
}

/* Optimización de párrafos */
p {
  margin-bottom: var(--spacing-md);
  color: var(--gray-600);
  line-height: 1.7;
}

/* Preload crítico */
.preload {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Lazy loading */
.lazy {
  opacity: 0;
  transition: opacity 0.3s;
}

.lazy.loaded {
  opacity: 1;
}

/* Optimización de scroll */
.smooth-scroll {
  scroll-behavior: smooth;
}

/* Reducir motion para usuarios sensibles */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 60px;
  }
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #334155;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.2px;
  font-size: 16px;
}

/* Mejoras en párrafos */
p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

/* Párrafos destacados */
.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #334155;
  line-height: 1.7;
}

/* Texto pequeño */
small, .small {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

a {
  color: #3b82f6;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

a:hover {
  color: #1d4ed8;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Headings - Tipografía Mejorada y Jerarquía Visual
--------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", "Poppins", serif;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-shadow: 0 4px 8px rgba(59, 130, 246, 0.1);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.75rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #334155;
  margin-bottom: 1.5rem;
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: #475569;
  margin-bottom: 1.25rem;
}

h5 {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #64748b;
  margin-bottom: 1rem;
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

/* Títulos de sección mejorados */
.section-title h2 {
  text-align: center;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 2px;
}

.section-title p {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Mejoras en listas */
ul, ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: #475569;
}

/* Blockquotes mejorados */
blockquote {
  font-size: 1.25rem;
  font-style: italic;
  color: #475569;
  border-left: 4px solid #3b82f6;
  padding-left: 1.5rem;
  margin: 2rem 0;
  background: rgba(59, 130, 246, 0.05);
  padding: 1.5rem;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
}

.spiner {
  width: 70px;
  height: 70px;
  border-top: 5px solid #60a5fa;
  border-right: 5px solid transparent;
  border-radius: 50%;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 100000;
  box-shadow: 0 0 30px rgba(96, 165, 250, 0.5);
}
.spiner > div {
  box-sizing: border-box;
  margin: auto;
  width: 125%;
  height: 125%;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #1d4ed8, #1e40af);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s ease;
  z-index: 997;
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

#header .logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(52, 152, 219, 0.5));
}

#header .logo a {
  color: inherit;
  text-decoration: none;
}

#header .logo img {
  max-height: 75px;
  transition: all 0.3s ease;
  filter: brightness(1.1);
}

#header .logo img:hover {
  transform: scale(1.05);
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/*--------------------------------------------------------------
# contacto boton 
--------------------------------------------------------------*/
.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #3498db;
  font-weight: 600;
}

/*--------------------------------------------------------------
# contacto section visibility 
--------------------------------------------------------------*/
#contacto {
  display: none;
  transition: all 0.3s ease-in-out;
}

#contacto.show {
  display: block;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #31a9e1;
}

@media (max-width: 992px) {
  .book-a-table-btn {
    margin: 0 15px 0 0;
    padding: 8px 20px;
  }
}
/*--------------------------------------------------------------
# Navigation Menu - Mejorado
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
  margin: 0 5px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  font-weight: 500;
  border-radius: 25px;
  position: relative;
  overflow: hidden;
}

.navbar a::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.5s;
}

.navbar a:hover::before {
  left: 100%;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
  background: linear-gradient(135deg, #3498db, #2980b9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.navbar a:hover i {
  transform: translateX(3px);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: rgb(0, 0, 0);
  box-shadow: 0px 0px 30px rgba(41, 81, 173, 0.25);
  transition: 0.3s;
  border-radius: 30px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #ffffff;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #0a8ee6;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgb(0 0 0 / 90%);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #000;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 17px;
  color: #fff;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #3498db;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #ffffff;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #000;
  box-shadow: 0px 0px 30px #3498db;
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3498db;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section - Espaciado Mejorado
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  background: var(--gradient-white-blue);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0 60px 0;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
  opacity: 0.8;
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 2;
}

.container .planes {  
  color: var(--gray-600);
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary-dark);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero h2 {
  color: var(--gray-600);
  margin-bottom: 30px;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--gray-600) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px 0 0 0;
  color: var(--white);
  background: var(--gradient-primary);
  border: 2px solid transparent;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

#hero .btn-get-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-white-blue);
  transition: left 0.5s;
}

#hero .btn-get-started:hover::before {
  left: 100%;
}

#hero .btn-get-started:hover {
  color: var(--primary-blue);
  background: var(--white);
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

#hero .btn-watch-video {
  font-size: 16px;
  transition: all 0.3s ease;
  margin-left: 25px;
  color: var(--primary-blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  text-decoration: none;
}

#hero .btn-watch-video i {
  color: var(--primary-blue);
  font-size: 32px;
  transition: all 0.3s ease;
  line-height: 0;
  margin-right: 8px;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  padding: 8px;
  box-shadow: var(--shadow-md);
}

/*--------------------------------------------------------------
# Hero de Planes (Carrusel)
--------------------------------------------------------------*/
.hero-plans {
  padding: 40px 0 24px;
}

/* Override de #hero para versión hero-plans: elimina altura forzada y reduce padding */
#hero.hero-plans {
  min-height: auto !important;
  padding: 12px 0 0 !important;
  display: block !important;
  align-items: unset !important;
}

/* Opcional: si el pseudo-elemento agrega exceso visual, ocultarlo en hero-plans */
#hero.hero-plans::before {
  display: none;
}

.plans-swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.plan-slide {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  height: clamp(260px, 45vh, 520px);
}

.plan-image {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
  cursor: pointer;
}

.plan-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.55) 100%);
}

.plan-title {
  color: #00c4ff;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 36px);
  margin: 0 0 8px 0;
}

.plan-price {
  color: #ffffff;
  font-size: clamp(18px, 2.2vw, 24px);
  margin-bottom: 14px;
}

.btn-plan-cta {
  display: inline-block;
  border-radius: 999px;
  padding: 10px 22px;
  background: linear-gradient(90deg, #0070FE 0%, #00c4ff 100%);
  color: #fff;
  font-weight: 600;
  border: 0;
  box-shadow: 0 8px 20px rgba(0, 112, 254, 0.35);
}

.btn-plan-cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.hero-plans .swiper-button-prev,
.hero-plans .swiper-button-next {
  color: #0070FE;
}

/* Quitar espacios laterales del hero: usar ancho completo y sin padding */
.hero-plans .container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.hero-plans .plans-swiper {
  margin-left: 0;
  margin-right: 0;
}

/* Altura más contenida en móviles */
@media (max-width: 768px) {
  .plan-slide { height: 260px; }
}

.hero-plans .swiper-pagination-bullet {
  background: #0070FE;
}

/* Ocultar overlay cuando el slide usa una imagen estática completa */
.plan-slide.static .plan-overlay {
  display: none;
}

#hero .btn-watch-video:hover {
  color: var(--primary-dark);
  transform: translateY(-2px);
}

#hero .btn-watch-video:hover i {
  color: var(--white);
  background: var(--primary-blue);
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

#hero .animated {
  animation: up-down 1s ease-in-out infinite alternate-reverse both;
}

/* Elementos flotantes mejorados */
.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.floating-elements::before,
.floating-elements::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  animation: float 6s ease-in-out infinite;
}

.floating-elements::before {
  width: 200px;
  height: 200px;
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.floating-elements::after {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

#hero .hero-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  filter: brightness(1.1) contrast(1.05);
}

#hero .hero-img img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

/* Responsive para Hero */
@media (max-width: 991px) {
  #hero {
    min-height: 80vh;
    padding: 60px 0 40px 0;
  }
  
  #hero .container {
    text-align: center;
  }
  
  #hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 15px;
  }
  
  #hero h2 {
    font-size: clamp(1rem, 3vw, 1.3rem);
    margin-bottom: 25px;
  }
  
  #hero .btn-watch-video {
    margin-left: 0;
    margin-top: 15px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #hero {
    min-height: 70vh;
    padding: 40px 0 30px 0;
  }
  
  #hero .btn-get-started {
    padding: 12px 28px;
    font-size: 15px;
  }
  
  #hero .hero-img {
    margin-top: 30px;
  }
  
  #hero .hero-img img {
    max-width: 400px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections - Espaciado Mejorado
--------------------------------------------------------------*/
section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Espaciado y Layout Mejorado
--------------------------------------------------------------*/

/* Espaciado consistente para secciones */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0;
  }
}

/* Espaciado para elementos de contenido */
.content-spacing {
  margin-bottom: 2rem;
}

.content-spacing:last-child {
  margin-bottom: 0;
}

/* Espaciado interno mejorado */
.inner-padding {
  padding: 2rem;
}

@media (max-width: 768px) {
  .inner-padding {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .inner-padding {
    padding: 1rem;
  }
}

/* Márgenes verticales consistentes */
.mb-small { margin-bottom: 1rem; }
.mb-medium { margin-bottom: 2rem; }
.mb-large { margin-bottom: 3rem; }
.mb-xlarge { margin-bottom: 4rem; }

.mt-small { margin-top: 1rem; }
.mt-medium { margin-top: 2rem; }
.mt-large { margin-top: 3rem; }
.mt-xlarge { margin-top: 4rem; }

/* Espaciado para cards y elementos */
.card-spacing {
  margin-bottom: 2rem;
}

.card-spacing:last-child {
  margin-bottom: 0;
}


.section-bg {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 50%, rgba(226, 232, 240, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.3);
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 50%, rgba(30, 64, 175, 0.05) 100%);
  background-size: 400% 400%;
  animation: gradient 15s ease-in-out infinite;
  z-index: -1;
}

.section-ventajas {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 50%, rgba(226, 232, 240, 0.98) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  padding: 60px 0;
}

.section-ventajas::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.08) 0%, rgba(29, 78, 216, 0.08) 50%, rgba(30, 64, 175, 0.08) 100%);
  background-size: 400% 400%;
  animation: gradient 18s ease-in-out infinite;
  z-index: -1;
}

.section-area {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 50%, rgba(226, 232, 240, 0.95) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  padding: 60px 0;
}

.section-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.06) 0%, rgba(29, 78, 216, 0.06) 50%, rgba(30, 64, 175, 0.06) 100%);
  background-size: 400% 400%;
  animation: gradient 20s ease-in-out infinite;
  z-index: -1;
}

.section-team {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 50%, rgba(226, 232, 240, 0.98) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  padding: 60px 0;
}

.section-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.07) 0%, rgba(29, 78, 216, 0.07) 50%, rgba(30, 64, 175, 0.07) 100%);
  background-size: 400% 400%;
  animation: gradient 16s ease-in-out infinite;
  z-index: -1;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.section-title {
  text-align: center;
  padding-bottom: 60px;
}



.section-title b {
  margin-bottom: 0;
  color: #000;
}


.section-title h3 {
  font-size: 23px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0px;
  padding-bottom: 0px;
  position: relative;
  color: #000000;
}



/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 50%, rgba(226, 232, 240, 0.98) 100%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  padding: 80px 0;
}

.clients::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, rgba(29, 78, 216, 0.05) 50%, rgba(30, 64, 175, 0.05) 100%);
  background-size: 400% 400%;
  animation: gradient 18s ease-in-out infinite;
  z-index: -1;
}

.clients .swiper-slide img {
  opacity: 0.7;
  transition: 0.3s;
  filter: brightness(1.1) contrast(1.05);
}

.clients .swiper-slide:hover img {
  opacity: 1;
  transform: scale(1.05);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0880e8;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0880e8;
}

.clients .owl-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.clients .owl-item img {
  width: 60%;
  opacity: 0.7;
  transition: 0.3s;
  filter: brightness(1.1) contrast(1.05);
}

.clients .owl-item img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.clients .owl-nav,
.clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.clients .owl-dot.active {
  background-color: #0880e8 !important;
}

/*--------------------------------------------------------------
# About Section - Espaciado Mejorado
--------------------------------------------------------------*/
#about,
#nosotros,
#misionyvision {
  padding: 100px 0;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

#about::before,
#nosotros::before,
#misionyvision::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(52, 152, 219, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  z-index: 1;
}

#about .container,
#nosotros .container,
#misionyvision .container {
  max-width: 1200px;
  position: relative;
  z-index: 2;
}

#about .content,
#nosotros .content,
#misionyvision .content {
  padding: 0 2rem;
}

#about h3,
#nosotros h3,
#misionyvision h3,
.about .content h3 {
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-dark);
  margin-bottom: 2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#about p,
#nosotros p,
#misionyvision p,
.about .content p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

/* Corrección de contraste para títulos en Misión y Visión */
#nosotros .content h2,
#misionyvision .content h2 {
  color: var(--primary-dark);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
  text-shadow: none;
}

#about ul,
#nosotros ul,
.about .content ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

#about ul li,
#nosotros ul li,
.about .content ul li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
  position: relative;
  padding-left: 2rem;
  color: var(--gray-600);
  font-size: 1.05rem;
  transition: var(--transition-fast);
}

#about ul li:hover,
#nosotros ul li:hover {
  color: var(--primary-dark);
  padding-left: 2.5rem;
}

#about ul li:before,
#nosotros ul li:before,
.about .content ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-blue);
  font-weight: bold;
  font-size: 1.2rem;
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}

#about ul li:hover:before,
#nosotros ul li:hover:before {
  background: var(--primary-blue);
  color: var(--white);
  transform: scale(1.1);
}

#about ul li:last-child,
#nosotros ul li:last-child,
.about .content ul li:last-child {
  border-bottom: none;
}

.about .content ul li + li {
  margin-top: 0;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: var(--primary-blue);
  line-height: 1;
}

#about p:last-child,
#nosotros p:last-child,
.about .content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  #about,
  #nosotros,
  #misionyvision {
    padding: 80px 0;
  }
  
  #about .content,
  #nosotros .content,
  #misionyvision .content {
    padding: 0 1rem;
  }
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: var(--transition-normal);
  line-height: 1;
  color: var(--primary-blue);
  animation-delay: 0.8s;
  margin-top: 20px;
  border: 2px solid var(--primary-blue);
  background: var(--white);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.about .content .btn-learn-more::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
  z-index: -1;
}

.about .content .btn-learn-more:hover {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.about .content .btn-learn-more:hover::before {
  left: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 10px 100px 0 100px;
}

.why-us .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: #37517e;
}

.why-us .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.why-us .content p {
  font-size: 15px;
  color: #848484;
}

.why-us .img {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.why-us .accordion-list {
  padding: 0 100px 0px 100px;
}

.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}

.why-us .accordion-list li + li {
  margin-top: 15px;
}

.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}

.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}

.why-us .accordion-list span {
  color: #3498db;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}

.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.why-us .accordion-list .icon-show {
  display: none;
}

.why-us .accordion-list a.collapsed {
  color: #343a40;
}

.why-us .accordion-list a.collapsed:hover {
  color: #3498db;
}

.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}

.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 992px) {
  .why-us .img {
    min-height: 400px;
  }
  .why-us .content {
    padding-top: 30px;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .why-us .img {
    min-height: 200px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}

.skills .content ul {
  list-style: none;
  padding: 0;
}

.skills .content ul li {
  padding-bottom: 10px;
}

.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #3498db;
}

.skills .content p:last-child {
  margin-bottom: 0;
}

.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: .9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgb(0 231 255 / 52%);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  border-radius: 5px;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #3498db;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #3498db;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgb(10 102 18 / 56%), rgb(0 0 0 / 90%)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

.cta .cta-btn:hover {
  background: #27ae60; /* Cambiado de #28D146 a verde más formal */
  border: 3px solid #2ecc71; /* Cambiado de #08fc1c a verde más suave */
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}


/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.area #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #3498db;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgb(0 0 0 / 80%);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #3498db;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 5px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 10px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #3498db;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #3498db;
}

.portfolio-details .portfolio-info {
  padding: 5px;
  box-shadow: 0px 0 20px rgb(3 197 255);
}

.portfolio-details .portfolio-info h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 4px solid rgb(23, 222, 236);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 15px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #3498db;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Planes - Diseño Profesional Inspirado en Selectra
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 80px 0;
  position: relative;
  min-height: auto;
  overflow: visible;
}

.pricing .container {
  max-width: 1200px;
}

.pricing .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.pricing .col-lg-3 {
  flex: 0 0 calc(25% - 15px);
  max-width: calc(25% - 15px);
  display: flex;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.03), transparent 50%);
  pointer-events: none;
}

.pricing .box {
  padding: 35px 25px;
  text-align: center;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 0;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pricing .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 16px 16px 0 0;
}

.pricing .box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #d1d5db;
}

.pricing .box:hover::before {
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #0891b2);
}

.pricing h3 {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 16px;
  color: #1f2937;
  font-family: 'Poppins', sans-serif;
  line-height: 1.3;
}

.pricing .price {
  font-size: 42px;
  color: #3b82f6;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  line-height: 1;
}

.pricing .price sup {
  font-size: 20px;
  top: -18px;
  left: -3px;
  font-weight: 600;
}

.pricing .price span {
  color: #6b7280;
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

.pricing img {
  padding: 12px;
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
  background: #f3f4f6;
  border-radius: 12px;
  margin: 16px auto 20px auto;
  border: 1px solid #e5e7eb;
  display: block;
  transition: all 0.3s ease;
  /* Corrección de alineación */
  vertical-align: middle;
  text-align: center;
  align-self: center;
  justify-self: center;
}

.pricing .box:hover img {
  transform: scale(1.05);
  background: #eff6ff;
  border-color: #dbeafe;
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: #4b5563;
  text-align: left;
  line-height: 28px;
  font-size: 15px;
  margin: 24px 0;
  font-weight: 500;
}

.pricing ul li {
  padding: 6px 0;
  position: relative;
  padding-left: 28px;
}

.pricing ul li i {
  color: #10b981;
  font-size: 16px;
  position: absolute;
  left: 0;
  top: 8px;
}

.pricing ul .na {
  color: #9ca3af;
  text-decoration: line-through;
}

.pricing .btn-buy {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
  border: none;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.pricing .btn-buy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  transition: all 0.3s ease;
  z-index: -1;
}

.pricing .btn-buy:hover::before {
  left: 0;
}

.pricing .btn-buy:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.3);
  color: #fff;
  text-decoration: none;
}

.pricing .featured {
  width: 140px;
  height: 35px;
  position: absolute;
  top: 18px;
  right: -28px;
  transform: rotate(45deg);
  transform-origin: center center;
  z-index: 2;
  font-size: 9px;
  padding: 0;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1px;
  box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible;
}

/* Colores específicos para cada plan */
/* Plan 1 - Hogar Básico - Verde */
.pricing .plan-1 .featured {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

/* Plan 2 - Hogar Premium - Azul */
.pricing .plan-2 .featured {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

/* Plan 3 - Familiar Completo - Púrpura */
.pricing .plan-3 .featured {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Plan 4 - Empresarial Pro - Rojo/Rosa */
.pricing .plan-4 .featured {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

/* Efectos especiales para el plan premium */
.pricing .box:nth-child(2) {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.02), rgba(255, 255, 255, 0.98));
  border: 2px solid #e91e63;
  box-shadow: 0 15px 35px rgba(233, 30, 99, 0.15);
}

.pricing .box:nth-child(2):hover {
  background: linear-gradient(135deg, rgba(233, 30, 99, 0.05), rgba(255, 255, 255, 1));
  border-color: #c2185b;
  box-shadow: 0 25px 50px rgba(233, 30, 99, 0.25);
}

.pricing .box:nth-child(2)::before {
  background: linear-gradient(135deg, #e91e63, #f06292);
}

.pricing .box:nth-child(2) .featured {
  background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* Estilos responsivos para mejor visualización */
@media (max-width: 1200px) {
  .pricing .col-lg-3 {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
  
  .pricing .box {
    margin-bottom: 20px;
    min-height: 480px;
  }
}

@media (max-width: 992px) {
  .pricing {
    padding: 60px 0;
  }
  
  .pricing .row {
    gap: 15px;
  }
  
  .pricing .col-lg-3 {
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
  }
  
  .pricing .box {
    padding: 35px 20px;
    margin-bottom: 15px;
    min-height: 450px;
  }
  
  .pricing h3 {
    font-size: 22px;
  }
  
  .pricing .price {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 50px 0;
  }
  
  .pricing .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .pricing .row {
    gap: 20px;
  }
  
  .pricing .box {
    padding: 35px 20px;
    margin-bottom: 0;
    min-height: 420px;
  }
  
  .pricing h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .pricing .price {
    font-size: 36px;
    margin-bottom: 15px;
  }
  
  .pricing img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .pricing ul {
    font-size: 14px;
    margin: 20px 0;
  }
  
  .pricing .btn-buy {
    padding: 12px 30px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .pricing {
    padding: 40px 0;
  }
  
  .pricing .box {
    padding: 30px 15px;
    min-height: 400px;
  }
  
  .pricing h3 {
    font-size: 18px;
  }
  
  .pricing .price {
    font-size: 32px;
  }
  
  .pricing img {
    width: 70px;
    height: 70px;
  }
  
  .pricing ul {
    font-size: 13px;
    line-height: 28px;
  }
  
  .pricing .btn-buy {
    padding: 10px 25px;
    font-size: 13px;
  }
  
  .pricing .featured {
    width: 100px;
    font-size: 10px;
    padding: 6px 0;
  }
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #3498db;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #3498db;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(241, 245, 249, 0.98) 50%, rgba(226, 232, 240, 0.98) 100%);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(59, 130, 246, 0.08);
  position: relative;
  padding: 80px 0;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.06) 0%, rgba(29, 78, 216, 0.06) 50%, rgba(30, 64, 175, 0.06) 100%);
  background-size: 400% 400%;
  animation: gradient 18s ease-in-out infinite;
  z-index: -1;
}

.contact .section-title h2 {
  color: #0f172a;
}

.contact .info {
  padding: 30px;
  background: #fff;
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(52, 152, 219, 0.15);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
}

.contact .info i {
  font-size: 20px;
  color: #3498db;
  float: left;
  width: 44px;
  height: 44px;
  background: #ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #000000;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: #3498db;
  color: #fff;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #3498db;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(52, 152, 219, 0.15);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
  margin-bottom: 20px;
}

.contact .php-email-form label {
  padding-bottom: 8px;
  color: #1e293b;
  font-weight: 600;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #3498db;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form textarea::placeholder {
  color: #94a3b8;
  opacity: 1;
}

.contact .php-email-form button[type="submit"] {
  background: #3498db;
  border: 0;
  padding: 12px 34px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #209dd8;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 25px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  /* Fondo coherente con el estilo del footer para evitar el negro */
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}

#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3498db;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #209dd8;
}

#footer .footer-top {
  padding: 40px 0 20px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3498db 100%);
  position: relative;
  overflow: hidden;
}

#footer .footer-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

#footer .footer-top .container {
  position: relative;
  z-index: 2;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 32px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

#footer .footer-top .footer-contact p {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
  font-family: "Jost", sans-serif;
  color: #f8f9fa;
  font-weight: 400;
}

#footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#footer .footer-top h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 2px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #3498db;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #f8f9fa;
  transition: all 0.3s ease;
  display: inline-block;
  line-height: 1.5;
  font-weight: 400;
  text-decoration: none;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #ffd700;
  transform: translateX(5px);
}

#footer .footer-top .social-links a {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  text-align: center;
  width: 45px;
  height: 45px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

#footer .footer-top .social-links a:hover {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #2c3e50;
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

#footer .footer-bottom {
  padding: 25px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #ecf0f1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

#footer .copyright {
  float: left;
  font-weight: 400;
  font-size: 14px;
}

#footer .credits {
  float: right;
  padding-left: 0.5rem;
  font-size: 14px;
  font-weight: 400;
}

#footer .credits a {
  transition: all 0.3s ease;
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}

#footer .credits a:hover {
  color: #ffed4e;
  text-decoration: none;
}

#footer .credits .bx-heart {
  color: #e74c3c;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}


.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:17px;
	right:70px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}

/*--------------------------------------------------------------
# Sliders
--------------------------------------------------------------*/
.slider {
  width: 80vw;
  height: auto;
  margin: auto;
  overflow: hidden;
}

.slider .slide-track {
  display: flex;
  animation: scroll 20s linear infinite;
  -webkit-animation: scroll 20s linear infinite;
  width: calc(250px * 14);
}

.slider .slide {
  width: 200px;
}

.slider .slide img {
  width: 80%;
}

@keyframes scroll {
  0% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
  }
  100% {
      -webkit-transform: translateX(calc(-200px * 7));
      transform: translateX(calc(-200px * 7));
  }
}

/* --- --- CONTENEDOR PRINCIPAL --- --- */

.contenido-principal {
	margin-bottom: 0px;
	display: flex;
	align-items: center;
}

.contenido-principal__imagen {
	vertical-align: top;
	margin-right: 20px;
	width: 50%;
	max-width: 550px;
}

.contenido-principal__contenedor {
	width: 50%;
}

.contenido-principal__titulo {
	font-weight: normal;
	font-size: 28px;
}

.contenido-principal__resumen {
	font-family: 'Open Sans', sans-serif;
	line-height: 30px;
	color: #000000;
}

/* --- --- lugares disponibles --- --- */
.carousel__contenedor {
	position: relative;
}

.carousel__anterior,
.carousel__siguiente {
	position: absolute;
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	top: calc(50% - 35px);
	cursor: pointer;
	line-height: 30px;
	text-align: center;
	background: #000000;
	color: #fff;
	opacity: 20%;
}

.carousel__anterior:hover,
.carousel__siguiente:hover {
	opacity: 100%;
}

.carousel__anterior {
	left: -45px;
}

.carousel__siguiente {
	right: -45px;
}

.carousel__lista {
	overflow: hidden;
}

.carousel__elemento {
	text-align: center;
}

.carousel__indicadores .glider-dot {
	display: block;
	width: 35px;
	height: 4px;
	background: #000000;
	opacity: .4;
	border-radius: 0;
}

.carousel__indicadores .glider-dot:hover {
	opacity: .5;
}

.carousel__indicadores .glider-dot.active {
	opacity: 1;
  background: #000000;
}

@media screen and (max-width: 800px) {
	body {
		padding: 0px 0;
	}

	.contenido-principal {
		flex-direction: column;
	}

	.contenido-principal > * {
		width: 100%;
	}
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
 
  background-size: cover;
  position: relative;
}

.events::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(45deg,  #42abb163, #42abb161, #15638187);
  background-size: 400% 400%;
  animation: gradient 12s ease-in infinite;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.events .container {
  position: relative;
}

@media (min-width: 1024px) {
  .events {
    background-attachment: fixed;
  }
}

.events .events-carousel {
  background: rgba(255, 255, 255, 0.08);
  padding: 30px;
}

.events .event-item {
  color: #000105;
}

.events .event-item h3 {
  font-weight: 600;
  font-size: 30px;
  color: #000000;
}

.events .event-item .price {
  font-size: 26px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 15px;
}

.events .event-item .price span {
  border-bottom: 2px solid #0e3db6;
}

.events .event-item ul {
  list-style: none;
  padding: 0;
}

.events .event-item ul li {
  padding-bottom: 10px;
}

.events .event-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #0e3db6;
}

.events .event-item p:last-child {
  margin-bottom: 0;
}

.events .swiper-pagination {
  margin-top: 30px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0e3db6;
}

/*--------------------------------------------------------------
# Mejoras de Accesibilidad y Contraste
--------------------------------------------------------------*/

/* Asegurar contraste adecuado para texto */
.text-high-contrast {
  color: #1e293b;
  background: #ffffff;
}

.text-medium-contrast {
  color: #334155;
  background: #f8fafc;
}

/* Mejoras de accesibilidad para enlaces */
a:focus {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Mejoras de accesibilidad para botones */
.btn:focus {
  outline: 3px solid #3b82f6;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

/* Estados de hover más accesibles */
.btn:hover {
  text-decoration: none;
}

/* Mejoras para elementos interactivos */
.interactive:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Contraste mejorado para texto sobre fondos oscuros */
.dark-bg {
  background: #1e293b;
  color: #ffffff;
}

.dark-bg a {
  color: #93c5fd;
}

.dark-bg a:hover {
  color: #dbeafe;
}

/* Mejoras para formularios accesibles */
.form-label {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
}

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.form-success {
  color: #059669;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* Indicadores de estado accesibles */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Mejoras para navegación accesible */
.nav-link:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
}

/* Mejoras para cards accesibles */
.card:focus-within {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Mejoras para skip links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: #1e293b;
  color: #ffffff;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Mejoras para modo de alto contraste */
@media (prefers-contrast: high) {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .btn-primary {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
  }
  
  .btn-primary:hover {
    background: #333333;
    border-color: #333333;
  }
  
  a {
    color: #0000ee;
    text-decoration: underline;
  }
  
  a:visited {
    color: #551a8b;
  }
  
  a:hover {
    color: #0000ee;
    text-decoration: underline;
  }
}

/* Mejoras para reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mejoras para modo oscuro */
@media (prefers-color-scheme: dark) {
  body {
    background: #0f172a;
    color: #e2e8f0;
  }
  
  .card {
    background: #1e293b;
    border-color: #334155;
  }
  
  .form-control {
    background: #1e293b;
    border-color: #334155;
    color: #e2e8f0;
  }
}

/* ========================================
   MEJORAS RESPONSIVE COMPLETAS
======================================== */

/* Mejoras responsive globales */
@media (max-width: 1200px) {
  .container {
    max-width: 95%;
    padding: 0 20px;
  }
  
  #hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
  }
  
  #hero h2 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
  }
}

@media (max-width: 992px) {
  /* Header responsive */
  #header {
    padding: 15px 0;
  }
  
  #header .logo {
    font-size: 28px;
  }
  
  /* Navegación móvil mejorada */
  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: 0.3s;
    z-index: 999;
    margin-top: 0;
    transform: translateX(100%);
  }
  
  .navbar-mobile.navbar-mobile-active {
    transform: translateX(0);
  }
  
  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.3s;
    z-index: 1001;
  }
  
  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 1000;
  }
  
  .navbar-mobile a {
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 8px;
    margin: 5px 10px;
    display: block;
    transition: all 0.3s ease;
  }
  
  .navbar-mobile a:hover {
    background: rgba(52, 152, 219, 0.2);
    transform: translateX(10px);
  }
  
  /* Hero responsive */
  #hero {
    min-height: 80vh;
    padding: 80px 0 60px 0;
    text-align: center;
  }
  
  #hero .container {
    flex-direction: column;
  }
  
  #hero .hero-img {
    order: -1;
    margin-bottom: 40px;
  }
  
  /* Servicios responsive */
  .services .row {
    margin: 0 -10px;
  }
  
  .services .col-xl-4,
  .services .col-md-6 {
    padding: 0 10px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  /* Tipografía móvil */
  body {
    font-size: 14px;
    line-height: 1.6;
  }
  
  h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  h2 {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  
  h3 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }
  
  /* Header móvil */
  #header {
    padding: 12px 0;
  }
  
  #header .logo {
    font-size: 24px;
  }
  
  #header .logo img {
    max-height: 60px;
  }
  
  /* Hero móvil */
  #hero {
    min-height: 70vh;
    padding: 60px 0 40px 0;
  }
  
  #hero h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  
  #hero h2 {
    font-size: clamp(1rem, 4vw, 1.2rem);
    margin-bottom: 25px;
  }
  
  #hero .btn-get-started,
  #hero .btn-watch-video {
    padding: 12px 25px;
    font-size: 14px;
    margin: 10px 5px;
    display: inline-block;
    width: auto;
    min-width: 160px;
  }
  
  #hero .hero-img img {
    max-width: 350px;
    width: 90%;
  }
  
  /* Secciones móviles */
  section {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }
  
  .section-title p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  /* Contenedor móvil */
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 576px) {
  /* Espaciado móvil pequeño */
  section {
    padding: 40px 0;
  }
  
  /* Hero móvil pequeño */
  #hero {
    min-height: 60vh;
    padding: 40px 0 30px 0;
  }
  
  #hero .btn-get-started,
  #hero .btn-watch-video {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 10px auto;
  }
  
  #hero .hero-img img {
    max-width: 280px;
    width: 85%;
  }
  
  /* Navegación móvil pequeña */
  .navbar-mobile ul {
    top: 50px;
    padding: 5px 0;
  }
  
  .navbar-mobile a {
    padding: 12px 15px;
    font-size: 15px;
    margin: 3px 5px;
  }
  
  /* Contenedor móvil pequeño */
  .container {
    padding: 0 10px;
  }
  
  /* Tipografía móvil pequeña */
  h1 {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  
  h2 {
    font-size: clamp(1.2rem, 6vw, 1.6rem);
  }
  
  .section-title h2 {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
  }
}

/*--------------------------------------------------------------
# Tarjetas de Estadísticas - Ajuste de Texto
--------------------------------------------------------------*/
.stat-card {
  background: var(--white);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid var(--gray-200);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.stat-card i {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
  font-size: 2.5rem !important;
}

.stat-number {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: var(--spacing-sm);
  line-height: 1.1;
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: var(--gray-600);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  margin: 0;
}

/* Responsive para tarjetas de estadísticas */
@media (max-width: 768px) {
  .stat-card {
    min-height: 150px;
    padding: var(--spacing-md);
  }
  
  .stat-card i {
    font-size: 2rem !important;
    margin-bottom: var(--spacing-sm);
  }
  
  .stat-number {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
  
  .stat-label {
    font-size: clamp(0.7rem, 3vw, 0.85rem);
  }
}

@media (max-width: 576px) {
  .stat-card {
    min-height: 130px;
    padding: var(--spacing-sm);
  }
  
  .stat-card i {
    font-size: 1.5rem !important;
  }
  
  .stat-number {
    font-size: clamp(1rem, 6vw, 1.5rem);
  }
  
  .stat-label {
    font-size: clamp(0.65rem, 4vw, 0.8rem);
    letter-spacing: 0.3px;
  }
}
