/*
Theme Name: JQ Theme
Author: Álvaro Parra Caro
Description: Basic theme for JQ Asesores
Version: 1.0
Text Domain: jq-theme
*/

/* ===================== BASE ===================== */
body {
  margin: 0;
  font-family: 'Helvetica Neue', system-ui, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #222;
}

h1, h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

section {
  padding: 24px 8px;
  margin: 0 auto;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ===================== HEADER ===================== */
.site-header {
  padding: 1rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo img {
  max-width: 150px;
}

.site-navigation-account {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap:2rem;
}

.site-navigation {
  display: flex;
  flex: 1;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: #4CB0D0;
}

.site-account {
  flex-shrink: 0;
}

.site-account a {
  text-decoration: none;
  color: #333;
}

.site-account a:hover,
.site-account a:focus {
  color: #4CB0D0;
}
/* ===================== HERO ===================== */
.hero {
  background: #f5f5f5;
  padding: 6rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================== BOTONES ===================== */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  margin-top: 1rem;
  background: #111;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #333;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #111;
  color: #111;
}

.btn.secondary:hover {
  background: #111;
  color: #fff;
}

/* ===================== SECCIONES ===================== */

.title {
  font-size: 1.5rem;
  color: #333;
  font-weight: bold;
  text-align: center;
}

.servicios,
.plugins {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 1rem;
  justify-content: space-between;
}

.servicio,
.plugin {
  flex: 1 1 calc(33.333% - 2rem);
  background: #fafafa;
  border: 1px solid #eee;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.servicio h2,
.plugin h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.plugin ul {
  list-style: circle inside;
  color: #444;
  margin-bottom: 1rem;
}

.colabora,
.contacto {
  background: #eef2f4;
  text-align: center;
  padding: 4rem 1rem;
}

.colabora h2,
.contacto h2 {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: #222;
}

.suite {
  padding: 4rem 1rem;
}

.suite h2 {
  font-size: 1.8rem;
}

.suite p {
  color: #555;
  margin-bottom: 1rem;
}

.suite ul {
  list-style: disc inside;
  padding-left: 1rem;
  color: #333;
}

.testimonios {
  background: #fff8f0;
  padding: 3rem 1rem;
  text-align: center;
}

.testimonios blockquote {
  font-style: italic;
  color: #444;
  max-width: 800px;
  margin: 0 auto;
}

.testimonios footer {
  margin-top: 1rem;
  font-weight: bold;
  color: #000;
}

/* ===================== CTA FINAL ===================== */
.cta {
  background: #0073aa;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

.cta h2 {
  color: #fff;
}

.cta a {
  display: inline-block;
  margin-top: 1rem;
  background: #00d084;
  color: #000;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: bold;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .servicios,
  .plugins {
    flex-direction: column;
  }

  .servicio,
  .plugin {
    flex: 1 1 100%;
    padding: 2rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .suite h2,
  .plugins h2,
  .contacto h2 {
    font-size: 1.4rem;
  }
}
