@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/* color palette from <https://github.com/vuejs/theme> */

:root {
  --vt-c-white: #ffffff;
  --vt-c-white-soft: #f8f8f8;
  --vt-c-white-mute: #f2f2f2;

  --vt-c-black: #181818;
  --vt-c-black-soft: #222222;
  --vt-c-black-mute: #282828;

  --vt-c-indigo: #2c3e50;

  --vt-c-divider-light-1: rgba(60, 60, 60, 0.29);
  --vt-c-divider-light-2: rgba(60, 60, 60, 0.12);
  --vt-c-divider-dark-1: rgba(84, 84, 84, 0.65);
  --vt-c-divider-dark-2: rgba(84, 84, 84, 0.48);

  --vt-c-text-light-1: var(--vt-c-indigo);
  --vt-c-text-light-2: rgba(60, 60, 60, 0.66);
  --vt-c-text-dark-1: var(--vt-c-white);
  --vt-c-text-dark-2: rgba(235, 235, 235, 0.64);
}

/* semantic color variables for this project */

:root {
  --color-background: var(--vt-c-white);
  --color-background-soft: var(--vt-c-white-soft);
  --color-background-mute: var(--vt-c-white-mute);

  --color-border: var(--vt-c-divider-light-2);
  --color-border-hover: var(--vt-c-divider-light-1);

  --color-heading: var(--vt-c-text-light-1);
  --color-text: var(--vt-c-text-light-1);

  --section-gap: 160px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  font-weight: normal;
  font-family: 'Manrope', sans-serif;
}

body {
  min-height: 100vh;
  color: var(--color-text);
  background: var(--color-background);
  transition:
    color 0.5s,
    background-color 0.5s;
  line-height: 1.6;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== SISTEMA UNIFICADO DE BOTONES - FOURIN LP ===== */



/* ===== VARIANTES DE BOTONES ===== */

/* Botón Primario - Gradiente azul */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1297ef 0%, #4ab7ff 50%, #00effd 100%);
    color: white;
    font-size: clamp(16px, 1.4vw, 20px);
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(18, 151, 239, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 12px 40px rgba(18, 151, 239, 0.4);
    background: linear-gradient(135deg, #0d5fef 0%, #1297ef 50%, #4ab7ff 100%);
}

/* Efecto de brillo para botón primario */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Botón Secundario - Borde azul */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #1297ef;
    border: 2px solid rgba(18, 151, 239, 0.2);
    font-size: clamp(14px, 1.2vw, 18px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(18, 151, 239, 0.1);
}

.btn-secondary:hover {
    border-color: #1297ef;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 30px rgba(18, 151, 239, 0.2);
}

/* Botón Activo - Fondo azul sólido */
.btn-active {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 14px 28px;
    background: linear-gradient(135deg, #1297ef 0%, #4ab7ff 100%);
    color: white;
    border: 2px solid #1297ef;
    font-size: clamp(14px, 1.2vw, 18px);
    box-shadow: 0 6px 25px rgba(18, 151, 239, 0.25);
}

/* Botón Compacto - Para controles pequeños */
.btn-compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    color: #1297ef;
    border: 1px solid rgba(18, 151, 239, 0.2);
    font-size: 14px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.btn-compact:hover {
    background: rgba(18, 151, 239, 0.1);
    border-color: #1297ef;
}

/* Botón Circular - Para controles de carrusel */
.btn-circular {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #1297ef;
    border: 1px solid rgba(18, 151, 239, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(18, 151, 239, 0.15);
}

.btn-circular:hover {
    background: rgba(18, 151, 239, 0.1);
    border-color: #1297ef;
    transform: scale(1.1);
}

/* Botón Punto - Para indicadores */
.btn-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 50%;
    background: #ccc;
    border: none;
    transition: all 0.3s ease;
}

.btn-dot:hover {
    background: #1297ef;
    transform: scale(1.2);
}

.btn-dot.active {
    background: #1297ef;
    transform: scale(1.2);
}

/* Botón Punto Extendido - Para carrusel principal */
.btn-dot-extended {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 50%;
    background: #1297ef;
    border: none;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.btn-dot-extended:hover {
    transform: scale(1.1);
}

.btn-dot-extended.active {
    width: 40px;
    height: 20px;
    background: linear-gradient(90deg, rgb(74, 183, 255) 35%, rgb(18, 151, 239) 100%);
    border-radius: 100px;
}

/* ===== ICONOS DE BOTONES ===== */
.btn-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-icon,
.btn-secondary:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== TAMAÑOS RESPONSIVOS ===== */
@media (max-width: 768px) {
    .btn-primary {
        padding: 14px 24px;
        font-size: clamp(14px, 4vw, 18px);
    }

    .btn-secondary {
        padding: 12px 20px;
        font-size: clamp(12px, 3.5vw, 16px);
    }

    .btn-compact {
        padding: 6px 12px;
        font-size: 12px;
    }

    .btn-circular {
        width: 35px;
        height: 35px;
    }
}

/* ===== VARIANTES ESPECÍFICAS ===== */

/* Botón de Contacto Banner */
.btn-contact-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1297ef 0%, #4ab7ff 50%, #00effd 100%);
    color: white;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(18, 151, 239, 0.3);
    height: 60px;
    width: 280px;
    font-size: clamp(16px, 1.2vw, 20px);
    margin-top: 30px;
}

/* Botón de Pestañas */
.btn-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 16px 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #1297ef;
    border: 2px solid rgba(18, 151, 239, 0.2);
    font-size: clamp(14px, 1.2vw, 18px);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    font-size: clamp(16px, 1.5vw, 20px);
    text-align: left;
    justify-content: flex-start;
    gap: 12px;
}

.btn-tab:hover {
    transform: translateX(10px);
}

.btn-tab.active {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 1.5rem 2rem;

    background: linear-gradient(135deg, #1297ef 0%, #4ab7ff 100%);
    color: white;
    border: 2px solid #1297ef;
    font-size: clamp(14px, 1.2vw, 18px);
    box-shadow: 0 6px 25px rgba(18, 151, 239, 0.25);
}

/* ===== CONTROLES DE CARRUSEL SIMPLIFICADOS ===== */

/* Controles de Carrusel - Chevrons simples sin bordes */
.btn-carousel-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #1297ef;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 2.2em;
    margin: 0 5px;
    padding: 0;
    width: auto;
    height: auto;
}

.btn-carousel-control:hover {
    color: #0d60ef;
    transform: scale(1.1);
}

/* Flechas de Sponsors - Chevrons simples sin bordes */
.btn-sponsor-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: #1297ef;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 2.5em;
    padding: 0;
    width: auto;
    height: auto;
}

.btn-sponsor-arrow:hover {
    color: #0d60ef;
    transform: scale(1.1);
}

.btn-sponsor-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    color: #ccc;
}

.btn-sponsor-arrow.disabled:hover {
    transform: none;
    color: #ccc;
}

/* Puntos de Carrusel - Corregidos para mostrar estado activo */
.btn-carousel-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    width: 18px;
    height: 18px;
    padding: 0;
    margin: 0 3px;
}

.btn-carousel-dot:hover {
    background: #1297ef;
    transform: scale(1.1);
}

.btn-carousel-dot.active {
    background: #1297ef;
    transform: scale(1.1);
}

/* Indicadores de Sponsors */
.btn-sponsor-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0 5px;
}

.btn-sponsor-indicator:hover {
    background: #1297ef;
    transform: scale(1.2);
}

.btn-sponsor-indicator.active {
    background: #1297ef;
    transform: scale(1.2);
}

/* Elementos del Carrusel de Habilidades */
.btn-carousel-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-family: inherit;
    position: relative;
    overflow: hidden;
    user-select: none;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.9);
    color: #1297ef;
    border: 2px solid rgba(18, 151, 239, 0.2);
    font-size: clamp(14px, 1.2vw, 18px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(18, 151, 239, 0.1);
    font-size: clamp(18px, 1vw, 28px);
    padding: 12px 24px;
    margin-right: 5rem;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

.btn-carousel-item:hover {
    background: rgba(18, 151, 239, 0.1);
    border-color: #1297ef;
    color: #0d60ef;
    font-weight: 600;
    transform: translateY(-3px) scale(1.02);
}

/* ===== RESPONSIVE ESPECÍFICO ===== */
@media (max-width: 768px) {
    .btn-contact-banner {
        height: 50px;
        width: 220px;
        font-size: 16px;
    }

    .btn-tab {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0.5rem;
        width: 80px;
        height: 80px;
        text-align: center;
        gap: 4px;
    }

    .btn-tab:hover {
        background: #1297ef6c;
        transform: none;
    }

    .btn-tab.active {
        transform: none;
        background: #1297ef;
    }

    .btn-carousel-item {
        font-size: clamp(14px, 4vw, 20px);
        padding: 8px 16px;
    }
}
.scroll-to-top[data-v-42da19c9] {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(18, 151, 239, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  z-index: 1000;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.scroll-to-top.visible[data-v-42da19c9] {
  opacity: 1;
  transform: translateY(0);
}
.scroll-to-top[data-v-42da19c9]:hover {
  background: linear-gradient(45deg, #0d5fef, #49bbff);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(18, 151, 239, 0.4);
}
.scroll-to-top[data-v-42da19c9]:active {
  transform: translateY(-1px);
}
.chevron-up[data-v-42da19c9] {
  transition: transform 0.3s ease;
  pointer-events: none;
}
.scroll-to-top:hover .chevron-up[data-v-42da19c9] {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
.scroll-to-top[data-v-42da19c9] {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
}
}
@media (max-width: 480px) {
.scroll-to-top[data-v-42da19c9] {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
}
.chevron-up[data-v-42da19c9] {
    width: 20px;
    height: 20px;
}
}

body[data-v-9aab0595] {
  margin: 0;
  padding: 0;
}
main[data-v-9aab0595] {
  margin-top: 90px;
}

.header[data-v-091edb64] {
  height: 90px;
  background: white;
  border-bottom: 2px solid #e2e8f0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header-container[data-v-091edb64] {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.header-left[data-v-091edb64] {
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo img[data-v-091edb64] {
  height: 40px;
  width: auto;
}
.nav-links[data-v-091edb64] {
  display: flex;
  gap: 30px;
}
.nav-link[data-v-091edb64] {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-link[data-v-091edb64]:hover {
  color: #129bef;
}
.nav-link.active[data-v-091edb64] {
  color: #129bef;
  border-bottom: 2px solid #129bef;
  padding-bottom: 2px;
}
.header-right[data-v-091edb64] {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-link[data-v-091edb64] {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-link[data-v-091edb64]:hover {
  color: #129bef;
}
.login-button[data-v-091edb64] {
  background: #129bef;
  color: white;
  text-decoration: none;
  padding: 10px 24px;
  border-radius: 58px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.login-button[data-v-091edb64]:hover {
  background: #1d4ed8;
}

/* Responsive */
@media (max-width: 768px) {
.header-container[data-v-091edb64] {
    padding: 0 15px;
}
.header-left[data-v-091edb64] {
    gap: 20px;
}
.nav-links[data-v-091edb64] {
    gap: 20px;
}
.header-right[data-v-091edb64] {
    gap: 20px;
}
.nav-link[data-v-091edb64],
  .contact-link[data-v-091edb64] {
    font-size: 14px;
}
.login-button[data-v-091edb64] {
    padding: 10px 20px;
    font-size: 14px;
}
}

/* -------------------------------------- */
/* HAMBURGUESA Y MENÚ MÓVIL ESTILOS */
/* -------------------------------------- */
.hamburger[data-v-091edb64] {
  display: none; /* Oculto por defecto, visible solo en móvil */
  padding: 0;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  margin: 0;
  z-index: 1010;
}
.hamburger-box[data-v-091edb64] {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner[data-v-091edb64] {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner[data-v-091edb64],
.hamburger-inner[data-v-091edb64]::before,
.hamburger-inner[data-v-091edb64]::after {
  width: 24px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  position: absolute;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.hamburger-inner[data-v-091edb64]::before,
.hamburger-inner[data-v-091edb64]::after {
  content: '';
  display: block;
}
.hamburger-inner[data-v-091edb64]::before {
  top: -8px;
}
.hamburger-inner[data-v-091edb64]::after {
  bottom: -8px;
}

/* Transformación de la X */
.hamburger.is-active .hamburger-inner[data-v-091edb64] {
  transform: rotate(45deg);
}
.hamburger.is-active .hamburger-inner[data-v-091edb64]::before {
  top: 0;
  opacity: 0; /* Oculta la línea superior */
}
.hamburger.is-active .hamburger-inner[data-v-091edb64]::after {
  bottom: 0;
  transform: rotate(-90deg); /* Rota la línea inferior para formar la X */
}

/* MENÚ DESPLEGABLE */
.mobile-menu[data-v-091edb64] {
  position: absolute;
  top: 90px; /* Debajo del header */
  left: 0;
  width: 100%;
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mobile-nav-links[data-v-091edb64] {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0px 20px;
  width: 100%;
}
.mobile-nav-link[data-v-091edb64] {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid #e2e8f0;
}
.mobile-actions[data-v-091edb64] {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 20px;
  gap: 10px;
}
.mobile-contact-link[data-v-091edb64] {
  text-align: center;
  color: #129bef;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
}
.mobile-login-button[data-v-091edb64] {
  text-align: center;
  background: #129bef;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
}

/* VUE TRANSITION CLASSES */
.slide-down-enter-active[data-v-091edb64],
.slide-down-leave-active[data-v-091edb64] {
  transition: all 0.3s ease-in-out;
}
.slide-down-enter-from[data-v-091edb64],
.slide-down-leave-to[data-v-091edb64] {
  transform: translateY(-100%);
  opacity: 0;
}

/* -------------------------------------- */
/* MEDIA QUERIES FINALES */
/* -------------------------------------- */
@media (max-width: 1024px) {
  /* Ocultar enlaces de escritorio en pantallas medianas/pequeñas */
.desktop-nav[data-v-091edb64],
  .desktop-link[data-v-091edb64] {
    display: none;
}

  /* Mostrar la hamburguesa */
.hamburger[data-v-091edb64] {
    display: block;
}

  /* Reducir el padding del contenedor del header */
.header-container[data-v-091edb64] {
    padding: 0 15px;
}
}
@media (max-width: 768px) {
  /* Podemos reducir la altura del header en móvil si es necesario */
.header[data-v-091edb64] {
    height: 70px;
}
.mobile-menu[data-v-091edb64] {
    top: 70px; /* Ajustar la posición de inicio del menú */
}
.logo img[data-v-091edb64] {
    height: 30px; /* Logo más pequeño */
}
}

.modal-fade-enter-active[data-v-e1bbd27a],
.modal-fade-leave-active[data-v-e1bbd27a] {
  transition: opacity 0.3s ease;
}
.modal-fade-enter-from[data-v-e1bbd27a],
.modal-fade-leave-to[data-v-e1bbd27a] {
  opacity: 0;
}
.modal-overlay[data-v-e1bbd27a] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content[data-v-e1bbd27a] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 90vw;
  height: 85vh;
  max-width: 1200px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal-close[data-v-e1bbd27a] {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #888;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  z-index: 10;
  transition: color 0.2s ease;
}
.modal-close[data-v-e1bbd27a]:hover {
  color: #333;
}
.modal-body[data-v-e1bbd27a] {
  flex-grow: 1;
  padding: 0;
  overflow: hidden;
}
iframe[data-v-e1bbd27a] {
  display: block;
}
@media (max-width: 768px) {
.modal-content[data-v-e1bbd27a] {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
}
.modal-close[data-v-e1bbd27a] {
    top: 10px;
    right: 10px;
    font-size: 2rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}
}

.hero-section[data-v-d7757596] {
  background: #fff;
  padding-top: 90px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero-container[data-v-d7757596] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content[data-v-d7757596] {
  display: flex;
  gap: 60px;
  flex-direction: column;
}
.hero-text[data-v-d7757596] {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.hero-badge[data-v-d7757596] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  border-radius: 50px;
  width: fit-content;
  transition: all 0.3s ease;
}
.hero-badge[data-v-d7757596]:hover {
  transform: translateY(-2px);
}
.badge-text[data-v-d7757596] {
  background: #129bef;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-description[data-v-d7757596] {
  color: #64748b;
  font-size: 18px;
  font-weight: 500;
}
.badge-arrow[data-v-d7757596] {
  color: #129bef;
  transition: transform 0.3s ease;
}
.hero-badge:hover .badge-arrow[data-v-d7757596] {
  transform: translate(2px, -2px);
}
.hero-title[data-v-d7757596] {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1d1e20de;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero-description[data-v-d7757596] {
  font-size: 18px;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
  max-width: 90%;
}
.hero-cta[data-v-d7757596] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #129bef;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.hero-cta[data-v-d7757596]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
.cta-arrow[data-v-d7757596] {
  transition: transform 0.3s ease;
}
.hero-cta:hover .cta-arrow[data-v-d7757596] {
  transform: translate(2px, -2px);
}
.hero-dashboard[data-v-d7757596] {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dashboard-container[data-v-d7757596] {
  position: relative;
  width: 100%;
  max-width: 1400px;
  overflow: hidden;
  background: white;
  transition: transform 0.3s ease;
}
.horizontal-scroll-container[data-v-d7757596] {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: white;
}
.horizontal-scroll-container .dashboard-container[data-v-d7757596] {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.dashboard-image[data-v-d7757596] {
  width: 100%;
  height: auto;
  display: block;
}
.text-mask[data-v-d7757596] {
  overflow: hidden;
}

/* Mostrar contenido inmediatamente, las animaciones se aplican después */
.hero-badge[data-v-d7757596],
.hero-title[data-v-d7757596],
.hero-description[data-v-d7757596],
.hero-cta[data-v-d7757596] {
  /* visibility: hidden; - Removido para mejorar LCP */
  opacity: 1;
}

/* 2. SECCIÓN HORIZONTAL (EL NUEVO CONTENEDOR CLAVE) */
.horizontal-section[data-v-d7757596],
.horizontal-track[data-v-d7757596],
.panel[data-v-d7757596] {
  height: calc(100dvh + 20px);
}
.horizontal-section[data-v-d7757596] {
  overflow: hidden;
  position: relative;
}
.horizontal-track[data-v-d7757596] {
  display: flex;
  width: 200vw;
}
.panel[data-v-d7757596] {
  background-color: #fff;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}
.dashboard-image[data-v-d7757596] {
  width: 100%;
  max-width: 1400px;
  height: auto;
  object-fit: contain;
}
.final-section[data-v-d7757596] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f0f4f8;
  font-size: 2rem;
}
@media (max-width: 1024px) {
.hero-content[data-v-d7757596] {
    gap: 40px;
}
.hero-title[data-v-d7757596] {
    font-size: clamp(2rem, 3.5vw, 3rem);
}
}
@media (max-width: 768px) {
.hero-section[data-v-d7757596] {
    padding-top: 20px;
    min-height: auto;
}
.hero-content[data-v-d7757596] {
    grid-template-columns: 1fr;
    gap: 40px;
}
.hero-text[data-v-d7757596] {
    order: 1;
    gap: 24px;
}
.hero-dashboard[data-v-d7757596] {
    order: 2;
}
.hero-description[data-v-d7757596] {
    max-width: 100%;
}
.dashboard-container[data-v-d7757596] {
    max-width: 90%;
}
}
@media (max-width: 480px) {
.hero-container[data-v-d7757596] {
    padding: 0 15px;
}
.hero-description[data-v-d7757596] {
  font-size: 15px;
}
.hero-badge[data-v-d7757596] {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    border-radius: 50px;
    width: fit-content;
    transition: all 0.3s ease;
}
.hero-badge svg[data-v-d7757596] {
    display: none;
}
.badge-arrow[data-v-d7757596] {
    display: none;
}
.badge-description[data-v-d7757596] {
    font-size: 12px;
}
.hero-cta[data-v-d7757596] {
    padding: 14px 28px;
    font-size: 14px;
}
}
@media (max-width: 768px) {
.horizontal-section[data-v-d7757596] {
    height: 50vh;
}
.horizontal-track[data-v-d7757596],
  .panel[data-v-d7757596] {
    height: 50vh;
}
.dashboard-image[data-v-d7757596] {
    object-fit: contain;
    max-height: 90%;
}
.final-section h2[data-v-d7757596] {
    font-size: 1.5rem;
    padding: 0 20px;
}
}

.iconic {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.iconic span {
  margin: 0px 5px;
}
.admin-section {
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.admin-section h3 {
  font-weight: 200;
  font-size: 24px;
}
.admin-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.admin-login-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.admin-login-btn .material-symbols-outlined {
  font-size: 18px;
}
.link {
  color: white;
  text-decoration: underline;

  cursor: pointer;
}
.link:hover {
  color: #f2f2f2;
  text-decoration: none;
}
.contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 2em;
}
.contact h3 {
  font-weight: 200;
  font-size: 36px;
}
.info h3 {
  font-weight: 200;
  font-size: 36px;
}
.info {
  width: 34%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin: 2em;
}
.logofooter {
  background-image: url(/assets/logofooter-Cu0WAjSj.png);
  width: 130px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0px 4em;
}
.footer {
  background: linear-gradient(17deg, #0055c3 21%, rgba(0, 212, 255, 1) 100%);
  color: white;
  text-align: center;
  padding: 10px;
  width: 100%;
  height: 400px;
  display: flex;
}
@media (width < 768px) {
.footer {
    height: auto;
    display: flex;
    align-items: center;
}
.info {
    display: none;
    width: auto;
    margin: 1.5em;
}
.info span {
    display: none;
}
h3 {
    font-size: 14px !important;
}
.contact {
    margin: 2em 0em;
}
.admin-section {
    margin-top: 15px;
    padding-top: 15px;
}
.admin-section h3 {
    font-size: 18px !important;
}
.admin-login-btn {
    padding: 8px 12px;
    font-size: 12px;
}
.logofooter {
    width: 130px;
    background-size: contain;
    background-position: left;
    background-repeat: no-repeat;
    margin: 10px 0px 0px 1.5em;
    height: 100px;
}
}

.company-logos[data-v-90f82c8e] {
  display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #FFFFFF, #E2E8F0, #FFFFFF) 1;
    width: 100%;
    overflow: auto;
}
.company-logos img[data-v-90f82c8e] {
  width: 20%;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  cursor: pointer;
  max-width: 200px;
}
.company-logos img[data-v-90f82c8e]:hover {
  filter: grayscale(0);
}
@media (max-width: 768px) {
.company-logos[data-v-90f82c8e] {
    gap: 10px;
}
}

.column-1 .small-box.analiza[data-v-cc09ccd6] {
  width: -webkit-fill-available;
}
.column-1 .small-box.controla[data-v-cc09ccd6] {
  width: -webkit-fill-available;
}
.column-1 .large-box[data-v-cc09ccd6] {
  width: -webkit-fill-available;
}
.column-2 .large-box[data-v-cc09ccd6] {
  width: -webkit-fill-available;
}
.feature-image[data-v-cc09ccd6] {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.home-section2[data-v-cc09ccd6] {
  padding: 150px 20px;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 2px solid;
  border-image: linear-gradient(to right, #ffffff, #e2e8f0, #ffffff) 1;
}
.section-header[data-v-cc09ccd6] {
  text-align: center;
  display: flex;
  margin-bottom: 60px;
  flex-direction: column;
  align-items: center;
}
.main-title[data-v-cc09ccd6] {
  font-size: 3rem;
  font-weight: 700;
  max-width: 800px;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.1;
}
.highlight[data-v-cc09ccd6] {
  color: #129bef;
  font-weight: 700;
}
.subtitle[data-v-cc09ccd6] {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.features-grid[data-v-cc09ccd6] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}
.column-1[data-v-cc09ccd6] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.column-2[data-v-cc09ccd6] {
  display: flex;
}
.large-box[data-v-cc09ccd6] {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.small-box[data-v-cc09ccd6] {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bottom-row[data-v-cc09ccd6] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.feature-title[data-v-cc09ccd6] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 15px;
}
.feature-description[data-v-cc09ccd6] {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}
.cta-section[data-v-cc09ccd6] {
  text-align: center;
}
.cta-button[data-v-cc09ccd6] {
  background: #129bef;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button[data-v-cc09ccd6]:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}
.feature-box[data-v-cc09ccd6] {
  position: relative;
  overflow: hidden;
}
.feature-box[data-v-cc09ccd6]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;

  background: linear-gradient(90deg, transparent, rgba(18, 155, 239, 0.05), transparent);

  background-size: 200% 100%;
  background-position: -100% 0;

  transition: background-position 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.feature-image[data-v-cc09ccd6] {
  width: 100%;
  height: 100%;
  display: block;
}
.feature-box[data-v-cc09ccd6]:hover {
  transform: scale(1.02);
}
.feature-box[data-v-cc09ccd6]:hover::after {
  background-position: 200% 0;
}
/* Puedes añadir esta regla para evitar parpadeos (FOUC) */
/* GSAP la gestionará con autoAlpha */
.main-title[data-v-cc09ccd6],
.subtitle[data-v-cc09ccd6],
.feature-box[data-v-cc09ccd6] {
  visibility: hidden;
}
@media (max-width: 768px) {
.features-grid[data-v-cc09ccd6] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-box[data-v-cc09ccd6]::after {
    display: none;
}
.bottom-row[data-v-cc09ccd6] {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.column-1[data-v-cc09ccd6] {
    gap: 10px;
}
.main-title[data-v-cc09ccd6] {
    font-size: 2rem;
}
.home-section2[data-v-cc09ccd6] {
    padding: 60px 20px;
}
}

.use-cases-section[data-v-185d9be0] {
  padding: 120px 20px;
  background-color: #fff;
}
.use-cases-container[data-v-185d9be0] {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header[data-v-185d9be0] {
  text-align: center;
  margin-bottom: 20px;
}
.main-title[data-v-185d9be0] {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}
.highlight[data-v-185d9be0] {
  color: #129bef;
  font-weight: 700;
}
.subtitle[data-v-185d9be0] {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0 auto;
  max-width: 750px;
}
.use-cases-grid[data-v-185d9be0] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: stretch;
}
.use-case-card[data-v-185d9be0] {
  --mouse-x: 50%;
  --mouse-y: 50%;
  position: relative;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.6);
  border: 2px solid #e2e8f0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease-out;
}
.use-case-card[data-v-185d9be0]:hover::before {
  opacity: 1;
}
.card-content[data-v-185d9be0] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}
.card-header[data-v-185d9be0] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-container[data-v-185d9be0] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #129bef;
}
.card-title[data-v-185d9be0] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}
.card-description[data-v-185d9be0] {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}
.features-list[data-v-185d9be0] {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
}
.feature-item[data-v-185d9be0] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475569;
  font-size: 15px;
}
.check-icon[data-v-185d9be0] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #dbeafe;
  border-radius: 50%;
  color: #129bef;
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- AJUSTES CLAVE PARA EL PARALAJE --- */
.card-image[data-v-185d9be0] {
  width: 100%;
  border-radius: 16px;
  overflow: hidden; /* ¡Crucial! Oculta las partes de la imagen que se salen */
  margin-top: 30px;
  z-index: 1;
}
.card-image img[data-v-185d9be0] {
  width: 100%;
  height: 120%; /* Hacemos la imagen un 20% más alta que su contenedor */
  object-fit: cover; /* Asegura que la imagen llene el espacio sin distorsionarse */
  display: block;
}
.card-image.top[data-v-185d9be0] {
  margin-top: 0;
  margin-bottom: 30px;
}
@media (max-width: 968px) {
.use-cases-grid[data-v-185d9be0] {
    grid-template-columns: 1fr;
    gap: 40px;
}
.use-case-card.fleet[data-v-185d9be0] {
    flex-direction: column-reverse;
}
}
@media (max-width: 768px) {
.use-cases-section[data-v-185d9be0] {
    padding: 80px 15px;
}
.main-title[data-v-185d9be0] {
    font-size: 2.25rem;
}
.subtitle[data-v-185d9be0] {
    font-size: 1rem;
}
}

/* Estilos para el botón de consulta */
.consult-btn-container[data-v-185d9be0] {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}
.consult-btn[data-v-185d9be0] {
  background: #129bef;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.consult-btn[data-v-185d9be0]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
@media (max-width: 768px) {
.consult-btn[data-v-185d9be0] {
    padding: 14px 28px;
    font-size: 1rem;
}
}

.discover-section[data-v-90ae1f06] {
  padding-bottom: 10px;
  background: white;
}
.pin-container[data-v-90ae1f06] {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.discover-panel[data-v-90ae1f06] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.discover-content[data-v-90ae1f06] {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header[data-v-90ae1f06] {
  text-align: center;
  margin-bottom: 40px;
}
.main-title[data-v-90ae1f06] {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  max-width: 900px;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
}
.highlight[data-v-90ae1f06] {
  color: #129bef;
  font-weight: 700;
}
.subtitle[data-v-90ae1f06] {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}
.dashboard-showcase[data-v-90ae1f06] {
  width: 100%;
  display: flex;
  justify-content: center;
}
.dashboard-container[data-v-90ae1f06] {
  width: 100%;
  max-width: 800px;
  border-radius: 4px;
  overflow: hidden;
}
.dashboard-image[data-v-90ae1f06] {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
}
.after-pin-content[data-v-90ae1f06] {
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.cta-section[data-v-90ae1f06] {
  text-align: center;
}
.cta-button[data-v-90ae1f06] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #129bef;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button[data-v-90ae1f06]:hover {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
.pin-container[data-v-90ae1f06],
  .discover-panel[data-v-90ae1f06] {
    position: static;
    height: auto;
    padding: 60px 0;
}
.discover-section[data-v-90ae1f06] {
    padding: 40px 20px;
}
.main-title[data-v-90ae1f06] {
    font-size: 2rem;
}
}

.demo-section[data-v-abd2d9cf] {
  padding: 60px 20px;
    background: #ffffff;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 2px solid;
    border-image: linear-gradient(to right, #ffffff, #e2e8f0, #ffffff) 1;
    border-bottom: 2px solid;
}
.demo-container[data-v-abd2d9cf] {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.form-container[data-v-abd2d9cf] {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  width: 100%;
  max-width: 1000px;
}
.form-header[data-v-abd2d9cf] {
  margin-bottom: 40px;
}
.demo-title[data-v-abd2d9cf] {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;

  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #000000;
}
.demo-title .highlight[data-v-abd2d9cf] {
  color: #129bef;
  font-weight: 600;
}
.demo-description[data-v-abd2d9cf] {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}
.demo-form[data-v-abd2d9cf] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row[data-v-abd2d9cf] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-column[data-v-abd2d9cf] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group[data-v-abd2d9cf] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label[data-v-abd2d9cf] {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}
.form-group input[data-v-abd2d9cf],
.form-group select[data-v-abd2d9cf],
.form-group textarea[data-v-abd2d9cf] {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form-group input[data-v-abd2d9cf]::placeholder,
.form-group textarea[data-v-abd2d9cf]::placeholder {
  color: #9ca3af;
}
.form-group input[data-v-abd2d9cf]:focus,
.form-group select[data-v-abd2d9cf]:focus,
.form-group textarea[data-v-abd2d9cf]:focus {
  outline: none;
  border-color: #129bef;
  box-shadow: 0 0 0 3px rgba(18, 155, 239, 0.1);
}
.submit-button[data-v-abd2d9cf] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #129bef;
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
}
.submit-button[data-v-abd2d9cf]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
}
.submit-button[data-v-abd2d9cf]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.submit-button[data-v-abd2d9cf]:disabled:hover {
  transform: none;
  box-shadow: none;
}
.loading-spinner[data-v-abd2d9cf] {
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin-abd2d9cf 1s linear infinite;
}
@keyframes spin-abd2d9cf {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.submit-message[data-v-abd2d9cf] {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
.submit-message.success[data-v-abd2d9cf] {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}
.benefits[data-v-abd2d9cf] {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.benefit-item[data-v-abd2d9cf] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-size: 14px;
  text-align: center;
}
.benefit-item svg[data-v-abd2d9cf] {
  color: #129bef;
  margin-bottom: 4px;
}
.benefit-item span[data-v-abd2d9cf] {
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 968px) {
.form-row[data-v-abd2d9cf] {
    grid-template-columns: 1fr;
}
.benefits[data-v-abd2d9cf] {
    flex-direction: column;
    gap: 20px;
}
}
@media (max-width: 768px) {
.demo-section[data-v-abd2d9cf] {
    padding: 40px 20px;
}
.form-container[data-v-abd2d9cf] {
    padding: 40px 30px;
}
.demo-title[data-v-abd2d9cf] {
    font-size: 2rem;
}
.demo-description[data-v-abd2d9cf] {
    font-size: 15px;
}
}
@media (max-width: 480px) {
.form-container[data-v-abd2d9cf] {
    padding: 30px 20px;
    border-radius: 16px;
}
.demo-title[data-v-abd2d9cf] {
    font-size: 1.75rem;
}
.submit-button[data-v-abd2d9cf] {
    padding: 16px 28px;
    font-size: 14px;
}
.benefits[data-v-abd2d9cf] {
    gap: 16px;
}
.benefit-item[data-v-abd2d9cf] {
    font-size: 13px;
}
}

.products-benefits-section[data-v-c29ce25a] {
  padding: 80px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  min-height: 60vh;
}
.benefits-container[data-v-c29ce25a] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.content-header[data-v-c29ce25a] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
.section-badge[data-v-c29ce25a] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.badge-line[data-v-c29ce25a] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-c29ce25a] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.benefits-title[data-v-c29ce25a] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.benefits-subtitle[data-v-c29ce25a] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
}
.benefits-grid[data-v-c29ce25a] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  grid-auto-rows: min-content;
}
.benefit-card[data-v-c29ce25a] {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  grid-column: span 1;
}
.benefit-card[data-v-c29ce25a]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #129bef 0%, #4ab7ff 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.benefit-card[data-v-c29ce25a]:hover::before,
.benefit-card.expanded[data-v-c29ce25a]::before {
  transform: scaleX(1);
}
.benefit-card[data-v-c29ce25a]:hover:not(.expanded) {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: rgba(18, 155, 239, 0.2);
}
.benefit-card.expanded[data-v-c29ce25a] {
  grid-column: span 3;
  box-shadow: 0 20px 50px rgba(18, 155, 239, 0.2);
  border-color: #129bef;
  z-index: 10;
}
.card-header[data-v-c29ce25a] {
  padding: 40px 30px;
  transition: padding 0.4s ease-in-out;
}
.benefit-card.expanded .card-header[data-v-c29ce25a] {
  padding-bottom: 20px;
}
.benefit-icon[data-v-c29ce25a] {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #129bef 0%, #4ab7ff 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
  transition: all 0.3s ease;
}
.benefit-card:hover .benefit-icon[data-v-c29ce25a],
.benefit-card.expanded .benefit-icon[data-v-c29ce25a] {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(18, 155, 239, 0.4);
}
.benefit-title[data-v-c29ce25a] {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
.benefit-description[data-v-c29ce25a] {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 16px 0;
}
.expand-indicator[data-v-c29ce25a] {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  color: #129bef;
  transition: transform 0.3s ease;
}
.benefit-card.expanded .expand-indicator[data-v-c29ce25a] {
  transform: rotate(180deg);
}
.expand-indicator .material-symbols-outlined[data-v-c29ce25a] {
  font-size: 32px;
}

/* Contenido expandido */
.card-expanded-content[data-v-c29ce25a] {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
.benefit-card.expanded .card-expanded-content[data-v-c29ce25a] {
  max-height: 2000px;
  opacity: 1;
}
.expanded-inner[data-v-c29ce25a] {
  padding: 0 30px 40px 30px;
  animation: fadeIn-c29ce25a 0.5s ease-in-out;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}
@media (min-width: 1025px) {
.expanded-inner[data-v-c29ce25a] {
    grid-template-columns: 1fr 1fr;
}
}
@keyframes fadeIn-c29ce25a {
from {
    opacity: 0;
    transform: translateY(-10px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}

/* Número destacado */
.highlight-number[data-v-c29ce25a] {
  grid-column: 1 / -1;
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #e9ecef;
  border-bottom: 2px solid #e9ecef;
  margin-bottom: 30px;
}
.number-value[data-v-c29ce25a] {
  display: block;
  font-size: 4rem;
  font-weight: 800;
  color: #129bef;
  line-height: 1;
  margin-bottom: 8px;
}
.number-label[data-v-c29ce25a] {
  display: block;
  font-size: 1.1rem;
  color: #666;
  font-weight: 600;
}

/* Gráfica */
.chart-container[data-v-c29ce25a] {
  margin-bottom: 30px;
  grid-column: span 1;
}
.chart-title[data-v-c29ce25a] {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
}
.chart-bars[data-v-c29ce25a] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.chart-bar-wrapper[data-v-c29ce25a] {
  display: flex;
  align-items: center;
  gap: 15px;
}
.chart-bar-wrapper-inner[data-v-c29ce25a] {
  flex: 1;
  position: relative;
  overflow: visible;
}
.chart-label[data-v-c29ce25a] {
  min-width: 80px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
}
.chart-bar-container[data-v-c29ce25a] {
  position: relative;
  height: 40px;
  background: #f0f0f0;
  border-radius: 8px;
}
.chart-bar[data-v-c29ce25a] {
  height: 100%;
  border-radius: 8px;
  transition: width 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  position: relative;
  cursor: pointer;
}
.chart-bar[data-v-c29ce25a]:hover {
  filter: brightness(1.1);
}
.before-bar[data-v-c29ce25a] {
  background: #9ca3af;
}
.after-bar[data-v-c29ce25a] {
  background: linear-gradient(90deg, #129bef 0%, #4ab7ff 100%);
}
.chart-value[data-v-c29ce25a] {
  position: absolute;
  right: 12px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  display: none;
}
.before-bar .chart-value[data-v-c29ce25a] {
  color: #333;
  text-shadow: none;
}

/* Tooltip */
.chart-tooltip[data-v-c29ce25a] {
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.chart-tooltip[data-v-c29ce25a]::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.9);
}
.chart-bar:hover .chart-tooltip[data-v-c29ce25a] {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}
.tooltip-value[data-v-c29ce25a] {
  display: block;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
  color: #fff;
}
.tooltip-label[data-v-c29ce25a] {
  display: block;
  font-size: 12px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Caso real */
.case-data[data-v-c29ce25a] {
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 30px;
  border: 2px solid #129bef;
  grid-column: span 1;
}
.case-title[data-v-c29ce25a] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}
.case-title .material-symbols-outlined[data-v-c29ce25a] {
  font-size: 20px;
  color: #129bef;
}
.case-details[data-v-c29ce25a] {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-item[data-v-c29ce25a] {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.case-label[data-v-c29ce25a] {
  font-weight: 600;
  color: #666;
  min-width: 80px;
}
.case-value[data-v-c29ce25a] {
  color: #333;
  font-size: 15px;
}
.case-value.highlight[data-v-c29ce25a] {
  color: #129bef;
  font-weight: 700;
  font-size: 16px;
}
.case-item.savings[data-v-c29ce25a] {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}
.savings-value[data-v-c29ce25a] {
  color: #16a34a;
  font-weight: 700;
  font-size: 18px;
}
.case-value.additional[data-v-c29ce25a] {
  font-style: italic;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

/* Métricas */
.metrics-section[data-v-c29ce25a] {
  background: linear-gradient(135deg, rgba(18, 155, 239, 0.05) 0%, rgba(74, 183, 255, 0.05) 100%);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(18, 155, 239, 0.1);
  grid-column: span 1;
}
.metrics-title[data-v-c29ce25a] {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.metrics-title .material-symbols-outlined[data-v-c29ce25a] {
  font-size: 20px;
  color: #129bef;
}
.metrics-text[data-v-c29ce25a] {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
.benefits-grid[data-v-c29ce25a] {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.benefit-card.expanded[data-v-c29ce25a] {
    grid-column: span 2;
}
.expanded-inner[data-v-c29ce25a] {
    grid-template-columns: 1fr;
}
.highlight-number[data-v-c29ce25a],
  .chart-container[data-v-c29ce25a],
  .case-data[data-v-c29ce25a],
  .metrics-section[data-v-c29ce25a] {
    grid-column: span 1;
}
}
@media (max-width: 768px) {
.products-benefits-section[data-v-c29ce25a] {
    padding: 60px 15px;
}
.content-header[data-v-c29ce25a] {
    margin-bottom: 40px;
}
.benefits-title[data-v-c29ce25a] {
    font-size: 1.8rem;
}
.benefits-subtitle[data-v-c29ce25a] {
    font-size: 16px;
}
.benefits-grid[data-v-c29ce25a] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.benefit-card.expanded[data-v-c29ce25a] {
    grid-column: span 1;
}
.card-header[data-v-c29ce25a] {
    padding: 30px 20px;
}
.benefit-card.expanded .card-header[data-v-c29ce25a] {
    padding-bottom: 15px;
}
.expanded-inner[data-v-c29ce25a] {
    padding: 0 20px 30px 20px;
}
.benefit-icon[data-v-c29ce25a] {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
}
.benefit-title[data-v-c29ce25a] {
    font-size: 1.2rem;
}
.benefit-description[data-v-c29ce25a] {
    font-size: 14px;
}
.number-value[data-v-c29ce25a] {
    font-size: 3rem;
}
.chart-bar-wrapper[data-v-c29ce25a] {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.chart-label[data-v-c29ce25a] {
    min-width: auto;
}
.chart-bar-container[data-v-c29ce25a] {
    width: 100%;
}
}
@media (max-width: 480px) {
.products-benefits-section[data-v-c29ce25a] {
    padding: 40px 10px;
}
.card-header[data-v-c29ce25a] {
    padding: 25px 15px;
}
.expanded-inner[data-v-c29ce25a] {
    padding: 0 15px 25px 15px;
}
.benefit-icon[data-v-c29ce25a] {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.benefit-title[data-v-c29ce25a] {
    font-size: 1.1rem;
}
.benefit-description[data-v-c29ce25a] {
    font-size: 13px;
}
.number-value[data-v-c29ce25a] {
    font-size: 2.5rem;
}
.number-label[data-v-c29ce25a] {
    font-size: 1rem;
}
.case-data[data-v-c29ce25a],
  .metrics-section[data-v-c29ce25a] {
    padding: 20px;
}
.chart-bar-container[data-v-c29ce25a] {
    height: 35px;
}
}

.about-content[data-v-802faef9] {
  min-height: 100vh;
}

/* Hero Section */
.about-hero-section[data-v-802faef9] {
  padding: 100px 20px;
  background: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-container[data-v-802faef9] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content[data-v-802faef9] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-image[data-v-802faef9] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-banner[data-v-802faef9] {
  background-image: url('/assets/Group-Bg0EBD8k.png');
  background-size: contain;
  background-position: center;
  width: 400px;
  height: 400px;
  background-repeat: no-repeat;
}
.hero-text[data-v-802faef9] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-802faef9] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-802faef9] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-802faef9] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-802faef9] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-title[data-v-802faef9] {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  color: #129bef;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero-description[data-v-802faef9] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Stats Section */
.about-stats-section[data-v-802faef9] {
  padding: 80px 20px;
  background: #f8f9fa;
  min-height: 40vh;
}
.stats-container[data-v-802faef9] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.stats-grid[data-v-802faef9] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
.stat-item[data-v-802faef9] {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.stat-item[data-v-802faef9]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.stat-number[data-v-802faef9] {
  font-size: 3rem;
  font-weight: 800;
  color: #129bef;
  margin-bottom: 16px;
}
.stat-title[data-v-802faef9] {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}
.stat-description[data-v-802faef9] {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Goals Section */
.about-goals-section[data-v-802faef9] {
  padding: 80px 20px;
  background: white;
  min-height: 40vh;
}
.goals-container[data-v-802faef9] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.goals-title[data-v-802faef9] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.goals-content[data-v-802faef9] {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.goals-description[data-v-802faef9] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Approach Section */
.about-approach-section[data-v-802faef9] {
  padding: 80px 20px;
  background: #d9eefd;
  min-height: 60vh;
}
.approach-container[data-v-802faef9] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.approach-content[data-v-802faef9] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.approach-title[data-v-802faef9] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.approach-list[data-v-802faef9] {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.approach-item[data-v-802faef9] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.approach-icon[data-v-802faef9] {
  width: 50px;
  height: 50px;
  background: #129bef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.approach-icon .material-symbols-outlined[data-v-802faef9] {
  color: white;
  font-size: 24px;
}
.approach-item-title[data-v-802faef9] {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.approach-item-description[data-v-802faef9] {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.approach-image[data-v-802faef9] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.image-approach[data-v-802faef9] {
  background-image: url('/assets/approach-Clt6YriF.png');
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 400px;
  background-repeat: no-repeat;
}

/* Know Section */
.about-know-section[data-v-802faef9] {
  padding: 80px 20px;
  background: white;
  min-height: 60vh;
}
.know-container[data-v-802faef9] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.know-title[data-v-802faef9] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.know-content[data-v-802faef9] {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.know-description[data-v-802faef9] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.know-visual[data-v-802faef9] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 30px 0;
}
.know-image[data-v-802faef9] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.last-image[data-v-802faef9] {
  background-image: url('/assets/Last-DvoNgGy4.png');
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
}
.know-text-content[data-v-802faef9] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.know-cta[data-v-802faef9] {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
.hero-content[data-v-802faef9],
  .approach-content[data-v-802faef9],
  .know-visual[data-v-802faef9] {
    grid-template-columns: 1fr;
    gap: 40px;
}
.hero-image[data-v-802faef9],
  .approach-image[data-v-802faef9] {
    order: -1;
}
.stats-grid[data-v-802faef9] {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
}
@media (max-width: 768px) {
.about-hero-section[data-v-802faef9],
  .about-stats-section[data-v-802faef9],
  .about-goals-section[data-v-802faef9],
  .about-approach-section[data-v-802faef9],
  .about-know-section[data-v-802faef9] {
    padding: 60px 15px;
}
.hero-content[data-v-802faef9],
  .approach-content[data-v-802faef9],
  .know-visual[data-v-802faef9] {
    gap: 30px;
}
.hero-title[data-v-802faef9],
  .goals-title[data-v-802faef9],
  .approach-title[data-v-802faef9],
  .know-title[data-v-802faef9] {
    font-size: 1.8rem;
}
.hero-description[data-v-802faef9],
  .goals-description[data-v-802faef9],
  .know-description[data-v-802faef9],
  .know-text-content[data-v-802faef9],
  .know-cta[data-v-802faef9] {
    font-size: 16px;
}
.image-banner[data-v-802faef9] {
    width: 300px;
    height: 300px;
}
.image-approach[data-v-802faef9],
  .last-image[data-v-802faef9] {
    height: 250px;
}
.stat-item[data-v-802faef9] {
    padding: 30px 15px;
}
.stat-number[data-v-802faef9] {
    font-size: 2.5rem;
}
.stat-title[data-v-802faef9] {
    font-size: 1.1rem;
}
.stat-description[data-v-802faef9] {
    font-size: 15px;
}
.approach-icon[data-v-802faef9] {
    width: 40px;
    height: 40px;
}
.approach-icon .material-symbols-outlined[data-v-802faef9] {
    font-size: 20px;
}
.approach-item-title[data-v-802faef9] {
    font-size: 1.1rem;
}
.approach-item-description[data-v-802faef9] {
    font-size: 15px;
}
}
@media (max-width: 480px) {
.about-hero-section[data-v-802faef9],
  .about-stats-section[data-v-802faef9],
  .about-goals-section[data-v-802faef9],
  .about-approach-section[data-v-802faef9],
  .about-know-section[data-v-802faef9] {
    padding: 40px 10px;
}
.hero-content[data-v-802faef9],
  .approach-content[data-v-802faef9],
  .know-visual[data-v-802faef9] {
    gap: 20px;
}
.hero-title[data-v-802faef9],
  .goals-title[data-v-802faef9],
  .approach-title[data-v-802faef9],
  .know-title[data-v-802faef9] {
    font-size: 1.6rem;
}
.hero-description[data-v-802faef9],
  .goals-description[data-v-802faef9],
  .know-description[data-v-802faef9],
  .know-text-content[data-v-802faef9],
  .know-cta[data-v-802faef9] {
    font-size: 15px;
}
.image-banner[data-v-802faef9] {
    width: 250px;
    height: 250px;
}
.image-approach[data-v-802faef9],
  .last-image[data-v-802faef9] {
    height: 200px;
}
.stats-grid[data-v-802faef9] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.stat-item[data-v-802faef9] {
    padding: 25px 15px;
}
.stat-number[data-v-802faef9] {
    font-size: 2rem;
}
.stat-title[data-v-802faef9] {
    font-size: 1rem;
}
.stat-description[data-v-802faef9] {
    font-size: 14px;
}
.approach-list[data-v-802faef9] {
    gap: 20px;
}
.approach-item[data-v-802faef9] {
    gap: 12px;
}
.approach-icon[data-v-802faef9] {
    width: 35px;
    height: 35px;
}
.approach-icon .material-symbols-outlined[data-v-802faef9] {
    font-size: 18px;
}
.approach-item-title[data-v-802faef9] {
    font-size: 1rem;
}
.approach-item-description[data-v-802faef9] {
    font-size: 14px;
}
}

.products-hero-section[data-v-fdc2013c] {
  padding: 100px 20px;
  background: white;
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.hero-container[data-v-fdc2013c] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-content[data-v-fdc2013c] {
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: column;
  padding-top: 90px;
}
.hero-text[data-v-fdc2013c] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-fdc2013c] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-fdc2013c] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-fdc2013c] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-fdc2013c] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-title[data-v-fdc2013c] {
  font-size: clamp(2.5rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: #1d1e20de;
  margin: 0;
  letter-spacing: -0.02em;
}
.hero-description[data-v-fdc2013c] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.demo-link[data-v-fdc2013c] {
  text-decoration: none;
  display: inline-block;
}
.demo-cta[data-v-fdc2013c] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #129bef;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.demo-cta[data-v-fdc2013c]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
.demo-cta .material-symbols-outlined[data-v-fdc2013c] {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.demo-cta:hover .material-symbols-outlined[data-v-fdc2013c] {
  transform: translateX(4px);
}
.hero-image[data-v-fdc2013c] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.platform-preview[data-v-fdc2013c] {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
}
.platform-screenshot[data-v-fdc2013c] {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: all 0.5s ease;
}
.default-image[data-v-fdc2013c] {
  position: relative;
  z-index: 1;
}
.hover-image[data-v-fdc2013c] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 2;
}
.platform-preview:hover .default-image[data-v-fdc2013c] {
  opacity: 0;
}
.platform-preview:hover .hover-image[data-v-fdc2013c] {
  opacity: 1;
}
.image-overlay[data-v-fdc2013c] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    transparent 100%
  );
  padding: 40px 30px 30px;
  z-index: 3;
  pointer-events: none;
  transition: all 0.3s ease;
}
.overlay-text[data-v-fdc2013c] {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}
.default-text[data-v-fdc2013c] {
  opacity: 1;
}
.hover-text[data-v-fdc2013c] {
  position: absolute;
  top: 40px;
  left: 30px;
  right: 30px;
  opacity: 0;
}
.platform-preview:hover .image-overlay[data-v-fdc2013c] {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
}
.platform-preview:hover .default-text[data-v-fdc2013c] {
  opacity: 0;
}
.platform-preview:hover .hover-text[data-v-fdc2013c] {
  opacity: 1;
}
@media (max-width: 1024px) {
.hero-content[data-v-fdc2013c] {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}
.hero-image[data-v-fdc2013c] {
    order: -1;
}
}
@media (max-width: 768px) {
.products-hero-section[data-v-fdc2013c] {
    padding: 80px 20px;
    min-height: 70vh;
}
.hero-content[data-v-fdc2013c] {
    gap: 30px;
}
.hero-title[data-v-fdc2013c] {
    font-size: 2.2rem;
}
.hero-description[data-v-fdc2013c] {
    font-size: 16px;
}
.demo-cta[data-v-fdc2013c] {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}
.overlay-text[data-v-fdc2013c] {
    font-size: 1.2rem;
}
.image-overlay[data-v-fdc2013c] {
    padding: 30px 20px 20px;
}
}
@media (max-width: 480px) {
.products-hero-section[data-v-fdc2013c] {
    padding: 60px 15px;
}
.hero-title[data-v-fdc2013c] {
    font-size: 1.8rem;
}
.hero-description[data-v-fdc2013c] {
    font-size: 15px;
}
.demo-cta[data-v-fdc2013c] {
    padding: 14px 28px;
    font-size: 15px;
}
.overlay-text[data-v-fdc2013c] {
    font-size: 1rem;
}
.image-overlay[data-v-fdc2013c] {
    padding: 25px 15px 15px;
}
}

.products-problem-section[data-v-f6e0aac4] {
  padding: 80px 20px;
  background: #f8f9fa;
  min-height: 60vh;
}
.problem-container[data-v-f6e0aac4] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.problem-content[data-v-f6e0aac4] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.problem-text[data-v-f6e0aac4] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-f6e0aac4] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-f6e0aac4] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-f6e0aac4] {
  width: 40px;
  height: 2px;
  background: #dc3545;
}
.badge-text[data-v-f6e0aac4] {
  color: #dc3545;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.problem-title[data-v-f6e0aac4] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.problem-list[data-v-f6e0aac4] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.problem-item[data-v-f6e0aac4] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.problem-icon[data-v-f6e0aac4] {
  width: 24px;
  height: 24px;
  background: #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-icon .material-symbols-outlined[data-v-f6e0aac4] {
  color: #fff;
  font-size: 18px;
}
.problem-item span[data-v-f6e0aac4] {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.problem-visual[data-v-f6e0aac4] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.visual-container[data-v-f6e0aac4] {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 300px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.excel-icon[data-v-f6e0aac4],
.paper-icon[data-v-f6e0aac4] {
  font-size: 4rem;
  opacity: 0.6;
  position: absolute;
  filter: grayscale(0.3);
}
.excel-icon[data-v-f6e0aac4] {
  top: 15%;
  left: 15%;
  animation: float-f6e0aac4 4s ease-in-out infinite;
}
.paper-icon[data-v-f6e0aac4] {
  bottom: 15%;
  right: 15%;
  animation: float-f6e0aac4 4s ease-in-out infinite reverse;
}
.confusion-lines[data-v-f6e0aac4] {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 45%, rgba(220, 53, 69, 0.1) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(220, 53, 69, 0.1) 50%, transparent 55%);
  animation: pulse-f6e0aac4 3s ease-in-out infinite;
}
@keyframes float-f6e0aac4 {
0%,
  100% {
    transform: translateY(0px) rotate(0deg);
}
50% {
    transform: translateY(-25px) rotate(5deg);
}
}
@keyframes pulse-f6e0aac4 {
0%,
  100% {
    opacity: 0.3;
}
50% {
    opacity: 0.6;
}
}
@media (max-width: 1024px) {
.problem-content[data-v-f6e0aac4] {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}
.problem-visual[data-v-f6e0aac4] {
    order: -1;
}
}
@media (max-width: 768px) {
.products-problem-section[data-v-f6e0aac4] {
    padding: 60px 15px;
}
.problem-content[data-v-f6e0aac4] {
    gap: 30px;
}
.problem-title[data-v-f6e0aac4] {
    font-size: 1.8rem;
}
.problem-item span[data-v-f6e0aac4] {
    font-size: 15px;
}
.visual-container[data-v-f6e0aac4] {
    max-width: 350px;
    height: 250px;
}
.excel-icon[data-v-f6e0aac4],
  .paper-icon[data-v-f6e0aac4] {
    font-size: 3rem;
}
}
@media (max-width: 480px) {
.products-problem-section[data-v-f6e0aac4] {
    padding: 40px 10px;
}
.problem-list[data-v-f6e0aac4] {
    gap: 16px;
}
.problem-item span[data-v-f6e0aac4] {
    font-size: 14px;
}
.visual-container[data-v-f6e0aac4] {
    max-width: 300px;
    height: 200px;
}
.excel-icon[data-v-f6e0aac4],
  .paper-icon[data-v-f6e0aac4] {
    font-size: 2.5rem;
}
}

.products-features-section[data-v-479709bd] {
  padding: 80px 20px;
  background: white;
  min-height: 60vh;
}
.features-container[data-v-479709bd] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.content-header[data-v-479709bd] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
.section-badge[data-v-479709bd] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.badge-line[data-v-479709bd] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-479709bd] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.features-title[data-v-479709bd] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.features-grid[data-v-479709bd] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.feature-card[data-v-479709bd] {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card[data-v-479709bd]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #129bef 0%, #4ab7ff 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.feature-card[data-v-479709bd]:hover::before {
  transform: scaleX(1);
}
.feature-card[data-v-479709bd]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(18, 155, 239, 0.2);
}
.feature-icon[data-v-479709bd] {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #129bef 0%, #4ab7ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
  transition: all 0.3s ease;
}
.feature-card:hover .feature-icon[data-v-479709bd] {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(18, 155, 239, 0.4);
}
.feature-title[data-v-479709bd] {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 1024px) {
.features-grid[data-v-479709bd] {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}
}
@media (max-width: 768px) {
.products-features-section[data-v-479709bd] {
    padding: 60px 15px;
}
.content-header[data-v-479709bd] {
    margin-bottom: 40px;
}
.features-title[data-v-479709bd] {
    font-size: 1.8rem;
}
.features-grid[data-v-479709bd] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-card[data-v-479709bd] {
    padding: 30px 20px;
}
.feature-icon[data-v-479709bd] {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
}
.feature-title[data-v-479709bd] {
    font-size: 1.1rem;
}
}
@media (max-width: 480px) {
.products-features-section[data-v-479709bd] {
    padding: 40px 10px;
}
.feature-card[data-v-479709bd] {
    padding: 25px 15px;
}
.feature-icon[data-v-479709bd] {
    width: 60px;
    height: 60px;
    font-size: 1.6rem;
}
.feature-title[data-v-479709bd] {
    font-size: 1rem;
}
}

.products-showcase-section[data-v-933ea7ca] {
  padding: 80px 20px;
  background: #f8f9fa;
  min-height: 60vh;
}
.showcase-container[data-v-933ea7ca] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.content-header[data-v-933ea7ca] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
.section-badge[data-v-933ea7ca] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.badge-line[data-v-933ea7ca] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-933ea7ca] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.showcase-title[data-v-933ea7ca] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.showcase-subtitle[data-v-933ea7ca] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.showcase-content[data-v-933ea7ca] {
  max-width: 1000px;
  margin: 0 auto;
}

/* Navigation Tabs */
.showcase-tabs[data-v-933ea7ca] {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-button[data-v-933ea7ca] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.tab-button[data-v-933ea7ca]:hover {
  border-color: #129bef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.tab-button.active[data-v-933ea7ca] {
  background: linear-gradient(135deg, #129bef 0%, #4ab7ff 100%);
  border-color: #129bef;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
}
.tab-icon[data-v-933ea7ca] {
  font-size: 18px;
}
.tab-label[data-v-933ea7ca] {
  font-weight: 600;
}

/* Image Display */
.showcase-display[data-v-933ea7ca] {
  position: relative;
}
.image-container[data-v-933ea7ca] {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  background: white;
  aspect-ratio: 16/9;
}
.showcase-image[data-v-933ea7ca] {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.showcase-image[data-v-933ea7ca]:hover {
  transform: scale(1.02);
}
.image-overlay[data-v-933ea7ca] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 40px 30px 30px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.image-container:hover .image-overlay[data-v-933ea7ca] {
  transform: translateY(0);
}
.overlay-content[data-v-933ea7ca] {
  color: white;
}
.overlay-title[data-v-933ea7ca] {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.overlay-description[data-v-933ea7ca] {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

/* Navigation Controls */
.showcase-controls[data-v-933ea7ca] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
}
.control-btn[data-v-933ea7ca] {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #e9ecef;
  background: white;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.control-btn[data-v-933ea7ca]:hover:not(:disabled) {
  border-color: #129bef;
  color: #129bef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.control-btn[data-v-933ea7ca]:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.module-indicators[data-v-933ea7ca] {
  display: flex;
  gap: 8px;
  align-items: center;
}
.indicator[data-v-933ea7ca] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e9ecef;
  cursor: pointer;
  transition: all 0.3s ease;
}
.indicator.active[data-v-933ea7ca] {
  background: #129bef;
  transform: scale(1.3);
}
.indicator[data-v-933ea7ca]:hover {
  background: #4ab7ff;
  transform: scale(1.2);
}
@media (max-width: 768px) {
.products-showcase-section[data-v-933ea7ca] {
    padding: 60px 15px;
}
.content-header[data-v-933ea7ca] {
    margin-bottom: 40px;
}
.showcase-title[data-v-933ea7ca] {
    font-size: 1.8rem;
}
.showcase-subtitle[data-v-933ea7ca] {
    font-size: 16px;
}
.showcase-tabs[data-v-933ea7ca] {
    gap: 8px;
    margin-bottom: 30px;
}
.tab-button[data-v-933ea7ca] {
    padding: 10px 16px;
    font-size: 13px;
}
.tab-label[data-v-933ea7ca] {
    display: none;
}
.tab-icon[data-v-933ea7ca] {
    font-size: 20px;
}
.image-overlay[data-v-933ea7ca] {
    padding: 30px 20px 20px;
}
.overlay-title[data-v-933ea7ca] {
    font-size: 1.3rem;
}
.overlay-description[data-v-933ea7ca] {
    font-size: 0.9rem;
}
.showcase-controls[data-v-933ea7ca] {
    gap: 20px;
}
.control-btn[data-v-933ea7ca] {
    width: 45px;
    height: 45px;
    font-size: 18px;
}
}
@media (max-width: 480px) {
.products-showcase-section[data-v-933ea7ca] {
    padding: 40px 10px;
}
.showcase-tabs[data-v-933ea7ca] {
    gap: 6px;
}
.tab-button[data-v-933ea7ca] {
    padding: 8px 12px;
}
.tab-icon[data-v-933ea7ca] {
    font-size: 18px;
}
.control-btn[data-v-933ea7ca] {
    width: 40px;
    height: 40px;
    font-size: 16px;
}
}

.products-pricing-section[data-v-4175d1e1] {
  padding: 80px 20px;
  background: white;
  min-height: 60vh;
}
.pricing-container[data-v-4175d1e1] {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.content-header[data-v-4175d1e1] {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
  margin-bottom: 60px;
}
.section-badge[data-v-4175d1e1] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.badge-line[data-v-4175d1e1] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-4175d1e1] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-title[data-v-4175d1e1] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.pricing-subtitle[data-v-4175d1e1] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-grid[data-v-4175d1e1] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

/* Pricing Cards */
.pricing-card[data-v-4175d1e1] {
  background: white;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pricing-card[data-v-4175d1e1]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #129bef 0%, #4ab7ff 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.pricing-card[data-v-4175d1e1]:hover::before {
  transform: scaleX(1);
}
.pricing-card[data-v-4175d1e1]:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(18, 155, 239, 0.2);
}

/* Featured Plan */
.pricing-card.featured[data-v-4175d1e1] {
  transform: scale(1.05);
  border: 2px solid #129bef;
  box-shadow: 0 8px 30px rgba(18, 155, 239, 0.2);
}
.pricing-card.featured[data-v-4175d1e1]:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 25px 50px rgba(18, 155, 239, 0.3);
}
.featured-badge[data-v-4175d1e1] {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #129bef 0%, #4ab7ff 100%);
  color: white;
  padding: 8px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Plan Header */
.plan-header[data-v-4175d1e1] {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e9ecef;
}
.plan-badge[data-v-4175d1e1] {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
}
.plan-price[data-v-4175d1e1] {
  margin-bottom: 12px;
}
.price-amount[data-v-4175d1e1] {
  font-size: 2.5rem;
  font-weight: 800;
  color: #129bef;
}
.price-period[data-v-4175d1e1] {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}
.plan-trial[data-v-4175d1e1] {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

/* Plan Features */
.plan-features[data-v-4175d1e1] {
  margin-bottom: 30px;
}
.features-title[data-v-4175d1e1] {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
}
.features-list[data-v-4175d1e1] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-item[data-v-4175d1e1] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon[data-v-4175d1e1] {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 2px;
}
.feature-item.available .feature-icon[data-v-4175d1e1] {
  background: #129bef;
  color: white;
}
.feature-item.unavailable .feature-icon[data-v-4175d1e1] {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.feature-text[data-v-4175d1e1] {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.4;
}
.feature-item.unavailable .feature-text[data-v-4175d1e1] {
  color: #999;
}

/* Plan CTA */
.plan-cta-link[data-v-4175d1e1] {
  text-decoration: none;
  display: block;
}
.plan-cta[data-v-4175d1e1] {
  width: 100%;
  padding: 16px 24px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.basic-cta[data-v-4175d1e1] {
  background: #f8f9fa;
  color: #333;
  border: 2px solid #e9ecef;
}
.basic-cta[data-v-4175d1e1]:hover {
  background: #129bef;
  color: white;
  border-color: #129bef;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
}
.pro-cta[data-v-4175d1e1] {
  background: linear-gradient(135deg, #129bef 0%, #4ab7ff 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
}
.pro-cta[data-v-4175d1e1]:hover {
  background: linear-gradient(135deg, #4ab7ff 0%, #00effd 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(18, 155, 239, 0.4);
}
.enterprise-cta[data-v-4175d1e1] {
  background: #002176;
  color: white;
  box-shadow: 0 8px 25px rgba(0, 33, 118, 0.3);
}
.enterprise-cta[data-v-4175d1e1]:hover {
  background: #001a5e;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 33, 118, 0.4);
}
@media (max-width: 1024px) {
.pricing-grid[data-v-4175d1e1] {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}
.pricing-card.featured[data-v-4175d1e1] {
    transform: none;
}
.pricing-card.featured[data-v-4175d1e1]:hover {
    transform: translateY(-8px);
}
}
@media (max-width: 768px) {
.products-pricing-section[data-v-4175d1e1] {
    padding: 60px 15px;
}
.content-header[data-v-4175d1e1] {
    margin-bottom: 40px;
}
.pricing-title[data-v-4175d1e1] {
    font-size: 1.8rem;
}
.pricing-subtitle[data-v-4175d1e1] {
    font-size: 16px;
}
.pricing-grid[data-v-4175d1e1] {
    grid-template-columns: 1fr;
    gap: 20px;
}
.pricing-card[data-v-4175d1e1] {
    padding: 30px 20px;
}
.price-amount[data-v-4175d1e1] {
    font-size: 2rem;
}
.plan-cta[data-v-4175d1e1] {
    padding: 14px 20px;
    font-size: 15px;
}
}
@media (max-width: 480px) {
.products-pricing-section[data-v-4175d1e1] {
    padding: 40px 10px;
}
.pricing-card[data-v-4175d1e1] {
    padding: 25px 15px;
}
.plan-header[data-v-4175d1e1] {
    margin-bottom: 25px;
    padding-bottom: 15px;
}
.price-amount[data-v-4175d1e1] {
    font-size: 1.8rem;
}
.plan-cta[data-v-4175d1e1] {
    padding: 12px 18px;
    font-size: 14px;
}
.features-list[data-v-4175d1e1] {
    gap: 12px;
}
.feature-text[data-v-4175d1e1] {
    font-size: 13px;
}
}

.products-demo-section[data-v-7b1f2409] {
  padding: 60px 20px;
  background: #ffffff;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid;
  border-image: linear-gradient(to right, #ffffff, #e2e8f0, #ffffff) 1;
  border-bottom: 2px solid;
}
.demo-container[data-v-7b1f2409] {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.form-container[data-v-7b1f2409] {
  background: #ffffff;
  border-radius: 24px;
  padding: 50px;
  width: 100%;
  max-width: 1000px;
}
.form-header[data-v-7b1f2409] {
  margin-bottom: 40px;
}
.demo-title[data-v-7b1f2409] {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  color: #000000;
}
.demo-title .highlight[data-v-7b1f2409] {
  color: #129bef;
  font-weight: 600;
}
.demo-description[data-v-7b1f2409] {
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
  margin: 0;
}
.demo-form[data-v-7b1f2409] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row[data-v-7b1f2409] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-column[data-v-7b1f2409] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-group[data-v-7b1f2409] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label[data-v-7b1f2409] {
  color: #000000;
  font-weight: 600;
  font-size: 14px;
}
.form-group input[data-v-7b1f2409],
.form-group select[data-v-7b1f2409],
.form-group textarea[data-v-7b1f2409] {
  padding: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #000000;
  font-size: 16px;
  transition: all 0.3s ease;
}
.form-group input[data-v-7b1f2409]::placeholder,
.form-group textarea[data-v-7b1f2409]::placeholder {
  color: #9ca3af;
}
.form-group input[data-v-7b1f2409]:focus,
.form-group select[data-v-7b1f2409]:focus,
.form-group textarea[data-v-7b1f2409]:focus {
  outline: none;
  border-color: #129bef;
  box-shadow: 0 0 0 3px rgba(18, 155, 239, 0.1);
}
.submit-button[data-v-7b1f2409] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #129bef;
  color: #ffffff;
  border: none;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  width: 100%;
}
.submit-button[data-v-7b1f2409]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
}
.submit-button[data-v-7b1f2409]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.submit-button[data-v-7b1f2409]:disabled:hover {
  transform: none;
  box-shadow: none;
}
.loading-spinner[data-v-7b1f2409] {
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin-7b1f2409 1s linear infinite;
}
@keyframes spin-7b1f2409 {
0% {
    transform: rotate(0deg);
}
100% {
    transform: rotate(360deg);
}
}
.submit-message[data-v-7b1f2409] {
  margin-top: 15px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
.submit-message.success[data-v-7b1f2409] {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
}
.benefits[data-v-7b1f2409] {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}
.benefit-item[data-v-7b1f2409] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-size: 14px;
  text-align: center;
}
.benefit-item svg[data-v-7b1f2409] {
  color: #129bef;
  margin-bottom: 4px;
}
.benefit-item span[data-v-7b1f2409] {
  font-weight: 500;
}

/* Responsive design */
@media (max-width: 968px) {
.form-row[data-v-7b1f2409] {
    grid-template-columns: 1fr;
}
.benefits[data-v-7b1f2409] {
    flex-direction: column;
    gap: 20px;
}
}
@media (max-width: 768px) {
.products-demo-section[data-v-7b1f2409] {
    padding: 40px 20px;
}
.form-container[data-v-7b1f2409] {
    padding: 40px 30px;
}
.demo-title[data-v-7b1f2409] {
    font-size: 2rem;
}
.demo-description[data-v-7b1f2409] {
    font-size: 15px;
}
}
@media (max-width: 480px) {
.form-container[data-v-7b1f2409] {
    padding: 30px 20px;
    border-radius: 16px;
}
.demo-title[data-v-7b1f2409] {
    font-size: 1.75rem;
}
.submit-button[data-v-7b1f2409] {
    padding: 16px 28px;
    font-size: 14px;
}
.benefits[data-v-7b1f2409] {
    gap: 16px;
}
.benefit-item[data-v-7b1f2409] {
    font-size: 13px;
}
}

[data-v-7c41afcc] {
  font-family: 'Manrope', sans-serif;
}
.link[data-v-7c41afcc] {
  color: gray;
}
.modal-overlay[data-v-7c41afcc] {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.modal[data-v-7c41afcc] {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.modal h2[data-v-7c41afcc] {
  color: #333;
  font-size: 20px;
  font-family: 'Manrope', sans-serif;
}
.modal p[data-v-7c41afcc] {
  color: #666;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
}
.modal-button[data-v-7c41afcc] {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
}
.confirm[data-v-7c41afcc] {
  background-color: #28a745;
  color: #fff;
}
.cancel[data-v-7c41afcc] {
  background-color: #dc3545;
  color: #fff;
}
.success[data-v-7c41afcc] {
  background-color: #007bff;
  color: #fff;
}

* {
  font-family: 'Manrope', sans-serif;
}
.fijo {
  width: 120px;
  padding: 0.5em;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Manrope', sans-serif;
}
.numbers {
  display: flex;
  gap: 10px;
  align-items: center;
}
label {
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}
.part {
  width: 49%;
}
input {
  height: 42px;
  font-size: 18px;
  font-weight: 300;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  padding: 0px 12px;
  font-family: 'Manrope', sans-serif;
}
textarea {
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  padding: 25px 25px;
  font-size: 18px;
  font-weight: 300;
  font-family: 'Manrope', sans-serif;
}
.send {
  background: #1297ef;
  color: white;
  height: 45px;
  width: 100%;
  margin: 10px 0px;
  border: none;
  border-radius: 6px;
  font-size: 17px;
  cursor: pointer;
  transition: 150ms linear;
  font-family: 'Manrope', sans-serif;
}
.reverse-buttons {
  display: flex;
  justify-content: flex-start;
  flex-direction: row-reverse;
}
.send:hover {
  transform: scale(1.023);
  background: #0d69a7;
  box-shadow: 1px 1px 10px #0003;
}
.contact-container {
  display: flex;
    padding: 3em;
    max-width: 1400px;
    margin: 20px auto
}
.contact-form {
  padding: 3em 2em 0px;
  background: #f9f9f9;
  border-radius: 10px;
  margin: 0px 2em 0px 0px;
  width: 70%;
}
.text-gradient {
  background: linear-gradient(90deg, #1297ef 22%, #0a5789 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-image {
  background-image: url(/assets/contact-e-zWjxlx.png);
  background-size: cover;
  background-position: center;
  width: 65%;
  height: 700px;
  border-radius: 10px;
}
.form-two {
  display: flex;
  justify-content: space-around;
}
.contact-form-header h1 {
  font-size: 37px;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
}
.contact-form-header span {
  font-size: 20px;
  line-height: 100%;
  font-weight: 300;
  color: #6c6c6c;
  font-family: 'Manrope', sans-serif;
}
.column {
  display: flex;
  margin: 10px 0px 0px;
  flex-direction: column;
}
@media (width < 768px) {
.contact-container {
    display: flex;
    padding: 1em;
}
.contact-image {
    display: none;
}
.contact-form {
    padding: 3em 1em 0px;
    background: #f9f9f9;
    border-radius: 10px;
    width: auto;
    margin: 0px;
}
.form-two {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
}
.part {
    width: auto;
}
.numbers {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
}
.contact-container {
    display: flex;
    padding: 1em;
    flex-direction: column;
}
}

.breadcrumbs[data-v-adfd3977] {
  margin-bottom: 20px;
}
.breadcrumbs-list[data-v-adfd3977] {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumb-item[data-v-adfd3977] {
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb-link[data-v-adfd3977] {
  color: #1297ef;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumb-link[data-v-adfd3977]:hover {
  color: #0d5fef;
  text-decoration: underline;
}
.breadcrumb-current[data-v-adfd3977] {
  color: #64748b;
  font-weight: 500;
}
.breadcrumb-separator[data-v-adfd3977] {
  color: #cbd5e1;
  margin: 0 4px;
}

.container[data-v-6e922aa3] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.blog-hero[data-v-6e922aa3] {
  padding: 100px 0 100px;
  background-image: url('/assets/bannerblog3-BPZMRFro.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.blog-hero[data-v-6e922aa3]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.blog-hero .container[data-v-6e922aa3] {
  position: relative;
  z-index: 2;
}

/* Breadcrumbs ya están en el componente */
.hero-content h1[data-v-6e922aa3] {
  font-size: 3.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-description[data-v-6e922aa3] {
  font-size: 1.25rem;
  color: #e2e8f0;
  max-width: 600px;
  line-height: 1.6;
}

/* Featured Post */
.featured-post[data-v-6e922aa3] {
  padding: 80px 0;
  background: white;
}
.featured-content[data-v-6e922aa3] {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.featured-image-link[data-v-6e922aa3] {
  text-decoration: none;
  color: inherit;
  display: block;
}
.featured-image[data-v-6e922aa3] {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.featured-image[data-v-6e922aa3]:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.18);
}
.featured-image img[data-v-6e922aa3] {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured-image:hover img[data-v-6e922aa3] {
  transform: scale(1.05);
}
.featured-overlay[data-v-6e922aa3] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  padding: 60px 40px 40px;
  color: white;
}
.featured-overlay h2[data-v-6e922aa3] {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.featured-details[data-v-6e922aa3] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.featured-badge[data-v-6e922aa3] {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.featured-badge svg[data-v-6e922aa3] {
  width: 14px;
  height: 14px;
}
.featured-excerpt[data-v-6e922aa3] {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
}
.post-meta[data-v-6e922aa3] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.author-info[data-v-6e922aa3] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar[data-v-6e922aa3] {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}
.author-details[data-v-6e922aa3] {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.author-name[data-v-6e922aa3] {
  font-weight: 600;
  color: #1e293b;
  font-size: 15px;
}
.publish-date[data-v-6e922aa3] {
  font-size: 13px;
  color: #64748b;
}
.post-categories[data-v-6e922aa3] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.category-tags[data-v-6e922aa3] {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.category-tag[data-v-6e922aa3] {
  padding: 6px 14px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.category-tag[data-v-6e922aa3]:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}
.read-time[data-v-6e922aa3] {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}
.read-time[data-v-6e922aa3]::before {
  content: '⏱';
  font-size: 14px;
}
.read-time[data-v-6e922aa3] {
  padding: 6px 12px;
  background: #dbeafe;
  color: #1e40af;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

/* Guías Completas Section */
.guides-section[data-v-6e922aa3] {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}
.guides-section .section-header[data-v-6e922aa3] {
  text-align: center;
  margin-bottom: 50px;
}
.guides-section .section-header h2[data-v-6e922aa3] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle[data-v-6e922aa3] {
  font-size: 1.125rem;
  color: #64748b;
  margin: 0;
}
.guides-grid[data-v-6e922aa3] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 32px;
}
.guide-card-link[data-v-6e922aa3] {
  text-decoration: none;
  color: inherit;
  display: block;
}
.guide-card[data-v-6e922aa3] {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.guide-card[data-v-6e922aa3]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1297ef, #4ab7ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.guide-card[data-v-6e922aa3]:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(18, 151, 239, 0.15);
  border-color: #e2e8f0;
}
.guide-card[data-v-6e922aa3]:hover::before {
  transform: scaleX(1);
}
.guide-badge[data-v-6e922aa3] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}
.guide-content[data-v-6e922aa3] {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guide-title[data-v-6e922aa3] {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.guide-card:hover .guide-title[data-v-6e922aa3] {
  color: #1297ef;
}
.guide-description[data-v-6e922aa3] {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guide-footer[data-v-6e922aa3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}
.guide-type[data-v-6e922aa3] {
  padding: 6px 14px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.guide-arrow[data-v-6e922aa3] {
  font-size: 20px;
  color: #1297ef;
  font-weight: 600;
  transition: transform 0.3s ease;
}
.guide-card:hover .guide-arrow[data-v-6e922aa3] {
  transform: translateX(4px);
}

/* Blog Posts Grid */
.blog-posts[data-v-6e922aa3] {
  padding: 100px 0;
  background: #f8fafc;
}
.section-header[data-v-6e922aa3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.section-header h2[data-v-6e922aa3] {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.view-all-btn[data-v-6e922aa3] {
  padding: 12px 24px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.view-all-btn[data-v-6e922aa3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 151, 239, 0.3);
}
.posts-grid[data-v-6e922aa3] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 32px;
}
.post-card-link[data-v-6e922aa3] {
  text-decoration: none;
  color: inherit;
  display: block;
}
.post-card[data-v-6e922aa3] {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.post-card[data-v-6e922aa3]:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border-color: #e2e8f0;
}
.post-image[data-v-6e922aa3] {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.post-image[data-v-6e922aa3]::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-card:hover .post-image[data-v-6e922aa3]::after {
  opacity: 1;
}
.post-image img[data-v-6e922aa3] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.post-card:hover .post-image img[data-v-6e922aa3] {
  transform: scale(1.1);
}
.post-content[data-v-6e922aa3] {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.post-meta[data-v-6e922aa3] {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 16px;
}
.post-category[data-v-6e922aa3] {
  padding: 6px 14px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 12px;
}
.post-date[data-v-6e922aa3] {
  font-size: 12px;
  color: #64748b;
  font-weight: 500;
}
.post-title[data-v-6e922aa3] {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.post-card:hover .post-title[data-v-6e922aa3] {
  color: #1297ef;
}
.post-excerpt[data-v-6e922aa3] {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.9375rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.post-footer[data-v-6e922aa3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}
.post-author-info[data-v-6e922aa3] {
  display: flex;
  align-items: center;
  gap: 10px;
}
.post-author-avatar[data-v-6e922aa3] {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}
.post-author[data-v-6e922aa3] {
  color: #475569;
  font-weight: 600;
  font-size: 13px;
}
.post-meta-footer[data-v-6e922aa3] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.post-read-time[data-v-6e922aa3] {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}
.post-read-time[data-v-6e922aa3]::before {
  content: '⏱';
  font-size: 13px;
}
.post-date-short[data-v-6e922aa3] {
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
}
.post-tags-footer[data-v-6e922aa3] {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}
.post-tag[data-v-6e922aa3] {
  padding: 4px 10px;
  background: #f8fafc;
  color: #64748b;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

/* Newsletter Section */
.newsletter[data-v-6e922aa3] {
  padding: 80px 0;
  background: linear-gradient(135deg, #1297ef 0%, #4ab7ff 100%);
  color: white;
}
.newsletter-content[data-v-6e922aa3] {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-content h2[data-v-6e922aa3] {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.parrafo[data-v-6e922aa3] {
  margin: 0px 0px 40px 0px;
}
.newsletter-content p[data-v-6e922aa3] {
  font-size: 1.125rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.newsletter-form[data-v-6e922aa3] {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-input[data-v-6e922aa3] {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.newsletter-btn[data-v-6e922aa3] {
  padding: 12px 24px;
  background: white;
  color: #1297ef;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-btn[data-v-6e922aa3]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ===== SKELETON LOADER STYLES ===== */
.skeleton-container[data-v-6e922aa3] {
  padding: 40px 0;
}

/* Featured Post Skeleton */
.featured-post-skeleton[data-v-6e922aa3] {
  margin-bottom: 60px;
}
.featured-skeleton-content[data-v-6e922aa3] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.featured-skeleton-image[data-v-6e922aa3] {
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 12px;
}
.featured-skeleton-details[data-v-6e922aa3] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.skeleton-author[data-v-6e922aa3] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.skeleton-avatar[data-v-6e922aa3] {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
}
.skeleton-author-text[data-v-6e922aa3] {
  width: 120px;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-date[data-v-6e922aa3] {
  width: 180px;
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-title[data-v-6e922aa3] {
  width: 100%;
  height: 32px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-tags[data-v-6e922aa3] {
  display: flex;
  gap: 8px;
}
.skeleton-tag[data-v-6e922aa3] {
  width: 80px;
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 12px;
}

/* Posts Grid Skeleton */
.posts-skeleton[data-v-6e922aa3] {
  margin-top: 60px;
}
.section-header-skeleton[data-v-6e922aa3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.skeleton-section-title[data-v-6e922aa3] {
  width: 200px;
  height: 32px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-button[data-v-6e922aa3] {
  width: 150px;
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 8px;
}
.posts-grid-skeleton[data-v-6e922aa3] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.post-card-skeleton[data-v-6e922aa3] {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.skeleton-post-image[data-v-6e922aa3] {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
}
.skeleton-post-content[data-v-6e922aa3] {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.skeleton-post-category[data-v-6e922aa3] {
  width: 80px;
  height: 20px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 10px;
}
.skeleton-post-title[data-v-6e922aa3] {
  width: 100%;
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-post-excerpt[data-v-6e922aa3] {
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-post-excerpt[data-v-6e922aa3]:nth-child(2) {
  width: 80%;
}
.skeleton-post-meta[data-v-6e922aa3] {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}
.skeleton-post-author[data-v-6e922aa3] {
  width: 100px;
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}
.skeleton-post-date[data-v-6e922aa3] {
  width: 80px;
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer-6e922aa3 1.5s infinite;
  border-radius: 4px;
}

/* Shimmer Animation */
@keyframes shimmer-6e922aa3 {
0% {
    background-position: -200% 0;
}
100% {
    background-position: 200% 0;
}
}

/* Responsive Design */
@media (max-width: 768px) {
.hero-content h1[data-v-6e922aa3] {
    font-size: 2.5rem;
}
.featured-content[data-v-6e922aa3] {
    grid-template-columns: 1fr;
    gap: 40px;
}
.featured-image img[data-v-6e922aa3] {
    height: 360px;
}
.featured-overlay[data-v-6e922aa3] {
    padding: 40px 30px 30px;
}
.featured-overlay h2[data-v-6e922aa3] {
    font-size: 1.5rem;
}
.posts-grid[data-v-6e922aa3] {
    grid-template-columns: 1fr;
    gap: 24px;
}
.section-header[data-v-6e922aa3] {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
.section-header h2[data-v-6e922aa3] {
    font-size: 2rem;
}
.posts-grid[data-v-6e922aa3] {
    grid-template-columns: 1fr;
}
.guides-grid[data-v-6e922aa3] {
    grid-template-columns: 1fr;
    gap: 24px;
}
.guide-card[data-v-6e922aa3] {
    padding: 30px;
}
.guide-title[data-v-6e922aa3] {
    font-size: 1.25rem;
}
.newsletter-form[data-v-6e922aa3] {
    flex-direction: column;
}
.newsletter-content h2[data-v-6e922aa3] {
    font-size: 2rem;
}

  /* Skeleton Responsive */
.featured-skeleton-content[data-v-6e922aa3] {
    grid-template-columns: 1fr;
    gap: 30px;
}
.featured-skeleton-image[data-v-6e922aa3] {
    height: 300px;
}
.posts-grid-skeleton[data-v-6e922aa3] {
    grid-template-columns: 1fr;
}
.section-header-skeleton[data-v-6e922aa3] {
    flex-direction: column;
    gap: 20px;
    text-align: center;
}
}
@media (max-width: 480px) {
.container[data-v-6e922aa3] {
    padding: 0 15px;
}
.blog-hero[data-v-6e922aa3] {
    padding: 60px 0 40px;
}
.hero-content h1[data-v-6e922aa3] {
    font-size: 2rem;
}
.featured-post[data-v-6e922aa3] {
    padding: 40px 0;
}
.blog-posts[data-v-6e922aa3] {
    padding: 60px 0;
}
.guides-section[data-v-6e922aa3] {
    padding: 60px 0;
}
.guide-card[data-v-6e922aa3] {
    padding: 24px;
}
.guide-title[data-v-6e922aa3] {
    font-size: 1.125rem;
}
.guides-section .section-header h2[data-v-6e922aa3] {
    font-size: 2rem;
}
}

.related-links[data-v-2efea8f9] {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 1px solid #e5e7eb;
}
.related-links-title[data-v-2efea8f9] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 30px;
}
.related-links-grid[data-v-2efea8f9] {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.related-link-card[data-v-2efea8f9] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.related-link-card[data-v-2efea8f9]:hover {
  background: white;
  border-color: #1297ef;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 151, 239, 0.15);
}
.related-link-content[data-v-2efea8f9] {
  flex: 1;
}
.related-link-title[data-v-2efea8f9] {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.4;
}
.related-link-description[data-v-2efea8f9] {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.5;
}
.related-link-type[data-v-2efea8f9] {
  display: inline-block;
  padding: 4px 12px;
  background: #e0f2fe;
  color: #1297ef;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
}
.related-link-arrow[data-v-2efea8f9] {
  color: #1297ef;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
}
.related-link-card:hover .related-link-arrow[data-v-2efea8f9] {
  transform: translateX(4px);
}
@media (max-width: 768px) {
.related-links-grid[data-v-2efea8f9] {
    grid-template-columns: 1fr;
}
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.post-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 40px;
}
.breadcrumbs a {
  color: #1297ef;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs a:hover {
  color: #0d5fef;
}
.separator {
  color: #cbd5e1;
}
.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.post-category {
  padding: 6px 12px;
  background: #1297ef;
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.post-date {
  color: #64748b;
  font-size: 14px;
}
.post-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}
.post-excerpt {
  font-size: 1.25rem;
  color: #64748b;
  margin: 30px 0;
  line-height: 1.6;
  max-width: 800px;
}
.author-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0px 0px 0px;
}
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}
.author-details {
  display: flex;
  flex-direction: column;
}
.author-name {
  font-weight: 600;
  color: #1e293b;
  font-size: 16px;
}
.read-time {
  color: #64748b;
  font-size: 14px;
}

/* Featured Image */
.featured-image-section {
  padding: 10px 0;
}
.featured-image {
  border-radius: 12px;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Article Content */
.article-content {
  padding: 60px 0;
  background: white;
}
.content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}
.main-content {
  max-width: 800px;
}
.content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
}
.content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin: 60px 0 30px;
}
.content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 40px 0 20px;
}
.content p {
  margin-bottom: 30px;
}
.content ul {
  margin: 30px 0;
  padding-left: 20px;
}
.content li {
  margin-bottom: 15px;
}
.content strong {
  font-weight: 600;
  color: #1e293b;
}
.content-image {
  width: -webkit-fill-available;
  border-radius: 12px;
  margin: 20px 0;
}
.parrafo {
  margin: 0px 0px 40px 0px;
}
.article-tags {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}
.article-tags h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  padding: 8px 16px;
  background: #f3f4f6;
  color: #374151;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.tag:hover {
  background: #1297ef;
  color: white;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-section {
  margin-bottom: 40px;
}
.author-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}
.author-avatar-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 24px;
  margin: 0 auto 15px;
}
.author-card h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
}
.author-card p {
  color: #64748b;
  font-size: 14px;
}
.advertisement-card {
  background: #f8fafc;
  border-radius: 12px;
  text-align: center;
  margin-top: 20px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.advertisement-card:hover {
  border-color: #1297ef;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(18, 151, 239, 0.15);
}
.advertisement-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.advertisement-link:hover {
  color: #1297ef;
}
.advertisement-image {
  width: 360px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.advertisement-image:hover {
  transform: scale(1.05);
}
.advertisement-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.advertisement-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.advertisement-content p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}
.related-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.related-post {
  display: flex;
  gap: 15px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.related-post:hover {
  background: #f8fafc;
  transform: translateX(5px);
}
.related-post-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.related-post-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
  line-height: 1.4;
}
.related-post-date {
  font-size: 12px;
  color: #64748b;
}

/* Newsletter Section */
.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #1297ef 0%, #4ab7ff 100%);
  color: white;
}
.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.newsletter-content p {
  font-size: 1.125rem;
  margin-bottom: 40px;
  opacity: 0.9;
}
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.newsletter-btn {
  padding: 12px 24px;
  background: white;
  color: #1297ef;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ===== SKELETON LOADER STYLES ===== */
.skeleton-container {
  padding: 40px 0;
}

/* Hero Section Skeleton */
.post-hero-skeleton {
  padding: 60px 0 40px;
}
.breadcrumbs-skeleton {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
}
.skeleton-breadcrumb {
  width: 60px;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-separator {
  width: 8px;
  height: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
}
.hero-content-skeleton {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.skeleton-post-date {
  width: 150px;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-post-title {
  width: 100%;
  height: 48px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-featured-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 12px;
}
.author-info-skeleton {
  display: flex;
  align-items: center;
  gap: 15px;
}
.skeleton-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}
.skeleton-author-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.skeleton-author-name {
  width: 120px;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-read-time {
  width: 60px;
  height: 14px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* Article Content Skeleton */
.article-content-skeleton {
  padding: 60px 0;
}
.content-wrapper-skeleton {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.main-content-skeleton {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.content-skeleton {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.skeleton-paragraph {
  width: 100%;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-paragraph:nth-child(2) {
  width: 95%;
}
.skeleton-paragraph:nth-child(3) {
  width: 90%;
}
.skeleton-heading {
  width: 70%;
  height: 32px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}
.article-tags-skeleton {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.skeleton-tags-title {
  width: 100px;
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
.skeleton-tags {
  display: flex;
  gap: 10px;
}
.skeleton-tag {
  width: 80px;
  height: 32px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 16px;
}

/* Sidebar Skeleton */
.sidebar-skeleton {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-section-skeleton {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.skeleton-sidebar-title {
  width: 150px;
  height: 24px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 20px;
}
.skeleton-sidebar-content {
  width: 100%;
  height: 200px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

/* Shimmer Animation */
@keyframes shimmer {
0% {
    background-position: -200% 0;
}
100% {
    background-position: 200% 0;
}
}

/* Responsive Design */
@media (max-width: 768px) {
.post-title {
    font-size: 2rem;
}
.content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
}
.sidebar {
    position: static;
}
.post-meta {
    flex-direction: column;
    gap: 10px;
}
.newsletter-form {
    flex-direction: column;
}
.newsletter-content h2 {
    font-size: 2rem;
}

  /* Skeleton Responsive */
.content-wrapper-skeleton {
    grid-template-columns: 1fr;
    gap: 40px;
}
.skeleton-featured-image {
    height: 300px;
}
.skeleton-post-title {
    height: 36px;
}
}
@media (max-width: 480px) {
.container {
    padding: 0 15px;
}
.post-hero {
    padding: 60px 0 40px;
}
.post-title {
    font-size: 1.75rem;
}
.featured-image img {
    height: 250px;
}
.article-content {
    padding: 40px 0;
}
}

.login-container[data-v-ca1b8fb4] {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 20px;
}
.login-card[data-v-ca1b8fb4] {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.login-header[data-v-ca1b8fb4] {
  text-align: center;
  margin-bottom: 30px;
}
.admin-icon[data-v-ca1b8fb4] {
  margin-bottom: 20px;
}
.admin-icon .material-symbols-outlined[data-v-ca1b8fb4] {
  font-size: 48px;
  color: #1297ef;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.login-header h1[data-v-ca1b8fb4] {
  color: #333;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
}
.login-header p[data-v-ca1b8fb4] {
  color: #666;
  font-size: 16px;
}
.login-form[data-v-ca1b8fb4] {
  margin-bottom: 30px;
}
.form-group[data-v-ca1b8fb4] {
  margin-bottom: 20px;
}
.form-group label[data-v-ca1b8fb4] {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
  font-size: 14px;
}
.form-input[data-v-ca1b8fb4] {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
}
.form-input[data-v-ca1b8fb4]:focus {
  outline: none;
  border-color: #1297ef;
  box-shadow: 0 0 0 3px rgba(18, 151, 239, 0.1);
}
.error-message[data-v-ca1b8fb4] {
  background: #fee;
  color: #c33;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid #fcc;
}
.info-message[data-v-ca1b8fb4] {
  background: #e8f4fd;
  color: #0c5460;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 14px;
  border: 1px solid #bee5eb;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-message .material-symbols-outlined[data-v-ca1b8fb4] {
  color: #1297ef;
  font-size: 18px;
}
.info-message p[data-v-ca1b8fb4] {
  margin: 0;
  font-weight: 500;
}
.btn-submit[data-v-ca1b8fb4] {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, #1e3c72, #2a5298);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}
.btn-submit[data-v-ca1b8fb4]:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30, 60, 114, 0.4);
}
.btn-submit[data-v-ca1b8fb4]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.login-footer[data-v-ca1b8fb4] {
  text-align: center;
  border-top: 1px solid #e1e5e9;
  padding-top: 20px;
}
.admin-notice[data-v-ca1b8fb4] {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(18, 151, 239, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(18, 151, 239, 0.2);
}
.admin-notice .material-symbols-outlined[data-v-ca1b8fb4] {
  color: #1297ef;
  font-size: 20px;
}
.admin-notice p[data-v-ca1b8fb4] {
  color: #333;
  font-size: 14px;
  margin: 0;
  font-weight: 500;
}
.login-footer p[data-v-ca1b8fb4] {
  color: #666;
  font-size: 14px;
  /* margin-bottom: 15px; */
  text-align: start;
}
.link-button[data-v-ca1b8fb4] {
  background: none;
  border: none;
  color: #1297ef;
  cursor: pointer;
  font-size: 14px;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.link-button[data-v-ca1b8fb4]:hover {
  color: #1e3c72;
}
@media (max-width: 480px) {
.login-card[data-v-ca1b8fb4] {
    padding: 30px 20px;
}
.login-header h1[data-v-ca1b8fb4] {
    font-size: 24px;
}
.form-input[data-v-ca1b8fb4] {
    font-size: 16px; /* Evita zoom en iOS */
}
}

.hero-section[data-v-0644a104] {
  margin-top: 90px;
  height: calc(100dvh - 90px);
  width: 100%;
  display: flex;
  background-image: url('/assets/backgroundrectangle-B9omIF2x.png');
  background-size: cover;
  background-position-y: bottom;
  padding: 90px;
  justify-content: center;
  align-items: center;
}
.desktop-only[data-v-0644a104] {
  display: inline;
}
@media (max-width: 768px) {
.desktop-only[data-v-0644a104] {
    display: none;
}
}
.hero-title[data-v-0644a104] {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-content[data-v-0644a104] {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}
.hero-content h1[data-v-0644a104] {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-container[data-v-0644a104] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-mask[data-v-0644a104] {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.hero-subtitle[data-v-0644a104] {
  font-size: clamp(1rem, 4vw, 1.5rem);
  color: white;
  font-weight: 400;
  opacity: 0.9;
  margin: 0;
  line-height: 1.2;
}
.hero-list[data-v-0644a104] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hero-description[data-v-0644a104] {
  font-size: 18px;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  font-weight: 300;
}
.hero-list li[data-v-0644a104] {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin: 10px 20px;
  font-weight: 300;
  list-style: disc;
}
.hero-badge[data-v-0644a104] {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-radius: 50px;
  width: fit-content;
  transition: all 0.3s ease;
}
.hero-badge[data-v-0644a104]:hover {
  transform: translateY(-2px);
}
.badge-text[data-v-0644a104] {
  background: white;
  color: #129bef;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-description[data-v-0644a104] {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.badge-arrow[data-v-0644a104] {
  color: #fff;
  transition: transform 0.3s ease;
}
.hero-badge:hover .badge-arrow[data-v-0644a104] {
  transform: translate(2px, -2px);
}
.hero-book[data-v-0644a104] {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-book img[data-v-0644a104] {
  height: 100%;
  max-height: 500px;
  object-fit: contain;
  width: auto;
}
.hero-cta-link[data-v-0644a104] {
  text-decoration: none;
  display: inline-block;
}
.hero-cta[data-v-0644a104] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: #129bef;
  border: none;
  padding: 18px 32px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.hero-cta-container[data-v-0644a104] {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.hero-cta-alternate[data-v-0644a104] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #129bef;
  color: white;
  border: 1px solid #fff;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}
.hero-cta[data-v-0644a104]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
.cta-arrow[data-v-0644a104] {
  transition: transform 0.3s ease;
}
.hero-cta:hover .cta-arrow[data-v-0644a104] {
  transform: translate(2px, -2px);
}
@media (max-width: 1024px) {
.hero-section[data-v-0644a104] {
    padding: 60px 40px;
    height: auto;
    min-height: 80vh;
}
.hero-details-container[data-v-0644a104] {
    gap: 40px;
}
}
@media (max-width: 768px) {
.hero-section[data-v-0644a104] {
    margin-top: 70px;
    padding: 40px 20px;
    height: auto;
    min-height: 70vh;
    flex-direction: column;
    gap: 40px;
}
.hero-container[data-v-0644a104] {
    width: 100%;
    max-width: 100%;
}
.hero-badge[data-v-0644a104] {
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 20px;
}
.badge-description[data-v-0644a104] {
    font-size: 16px;
}
.hero-title[data-v-0644a104] {
  font-size: clamp(1.8rem, 10vw, 2rem);
    line-height: 1.2;
    margin-bottom: 15px;
}
.hero-subtitle[data-v-0644a104] {
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.3;
    margin-bottom: 15px;
}
.hero-description[data-v-0644a104] {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}
.hero-list li[data-v-0644a104] {
    font-size: 15px;
    margin: 8px 0;
    padding-left: 20px;
}
.hero-cta-container[data-v-0644a104] {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
}
.hero-cta[data-v-0644a104],
  .hero-cta-alternate[data-v-0644a104] {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 16px;
}
.hero-book[data-v-0644a104] {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}
.hero-book img[data-v-0644a104] {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
}
}
@media (max-width: 480px) {
.hero-section[data-v-0644a104] {
    padding: 30px 15px;
    min-height: 60vh;
    gap: 30px;
}
.hero-badge[data-v-0644a104] {
    margin-bottom: 15px;
}
.badge-text[data-v-0644a104] {
    font-size: 11px;
    padding: 3px 10px;
}
.badge-description[data-v-0644a104] {
    font-size: 14px;
    line-height: 1.4;
}
.hero-title[data-v-0644a104] {
    font-size: clamp(1.8rem, 10vw, 2rem);
    margin-bottom: 12px;
}
.hero-subtitle[data-v-0644a104] {
    font-size: clamp(0.9rem, 5vw, 1.1rem);
    margin-bottom: 12px;
}
.hero-description[data-v-0644a104] {
    font-size: 15px;
    margin-bottom: 18px;
}
.hero-list li[data-v-0644a104] {
    font-size: 14px;
    margin: 6px 0;
    padding-left: 18px;
}
.hero-cta-container[data-v-0644a104] {
    gap: 12px;
    margin-top: 20px;
}
.hero-cta[data-v-0644a104],
  .hero-cta-alternate[data-v-0644a104] {
    padding: 14px 20px;
    font-size: 15px;
}
.hero-book[data-v-0644a104] {
    max-width: 250px;
}
.hero-book img[data-v-0644a104] {
    max-height: 350px;
}
}
@media (max-width: 360px) {
.hero-section[data-v-0644a104] {
    padding: 25px 12px;
    gap: 25px;
}
.hero-title[data-v-0644a104] {
    font-size: 1.6rem;
}
.hero-subtitle[data-v-0644a104] {
    font-size: 1rem;
}
.hero-description[data-v-0644a104] {
    font-size: 14px;
}
.hero-list li[data-v-0644a104] {
    font-size: 13px;
}
.hero-cta[data-v-0644a104],
  .hero-cta-alternate[data-v-0644a104] {
    padding: 12px 18px;
    font-size: 14px;
}
.hero-book[data-v-0644a104] {
    max-width: 220px;
}
}

.ebook-form-section[data-v-55f17efb] {
  padding: 80px 20px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}
.form-container[data-v-55f17efb] {
  max-width: 800px;
  width: 100%;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.form-content[data-v-55f17efb] {
  flex: 1;
}
.form-header[data-v-55f17efb] {
  margin-bottom: 40px;
}
.form-badge[data-v-55f17efb] {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.badge-line[data-v-55f17efb] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-55f17efb] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-title[data-v-55f17efb] {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    letter-spacing: -0.5px;
    margin: 0 0 16px 0;
    letter-spacing: -0.02em;
}
.form-description[data-v-55f17efb] {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.ebook-form[data-v-55f17efb] {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.form-row[data-v-55f17efb] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-field[data-v-55f17efb] {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label[data-v-55f17efb] {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0;
}
.field-input[data-v-55f17efb] {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background: white;
  transition: all 0.3s ease;
  outline: none;
}
.field-input[data-v-55f17efb]:focus {
  border-color: #129bef;
  box-shadow: 0 0 0 3px rgba(18, 155, 239, 0.1);
}
.field-input[data-v-55f17efb]::placeholder {
  color: #999;
}
.download-button[data-v-55f17efb] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #129bef;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  width: 100%;
}
.download-button[data-v-55f17efb]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
}
.button-arrow[data-v-55f17efb] {
  transition: transform 0.3s ease;
}
.download-button:hover .button-arrow[data-v-55f17efb] {
  transform: translate(2px, -2px);
}
.download-button[data-v-55f17efb]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}
.download-button[data-v-55f17efb]:disabled:hover {
  transform: none;
  box-shadow: none;
}
.loading-spinner[data-v-55f17efb] {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin-55f17efb 1s linear infinite;
}
@keyframes spin-55f17efb {
0% { transform: rotate(0deg);
}
100% { transform: rotate(360deg);
}
}
.success-message[data-v-55f17efb] {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #d1fae5;
  color: #065f46;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #a7f3d0;
}
.success-icon[data-v-55f17efb] {
  color: #10b981;
  flex-shrink: 0;
}
.success-message p[data-v-55f17efb] {
  margin: 0;
  font-weight: 500;
}
.error-message[data-v-55f17efb] {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fee2e2;
  color: #991b1b;
  padding: 16px;
  border-radius: 8px;
  margin-top: 20px;
  border: 1px solid #fecaca;
}
.error-icon[data-v-55f17efb] {
  color: #ef4444;
  flex-shrink: 0;
}
.error-message p[data-v-55f17efb] {
  margin: 0;
  font-weight: 500;
}
@media (max-width: 768px) {
.form-container[data-v-55f17efb] {
    flex-direction: column;
    gap: 40px;
}
.form-row[data-v-55f17efb] {
    grid-template-columns: 1fr;
    gap: 16px;
}
.ebook-form-section[data-v-55f17efb] {
    padding: 60px 15px;
}
.form-title[data-v-55f17efb] {
    font-size: 1.6rem;
}
.form-description[data-v-55f17efb] {
    font-size: 15px;
}
}
@media (max-width: 480px) {
.form-title[data-v-55f17efb] {
    font-size: 1.4rem;
}
.field-input[data-v-55f17efb] {
    padding: 10px 14px;
    font-size: 15px;
}
.download-button[data-v-55f17efb] {
    padding: 14px 28px;
    font-size: 15px;
}
}

.ebook-details-section[data-v-efc5b423] {
  padding: 80px 20px;
  background: white;
  min-height: 60vh;
}
.ebook-details-container[data-v-efc5b423] {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}
.ebook-image-column[data-v-efc5b423] {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ebook-stack[data-v-efc5b423] {
  position: relative;
}
.ebook-image[data-v-efc5b423] {
  width: 100%;
  height: 100%;
}
strong[data-v-efc5b423] {
  font-weight: 700;
}
.ebook-stats[data-v-efc5b423] {
  display: flex
;
    align-items: center;
    background: #129bef;
    color: white;
    padding: 20px 40px;
    border-radius: 12px;
    gap: 30px;
    box-shadow: 0 8px 25px rgba(18, 155, 239, 0.3);
    position: relative;
    top: -120px;
}
.stat-item[data-v-efc5b423] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number[data-v-efc5b423] {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.stat-label[data-v-efc5b423] {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}
.stat-divider[data-v-efc5b423] {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
}
.ebook-content-column[data-v-efc5b423] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-efc5b423] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-efc5b423] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-efc5b423] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-efc5b423] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-title[data-v-efc5b423] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.intro-text[data-v-efc5b423] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.benefits-list[data-v-efc5b423] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item[data-v-efc5b423] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.check-icon[data-v-efc5b423] {
  width: 30px;
  height: 30px;
  background: #129bef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon .material-symbols-outlined[data-v-efc5b423] {
  color: #fff;
  font-size: 18px;
}
.benefit-item span[data-v-efc5b423] {
  font-size: 16px;
  line-height: 1.5;
  color: #666;
}
.download-cta[data-v-efc5b423] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #129bef;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 20px;
}
.download-cta[data-v-efc5b423]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
.cta-arrow[data-v-efc5b423] {
  transition: transform 0.3s ease;
}
.download-cta:hover .cta-arrow[data-v-efc5b423] {
  transform: translate(2px, -2px);
}
@media (max-width: 768px) {
.ebook-details-section[data-v-efc5b423] {
    padding: 60px 15px;
}
.ebook-details-container[data-v-efc5b423] {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
}
.ebook-stack[data-v-efc5b423] {
}
.ebook-stats[data-v-efc5b423] {
    gap: 15px;
}
.stat-number[data-v-efc5b423] {
    font-size: 20px;
}
.stat-label[data-v-efc5b423] {
    font-size: 11px;
}
.main-title[data-v-efc5b423] {
    font-size: 1.8rem;
}
.intro-text[data-v-efc5b423] {
    font-size: 16px;
    text-align: start;
}
.benefit-item[data-v-efc5b423] {
    text-align: left;
}
.download-cta[data-v-efc5b423] {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}
}
@media (max-width: 480px) {
.ebook-stats[data-v-efc5b423] {
    gap: 5px;
    padding: 20px 20px;
}
.stat-divider[data-v-efc5b423] {
    width: 40px;
    height: 1px;
}
.benefits-list[data-v-efc5b423] {
    gap: 16px;
}
.benefit-item span[data-v-efc5b423] {
    font-size: 15px;
}
}

.ebook-benefits-section[data-v-77f8de8e] {
  padding: 80px 20px;
  background: #129bef;
  min-height: 60vh;
}
.benefits-container[data-v-77f8de8e] {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: center;
}
.benefits-content[data-v-77f8de8e] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-77f8de8e] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-77f8de8e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-77f8de8e] {
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
}
.badge-text[data-v-77f8de8e] {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-title[data-v-77f8de8e] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: white;
  line-height: 1.2;
  margin: 0;
}
.intro-text[data-v-77f8de8e] {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}
.intro-text strong[data-v-77f8de8e] {
  color: white;
  font-weight: 600;
}
.benefits-list[data-v-77f8de8e] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-item[data-v-77f8de8e] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.check-icon[data-v-77f8de8e] {
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon .material-symbols-outlined[data-v-77f8de8e] {
  color: #129bef;
  font-size: 18px;
}
.benefit-item span[data-v-77f8de8e] {
  font-size: 16px;
  line-height: 1.5;
  color: white;
}
.download-cta[data-v-77f8de8e] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: white;
  color: #129bef;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 20px;
}
.download-cta[data-v-77f8de8e]:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}
.cta-arrow[data-v-77f8de8e] {
  transition: transform 0.3s ease;
}
.download-cta:hover .cta-arrow[data-v-77f8de8e] {
  transform: translate(2px, -2px);
}
.benefits-image-column[data-v-77f8de8e] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ebook-stack[data-v-77f8de8e] {
  position: relative;
  width: 100%;
}
.benefits-image[data-v-77f8de8e] {
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}
@media (max-width: 1024px) {
.benefits-container[data-v-77f8de8e] {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}
.benefits-image-column[data-v-77f8de8e] {
    order: -1;
}
.ebook-stack[data-v-77f8de8e] {
    max-width: 250px;
}
}
@media (max-width: 768px) {
.ebook-benefits-section[data-v-77f8de8e] {
    padding: 60px 15px;
}
.benefits-container[data-v-77f8de8e] {
    gap: 30px;
}
.main-title[data-v-77f8de8e] {
    font-size: 1.8rem;
}
.intro-text[data-v-77f8de8e] {
    font-size: 16px;
}
.benefit-item[data-v-77f8de8e] {
    text-align: left;
}
.download-cta[data-v-77f8de8e] {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}
.benefits-image[data-v-77f8de8e] {
    max-width: 250px;
}
}
@media (max-width: 480px) {
.ebook-benefits-section[data-v-77f8de8e] {
    padding: 40px 10px;
}
.benefits-list[data-v-77f8de8e] {
    gap: 16px;
}
.benefit-item span[data-v-77f8de8e] {
    font-size: 15px;
}
}

.ebook-content-section[data-v-1335ad7e] {
  padding: 80px 20px;
  background: white;
  min-height: 60vh;
}
.content-container[data-v-1335ad7e] {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.content-image-column[data-v-1335ad7e] {
  display: flex;
  justify-content: center;
  align-items: center;
}
.magazine-stack[data-v-1335ad7e] {
  position: relative;
  width: 100%;
  max-width: 650px;
}
.magazine-image[data-v-1335ad7e] {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}
.content-text-column[data-v-1335ad7e] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-1335ad7e] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-1335ad7e] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-1335ad7e] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-1335ad7e] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-title[data-v-1335ad7e] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.intro-text[data-v-1335ad7e] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.content-list[data-v-1335ad7e] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-item[data-v-1335ad7e] {
  display: flex;
  align-items: center;
  gap: 16px;
}
.number-icon[data-v-1335ad7e] {
  width: 32px;
  height: 32px;
  background: #129bef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.number-icon .number[data-v-1335ad7e] {
  color: white;
  font-size: 16px;
  font-weight: 600;
}
.content-item span[data-v-1335ad7e] {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
}
.download-cta[data-v-1335ad7e] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #129bef;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 20px;
}
.download-cta[data-v-1335ad7e]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
.cta-arrow[data-v-1335ad7e] {
  transition: transform 0.3s ease;
}
.download-cta:hover .cta-arrow[data-v-1335ad7e] {
  transform: translate(2px, -2px);
}
@media (max-width: 1024px) {
.content-container[data-v-1335ad7e] {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}
.content-image-column[data-v-1335ad7e] {
    order: -1;
}
.magazine-stack[data-v-1335ad7e] {
    max-width: 400px;
}
}
@media (max-width: 768px) {
.ebook-content-section[data-v-1335ad7e] {
    padding: 60px 15px;
}
.content-container[data-v-1335ad7e] {
    gap: 30px;
}
.main-title[data-v-1335ad7e] {
    font-size: 1.8rem;
}
.intro-text[data-v-1335ad7e] {
    font-size: 16px;
}
.content-item[data-v-1335ad7e] {
    text-align: left;
}
.download-cta[data-v-1335ad7e] {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}
.magazine-stack[data-v-1335ad7e] {
    max-width: 300px;
}
}
@media (max-width: 480px) {
.ebook-content-section[data-v-1335ad7e] {
    padding: 40px 10px;
}
.content-list[data-v-1335ad7e] {
    gap: 16px;
}
.content-item span[data-v-1335ad7e] {
    font-size: 15px;
}
.magazine-stack[data-v-1335ad7e] {
    max-width: 250px;
}
}

.ebook-about-section[data-v-23d610a1] {
  padding: 80px 20px;
  background: #fff;
  min-height: 60vh;
}
.about-container[data-v-23d610a1] {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-content[data-v-23d610a1] {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.content-header[data-v-23d610a1] {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-badge[data-v-23d610a1] {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-line[data-v-23d610a1] {
  width: 40px;
  height: 2px;
  background: #129bef;
}
.badge-text[data-v-23d610a1] {
  color: #129bef;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.main-title[data-v-23d610a1] {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  color: #333;
  line-height: 1.2;
  margin: 0;
}
.intro-text[data-v-23d610a1] {
  font-size: 18px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}
.features-list[data-v-23d610a1] {
  list-style: none;
  padding: 0;
  gap: 15px;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.feature-item[data-v-23d610a1] {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.check-icon[data-v-23d610a1] {
  width: 24px;
  height: 24px;
  background: #129bef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.check-icon .material-symbols-outlined[data-v-23d610a1] {
  color: #fff;
  font-size: 18px;
}
.feature-item span[data-v-23d610a1] {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.download-cta[data-v-23d610a1] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #129bef;
  color: white;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  margin-top: 20px;
}
.download-cta[data-v-23d610a1]:hover {
  background: #0ea5e9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 155, 239, 0.4);
}
.cta-arrow[data-v-23d610a1] {
  transition: transform 0.3s ease;
}
.download-cta:hover .cta-arrow[data-v-23d610a1] {
  transform: translate(2px, -2px);
}
.dashboard-column[data-v-23d610a1] {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}
.dashboard-container[data-v-23d610a1] {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 400px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.dashboard-image[data-v-23d610a1] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* Efecto de corte a la derecha */
.dashboard-container[data-v-23d610a1]::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none;
}
@media (max-width: 1024px) {
.about-container[data-v-23d610a1] {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
}
.dashboard-column[data-v-23d610a1] {
    justify-content: center;
}
.dashboard-container[data-v-23d610a1] {
    max-width: 500px;
    height: 300px;
}
}
@media (max-width: 768px) {
.ebook-about-section[data-v-23d610a1] {
    padding: 60px 15px;
}
.about-container[data-v-23d610a1] {
    gap: 30px;
}
.main-title[data-v-23d610a1] {
    font-size: 1.8rem;
}
.intro-text[data-v-23d610a1] {
    font-size: 16px;
}
.feature-item[data-v-23d610a1] {
    text-align: left;
}
.download-cta[data-v-23d610a1] {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
}
.dashboard-container[data-v-23d610a1] {
    max-width: 400px;
    height: 250px;
}
}
@media (max-width: 480px) {
.ebook-about-section[data-v-23d610a1] {
    padding: 40px 10px;
}
.features-list[data-v-23d610a1] {
}
.feature-item span[data-v-23d610a1] {
    font-size: 15px;
}
.dashboard-container[data-v-23d610a1] {
    max-width: 350px;
    height: 200px;
}
}

.ebook-cta-section[data-v-07f607f2] {
  padding: 80px 20px;
  background: #129bef;
  color: white;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-container[data-v-07f607f2] {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-step[data-v-07f607f2] {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  opacity: 0.8;
}
.cta-title[data-v-07f607f2] {
  font-size: clamp(2rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.cta-description[data-v-07f607f2] {
  font-size: 1.15rem;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  opacity: 0.9;
}
.cta-description strong[data-v-07f607f2] {
  font-weight: 700;
}
.download-cta[data-v-07f607f2] {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: #fff;
  color: #129bef;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.download-cta[data-v-07f607f2]:hover {
  background-color: #e0f2fe;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
.download-cta .material-symbols-outlined[data-v-07f607f2] {
  font-size: 1.2rem;
  color: #129bef;
  transition: transform 0.3s ease;
}
.download-cta:hover .material-symbols-outlined[data-v-07f607f2] {
  transform: translateX(5px);
}
.cta-info[data-v-07f607f2] {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 10px;
}
@media (max-width: 768px) {
.ebook-cta-section[data-v-07f607f2] {
    padding: 60px 15px;
    min-height: auto;
}
.cta-container[data-v-07f607f2] {
    gap: 15px;
}
.cta-title[data-v-07f607f2] {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
}
.cta-description[data-v-07f607f2] {
    font-size: 1rem;
}
.download-cta[data-v-07f607f2] {
    padding: 12px 25px;
    font-size: 1rem;
}
}
@media (max-width: 480px) {
.cta-title[data-v-07f607f2] {
    font-size: clamp(1.5rem, 7vw, 2rem);
}
.cta-description[data-v-07f607f2] {
    font-size: 0.9rem;
}
.cta-info[data-v-07f607f2] {
    font-size: 0.8rem;
}
}

.ebook-content[data-v-a71fc484] {
  padding: 60px 20px;
  background: white;
  min-height: 40vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.ebook-content h2[data-v-a71fc484] {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}
.ebook-content p[data-v-a71fc484] {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
}
@media (max-width: 768px) {
.ebook-content[data-v-a71fc484] {
    padding: 40px 15px;
}
.ebook-content h2[data-v-a71fc484] {
    font-size: 2rem;
}
.ebook-content p[data-v-a71fc484] {
    font-size: 1.1rem;
}
}

main[data-v-c7662789] {
  margin-top: 90px;
}
.container[data-v-c7662789] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-section[data-v-c7662789] {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.hero-content[data-v-c7662789] {
  max-width: 800px;
}
.hero-title[data-v-c7662789] {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-description[data-v-c7662789] {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}
.cta-button[data-v-c7662789] {
  padding: 16px 32px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button[data-v-c7662789]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 151, 239, 0.3);
}
.content-section[data-v-c7662789] {
  padding: 80px 0;
  background: white;
}
.main-content[data-v-c7662789] {
  max-width: 1200px;
  margin: 0 auto;
}
.main-content h2[data-v-c7662789] {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 60px 0 24px;
  line-height: 1.3;
}
.main-content h3[data-v-c7662789] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 40px 0 20px;
}
.main-content p[data-v-c7662789] {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 24px;
}
.main-content ul[data-v-c7662789] {
  margin: 24px 0;
  padding-left: 24px;
}
.main-content li[data-v-c7662789] {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
}
.main-content strong[data-v-c7662789] {
  font-weight: 600;
  color: #1e293b;
}
.related-section[data-v-c7662789] {
  padding: 60px 0;
  background: #f8fafc;
}
@media (max-width: 768px) {
.hero-title[data-v-c7662789] {
    font-size: 2rem;
}
.hero-description[data-v-c7662789] {
    font-size: 1.125rem;
}
.main-content h2[data-v-c7662789] {
    font-size: 1.5rem;
}
.main-content p[data-v-c7662789],
  .main-content li[data-v-c7662789] {
    font-size: 1rem;
}
}

main[data-v-c7d4716c] {
  margin-top: 90px;
}
.container[data-v-c7d4716c] {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.hero-section[data-v-c7d4716c] {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}
.hero-content[data-v-c7d4716c] {
  max-width: 800px;
}
.hero-title[data-v-c7d4716c] {
  font-size: 3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 24px;
  line-height: 1.2;
}
.hero-description[data-v-c7d4716c] {
  font-size: 1.25rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 32px;
}
.cta-button[data-v-c7d4716c] {
  padding: 16px 32px;
  background: linear-gradient(45deg, #1297ef, #4ab7ff);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cta-button[data-v-c7d4716c]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 151, 239, 0.3);
}
.content-section[data-v-c7d4716c] {
  padding: 80px 0;
  background: white;
}
.main-content[data-v-c7d4716c] {
  max-width: 1200px;
  margin: 0 auto;
}
.main-content h2[data-v-c7d4716c] {
  font-size: 2rem;
  font-weight: 600;
  color: #1e293b;
  margin: 60px 0 24px;
  line-height: 1.3;
}
.main-content h3[data-v-c7d4716c] {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e293b;
  margin: 40px 0 20px;
}
.main-content p[data-v-c7d4716c] {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 24px;
}
.gmao-image[data-v-c7d4716c] {
  width: 100%;
  max-width: 100%;
  border-radius: 25px;
  border: 4px solid #e4e9f1;
  margin: 40px 0;
}
.main-content ul[data-v-c7d4716c] {
  margin: 24px 0;
  padding-left: 24px;
}
.main-content li[data-v-c7d4716c] {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #374151;
  margin-bottom: 12px;
}
.main-content strong[data-v-c7d4716c] {
  font-weight: 600;
  color: #1e293b;
}
.main-content em[data-v-c7d4716c] {
  font-style: italic;
  color: #475569;
}
.source-link[data-v-c7d4716c] {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.875rem;
  color: #1297ef;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.source-link[data-v-c7d4716c]:hover {
  color: #0d5fef;
  text-decoration: underline;
}
.source-link[data-v-c7d4716c]::before {
  content: '🔗';
  margin-right: 4px;
  font-size: 0.75rem;
}
.related-section[data-v-c7d4716c] {
  padding: 60px 0;
  background: #f8fafc;
}
.references-section[data-v-c7d4716c] {
  margin: 80px 0 60px;
  padding: 40px;
  background: #f8fafc;
  border-radius: 16px;
  border-left: 4px solid #1297ef;
}
.references-section h2[data-v-c7d4716c] {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
}
.references-section > p[data-v-c7d4716c] {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 1rem;
}
.references-list[data-v-c7d4716c] {
  list-style: none;
  padding: 0;
  margin: 0;
}
.references-list li[data-v-c7d4716c] {
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}
.references-list li[data-v-c7d4716c]::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #1297ef;
  font-weight: 600;
}
.references-list a[data-v-c7d4716c] {
  color: #1297ef;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}
.references-list a[data-v-c7d4716c]:hover {
  color: #0d5fef;
  text-decoration: underline;
  transform: translateX(4px);
}
@media (max-width: 768px) {
.hero-title[data-v-c7d4716c] {
    font-size: 2rem;
}
.hero-description[data-v-c7d4716c] {
    font-size: 1.125rem;
}
.main-content h2[data-v-c7d4716c] {
    font-size: 1.5rem;
}
.main-content p[data-v-c7d4716c],
  .main-content li[data-v-c7d4716c] {
    font-size: 1rem;
}
}

/* ===== MOBILE FIRST - Estilos base para móvil ===== */
.thank-you-page[data-v-d0f82cde] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.thank-you-content[data-v-d0f82cde] {
  flex: 1;
  padding: 80px 16px 60px;
}
.container[data-v-d0f82cde] {
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  padding: 0;
}
.success-card[data-v-d0f82cde] {
  background: white;
  border-radius: 16px;
  padding: 32px 0px;
  text-align: center;
}
.success-icon[data-v-d0f82cde] {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #129bef 0%, #4ab7ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  animation: scaleIn-d0f82cde 0.5s ease-out;
}
@keyframes scaleIn-d0f82cde {
from {
    transform: scale(0);
    opacity: 0;
}
to {
    transform: scale(1);
    opacity: 1;
}
}
.success-title[data-v-d0f82cde] {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
  line-height: 1.2;
}
.success-message[data-v-d0f82cde] {
  font-size: 1rem;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 32px;
  max-width: 100%;
}
.next-steps[data-v-d0f82cde] {
  text-align: left;
  margin: 32px 0;
  padding: 24px 20px;
  background: #f8fafc;
  border-radius: 12px;
}
.next-steps h2[data-v-d0f82cde] {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}
.next-steps ul[data-v-d0f82cde] {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.next-steps li[data-v-d0f82cde] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.step-icon[data-v-d0f82cde] {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}
.next-steps li div[data-v-d0f82cde] {
  flex: 1;
}
.next-steps li strong[data-v-d0f82cde] {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 4px;
}
.next-steps li p[data-v-d0f82cde] {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
.actions[data-v-d0f82cde] {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.btn-primary[data-v-d0f82cde],
.btn-secondary[data-v-d0f82cde] {
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  box-shadow: none;
}
.btn-primary[data-v-d0f82cde] {
  background: linear-gradient(45deg, #129bef, #4ab7ff);
  color: white;
  border: none;
}
.btn-primary[data-v-d0f82cde]:active {
  transform: translateY(0);
}
.btn-secondary[data-v-d0f82cde] {
  background: white;
  color: #129bef;
  border: 2px solid #129bef;
}
.btn-secondary[data-v-d0f82cde]:active {
  background: #f8fafc;
  transform: translateY(0);
}

/* ===== TABLET - 481px y superior ===== */
@media (min-width: 481px) {
.thank-you-content[data-v-d0f82cde] {
    padding: 100px 24px 80px;
}
.success-card[data-v-d0f82cde] {
    padding: 40px 32px;
    border-radius: 20px;
}
.success-icon[data-v-d0f82cde] {
    width: 100px;
    height: 100px;
    margin-bottom: 28px;
}
.success-title[data-v-d0f82cde] {
    font-size: 2rem;
    margin-bottom: 18px;
}
.success-message[data-v-d0f82cde] {
    font-size: 1.0625rem;
    margin-bottom: 36px;
}
.next-steps[data-v-d0f82cde] {
    padding: 32px 28px;
    margin: 40px 0;
}
.next-steps h2[data-v-d0f82cde] {
    font-size: 1.375rem;
    margin-bottom: 24px;
}
.next-steps li[data-v-d0f82cde] {
    gap: 14px;
}
.step-icon[data-v-d0f82cde] {
    font-size: 1.75rem;
}
.next-steps li strong[data-v-d0f82cde] {
    font-size: 1.0625rem;
}
.next-steps li p[data-v-d0f82cde] {
    font-size: 0.9375rem;
}
.actions[data-v-d0f82cde] {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
}
.btn-primary[data-v-d0f82cde],
  .btn-secondary[data-v-d0f82cde] {
    width: auto;
    padding: 16px 32px;
    font-size: 16px;
}
.btn-primary[data-v-d0f82cde]:hover {
    transform: translateY(-2px);
}
.btn-secondary[data-v-d0f82cde]:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}
}

/* ===== DESKTOP - 769px y superior ===== */
@media (min-width: 769px) {
.thank-you-content[data-v-d0f82cde] {
    padding: 120px 20px 80px;
}
.container[data-v-d0f82cde] {
    max-width: 800px;
}
.success-card[data-v-d0f82cde] {
    padding: 60px 40px;
    border-radius: 24px;
}
.success-icon[data-v-d0f82cde] {
    width: 120px;
    height: 120px;
    margin-bottom: 30px;
}
.success-title[data-v-d0f82cde] {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.success-message[data-v-d0f82cde] {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.next-steps[data-v-d0f82cde] {
    margin: 50px 0;
    padding: 40px;
    border-radius: 16px;
}
.next-steps h2[data-v-d0f82cde] {
    font-size: 1.5rem;
    margin-bottom: 30px;
}
.next-steps ul[data-v-d0f82cde] {
    gap: 24px;
}
.next-steps li[data-v-d0f82cde] {
    gap: 16px;
}
.step-icon[data-v-d0f82cde] {
    font-size: 2rem;
}
.next-steps li strong[data-v-d0f82cde] {
    font-size: 1.125rem;
}
.next-steps li p[data-v-d0f82cde] {
    font-size: 0.9375rem;
    line-height: 1.6;
}
.actions[data-v-d0f82cde] {
    margin-top: 40px;
    flex-wrap: wrap;
}
}

/* ===== LARGE DESKTOP - 1025px y superior ===== */
@media (min-width: 1025px) {
.thank-you-content[data-v-d0f82cde] {
    padding: 140px 20px 100px;
}
}
