@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/icon_web.webp') 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; 
    }
}