@charset "UTF-8";

*,
*::before,
*::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
}

:root {
--sx-gold: #FFC107;
--sx-navy: #001832;
--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('../assets\images\sksports_isologo.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: 800; 
    /* 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 */
}

/* 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: 80%; /* Más ancho para tocar fácil */
        justify-content: center; 
    }
}



/* Contenedor de botones */
.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-section { align-items: flex-end; padding-bottom: 100px; } /* En móvil el texto baja */
    .hero-overlay { background: linear-gradient(0deg, var(--sx-navy) 20%, transparent 100%); }
    .hero-title { font-size: 3rem; }
}

.container {
    max-width: 1200px;     /* Ancho máximo del contenido */
    margin: 0 auto;        /* ESTO CENTRA EL CONTENIDO AUTOMÁTICAMENTE */
    padding: 0 5%;         /* Deja un respiro a los lados en celulares */
    width: 100%;
}

/* --- 2. ESTILOS DE BOTONES (Para que se vean PRO) --- */
.btn-sport {
    display: inline-flex;  /* Para que se comporten como cajas */
    align-items: center;
    justify-content: center;
    padding: 15px 35px;    /* Tamaño del botón */
    border: 2px solid white; /* Borde blanco */
    background: transparent;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none; /* Quita la raya de enlace */
    transition: all 0.3s ease;
    cursor: pointer;
    
    /* El corte en la esquina (Estilo futurista) */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Efecto al pasar el mouse (Hover) */
.btn-sport:hover {
    background: white;
    color: #021B35; /* Color azul oscuro */
    transform: translateY(-3px); /* Se eleva un poco */
}

/* Variación: Botón Dorado (.gold) */
.btn-sport.gold {
    border-color: #FFC107; /* Amarillo */
    color: #FFC107;
}

.btn-sport.gold:hover {
    background: #FFC107;
    color: black;
}


.empty_section {
  opacity: 0.01;
  padding: 3rem 0;
  max-height: 5rem;
  min-height: 5rem;
  text-align: center;
}