/*
Theme Name: CyberNet Panamá
Theme URI: http://cybernetpanama.com
Author: CyberNetPTY
Author URI: https://instagram.com/cybernetpanama
Description: Tema personalizado para la comunidad CyberNet Panamá.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: cybernet
*/

/* === Reset básico === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #0e1116;
  color: #fff;
  line-height: 1.6;
}

/* === Contenedores === */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* === Header y navegación === */
header {
  background: #0b0f14;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}

.logo-mark {
  background: #1f6feb;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 6px;
  padding: 6px 10px;
  margin-right: 8px;
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1f6feb;
}

/* === Hero === */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 60px 0;
}

.hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  color: #cfd3d7;
  margin-bottom: 20px;
}

/* === Botones === */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  background: linear-gradient(90deg, #1f6feb, #7928ca);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
}

.btn:hover {
  opacity: 0.8;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #fff;
}

/* === KPIs === */
.kpis {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.kpi {
  background: #1c2128;
  padding: 12px 20px;
  border-radius: 12px;
  text-align: center;
}

/* === Secciones === */
.section-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.feature,
.resource,
.event {
  background: #1c2128;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* === Eventos === */
.event {
  display: flex;
  align-items: center;
  gap: 15px;
}

.date {
  background: linear-gradient(90deg, #1f6feb, #7928ca);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 10px 14px;
  text-align: center;
  min-width: 60px;
}

/* === Contacto === */
form input,
form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: none;
  border-radius: 8px;
  background: #2d333b;
  color: #fff;
}

form button {
  border: none;
  cursor: pointer;
}

/* === Footer === */
footer {
  background: #0b0f14;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

footer a {
  color: #1f6feb;
  text-decoration: none;
}