/*
Theme Name: LinkiaFP
Theme URI: https://linkiafp.com
Author: LinkiaFP
Author URI: https://linkiafp.com
Description: Tema moderno para formación Zoho con integración FUNDAE. Incluye página de inicio con catálogo de cursos, página de FUNDAE con simulador de crédito, testimonios y sección de FAQ. Diseño responsive y optimizado para conversión.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: linkiafp
Tags: education, business, responsive, custom-menu, featured-images, threaded-comments, translation-ready

LinkiaFP WordPress Theme, Copyright 2024
LinkiaFP is distributed under the terms of the GNU GPL.
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, #f97316, #ea580c);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(to right, #ea580c, #c2410c);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: #111827;
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto 3rem;
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}