@charset "UTF-8";

*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

:root {
--sc-color1: #8230ff;
--sc-color2: #190b6a;
--bg-overlay: rgba(0, 0, 0, 0.6);
--card-bg: #F0F0F0;
--pc-purple-main: #6200EA;
--pc-cyan-main: #00E5FF;
--pc-gradient: linear-gradient(135deg, #6200EA 0%, #00E5FF 100%);
--pc-text: #333333;

}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
  width: 100%;
  height: auto;
  margin: auto;
}

body {
  margin: 0;
  font-family: "Lato", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #FFF;
  
}

.section {
  padding: 2rem;
}

[tabindex="-1"]:focus {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: 'medium';
}

h2 {
  font-weight: 100;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: 'light';
}

a {
  text-decoration: none;
}

.loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url('../images/lab_iso_whitefondo.jpg') 50% 50% no-repeat rgb(249,249,249);
  background-position: center center;
  background-size: 150px;
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #fff;
  padding: 5px;
  border-radius: 50%;
  z-index: 999;
}
.whatsapp-float img {
   margin-bottom: -0.2rem;
   padding: 0.30rem;
}




/* --- ESTILOS DEL BOTÓN CTA (PREMIUM) --- */
.boceto-cta-btn {
    display: inline-flex; 
    align-items: center; 
    gap: 10px;
    background-color: #ffffff; /* Fondo Blanco */
    color: var(--sc-color1); /* Texto Morado */
    padding: 16px 40px;
    font-size: 1rem; 
    font-weight: 900; 
    /* text-transform: uppercase;  */
    letter-spacing: 1px;
    text-decoration: none; 
    border-radius: 50px; /* Píldora */
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-top: 10px; /* Separación del texto */
    font-family: 'regular';
}

/* Efecto Hover (Al pasar el mouse) */
.boceto-cta-btn:hover {
    transform: translateY(-5px); /* Salta hacia arriba */
    box-shadow: 0 15px 30px rgba(0,0,0,0.4); /* Sombra más fuerte */
    background-color: var(--pc-purple-main); /* Se vuelve Cyan */
    color: #ffffff; /* Texto negro */
}

/* Animación de la flecha */
.boceto-cta-btn i { transition: transform 0.3s; }
.boceto-cta-btn:hover i { transform: translateX(5px); }

/* Ajuste para Celulares */
@media (max-width: 900px) {
    .boceto-cta-btn { 
        width: 100%; /* Más ancho para tocar fácil */
        justify-content: center; 
    }
}


/* --- VARIABLES SKETCH LAB (PALETA NEÓN OFICIAL) --- */
:root {
    --lab-bg: #0a0a0a;           /* Fondo negro profundo */
    --lab-surface: #130a22;      /* Un tono morado muy oscuro para las tarjetas */
    
    /* TUS NUEVOS COLORES IDEALES */
    --lab-purple-hero: #7F2AF7;  /* El morado vibrante de tu isologo */
    --lab-cyan: #64FFDA;         /* El verde menta/cian del cuadrado */
    
    --lab-grid: rgba(100, 255, 218, 0.05); /* Grid sutil en color cyan */
    --font-mono: 'Courier New', Courier, monospace;
}

/* Ajustes adicionales para usar el nuevo morado */

/* 1. Hacemos el Hero un poco más impactante con un degradado */
.lab-hero {
    background: radial-gradient(circle at center, rgba(127, 42, 247, 0.2) 0%, var(--lab-bg) 70%);
    /* El resto de las propiedades del hero siguen igual... */
    position: relative;
    height: 80vh;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 1px solid #333;
    overflow: hidden;
}

/* 2. Actualizamos el color del texto principal para que use el cyan */
.lab-title {
    font-size: 5rem; font-weight: 900; letter-spacing: -2px; margin: 10px 0;
    color: white; 
    /* Sombra de texto con tu morado vibrante */
    text-shadow: 3px 3px 0px var(--lab-purple-hero);
}

/* 3. Actualizamos colores de iconos y bordes */
.lab-icon { font-size: 2rem; color: var(--lab-purple-hero); margin-bottom: 20px; }

.lab-btn {
    display: inline-block; padding: 12px 30px; border: 1px solid var(--lab-cyan);
    color: var(--lab-cyan); text-decoration: none; font-family: var(--font-mono);
    transition: 0.3s; text-transform: uppercase; font-size: 0.9rem;
    background: rgba(100, 255, 218, 0.1); /* Un fondo sutil */
}
.lab-btn:hover { background: var(--lab-cyan); color: black; box-shadow: 0 0 20px var(--lab-cyan); }

/* El resto del CSS puede seguir igual, usando las nuevas variables */