/*
 Theme Name: Gecklab Child
 Theme URI: https://gecklab.com
 Description: Tema hijo para Hello Elementor con estilos y colores Gecklab.
 Author: Gecklab
 Template: hello-elementor
 Version: 1.0.0
*/

:root{
  --bg-1: #0B1020;
  --bg-2: #0F162D;
  --text: #EAF2FF;
  --accent-1: #16D26E;
  --accent-2: #22D3EE;
  --radius: 16px;
}

body{ background: var(--bg-1); color: var(--text); }
a{ color: var(--accent-2); text-decoration: none; }
a:hover{ text-decoration: underline; }

/* Glass cards */
.geck-card{
  background: rgba(255,255,255,0.06);
  border: 1px solid #1E2A48;
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

/* Gradient button */
.geck-btn{
  border-radius: var(--radius);
  padding: 14px 22px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #021016;
  font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.geck-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(34,211,238,.2);
}

/* Section spacing */
.section-pad{ padding: 80px 0; }
@media (max-width: 767px){
  .section-pad{ padding: 60px 0; }
}
