/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.4.9.1780029052
Updated: 2026-05-29 04:30:52

*/
/*
 Theme Name: Hello Elementor Child - Terapia de Esquemas
 Template:   hello-elementor
 Version:    1.0
*/

/* ════════════════════════════════════════════
   VARIABLES
════════════════════════════════════════════ */
:root {
  --verde: #4A7C59;
  --verde-oscuro: #3B5C3A;
  --verde-claro: #D8ECD8;
  --crema: #F0EBE1;
  --crema-oscura: #E8DFCF;
  --tierra: #7A6A52;
  --borde: #D8D0C4;
  --texto: #2E3B2D;
  --texto-suave: #5C5C4F;
  --texto-muted: #7A6A52;
  --fondo: #FDFAF6;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--fondo);
  color: var(--texto);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; }
h1 { font-size: clamp(2rem, 5vw, 3rem); line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.3; }
h3 { font-size: 1.2rem; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-alt { background: var(--crema); }

/* ── LABEL ── */
.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tierra);
  background: var(--crema-oscura);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* ════════════════════════════
   NAVEGACIÓN
════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 238, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--borde);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--verde-oscuro);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--texto-suave);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--verde); }
.nav-cta {
  background: var(--verde);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  padding: 9px 20px;
  border-radius: 24px;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--verde-oscuro); }
.nav-toggle { display: none; font-size: 24px; cursor: pointer; color: var(--verde); }

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  background: var(--crema);
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(74, 124, 89, 0.06);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(122, 106, 82, 0.05);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero h1 { margin-bottom: 20px; color: var(--texto); }
.hero h1 em { font-style: italic; color: var(--verde); }
.hero-sub {
  font-size: 1.1rem;
  color: var(--texto-suave);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--verde);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 32px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--verde-oscuro); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--verde);
  color: var(--verde);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 32px;
  transition: background 0.2s;
}
.btn-outline:hover { background: var(--verde-claro); }

.hero-trust {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--tierra);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--borde);
  padding: 6px 14px;
  border-radius: 20px;
}
.trust-badge i { color: var(--verde); font-size: 15px; }

/* ════════════════════════════
   SERVICIOS
════════════════════════════ */
.serv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0;
  border: 1px solid var(--borde);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 40px;
}
.serv-card {
  padding: 36px 32px;
  border-right: 1px solid var(--borde);
  background: #fff;
  transition: background 0.2s;
}
.serv-card:last-child { border-right: none; }
.serv-card:hover { background: var(--crema); }
.serv-num { font-size: 3rem; font-weight: 300; color: var(--crema-oscura); line-height: 1; margin-bottom: 16px; font-family: 'DM Serif Display', serif; }
.serv-icon { font-size: 2rem; color: var(--verde); margin-bottom: 16px; }
.serv-card h3 { margin-bottom: 10px; color: var(--texto); }
.serv-card p { font-size: 14px; color: var(--texto-suave); line-height: 1.7; margin-bottom: 20px; }
.serv-link { font-size: 13px; color: var(--verde); font-weight: 500; display: inline-flex; align-items: center; gap: 6px; }
.serv-link:hover { gap: 10px; }

/* ════════════════════════════
   SOBRE MÍ
════════════════════════════ */
.sobre-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.sobre-foto-wrap { text-align: center; }
.sobre-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--verde-claro);
  border: 4px solid var(--crema-oscura);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--verde);
  margin: 0 auto 20px;
  overflow: hidden;
}
.sobre-avatar img { width: 100%; height: 100%; object-fit: cover; }
.sobre-social-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--crema);
  border: 1px solid var(--borde);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  font-size: 17px;
  transition: background 0.2s, color 0.2s;
}
.social-icon:hover { background: var(--verde); color: #fff; }
.sobre-texto h2 { margin-bottom: 6px; }
.sobre-titulo { color: var(--tierra); font-size: 14px; margin-bottom: 20px; }
.sobre-bio { color: var(--texto-suave); margin-bottom: 24px; }
.sobre-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.badge {
  font-size: 12px;
  color: var(--verde-oscuro);
  background: var(--verde-claro);
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ════════════════════════════
   ¿QUÉ ES?
════════════════════════════ */
.que-es-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.esquema-card {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: 14px;
  padding: 24px 20px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.esquema-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(74,124,89,0.08); }
.esquema-card i { font-size: 1.8rem; color: var(--verde); margin-bottom: 12px; }
.esquema-card h3 { font-size: 1rem; margin-bottom: 8px; font-family: 'DM Sans', sans-serif; font-weight: 500; }
.esquema-card p { font-size: 13px; color: var(--texto-suave); line-height: 1.6; }

/* ════════════════════════════
   PARA QUIÉN
════════════════════════════ */
.pq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 12px;
  margin-top: 40px;
}
.pq-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: 12px;
  padding: 16px 20px;
}
.pq-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--verde);
  margin-top: 8px;
  flex-shrink: 0;
}
.pq-item p { font-size: 14px; color: var(--texto-suave); }

/* ════════════════════════════
   VIDEOS YOUTUBE
════════════════════════════ */
.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.yt-card {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s;
  cursor: pointer;
}
.yt-card:hover { transform: translateY(-3px); }
.yt-thumb {
  height: 160px;
  background: var(--verde-oscuro);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.yt-thumb-1 { background-color: #1E3A2A; }
.yt-thumb-2 { background-color: #2A1E1A; }
.yt-thumb-3 { background-color: #1A2A2E; }
.yt-play-btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.yt-card:hover .yt-play-btn { background: rgba(255,255,255,0.3); }
.yt-play-btn i { font-size: 20px; color: #fff; margin-left: 3px; }
.yt-duration {
  position: absolute;
  bottom: 10px; right: 10px;
  font-size: 11px; color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 2px 8px;
  border-radius: 10px;
}
.yt-body { padding: 16px 18px; }
.yt-body h3 { font-size: 14px; font-family: 'DM Sans', sans-serif; font-weight: 500; margin-bottom: 6px; color: var(--texto); line-height: 1.45; }
.yt-meta { font-size: 12px; color: var(--texto-muted); }
.yt-cta-wrap { text-align: center; margin-top: 32px; }
.btn-yt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  font-size: 14px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 28px;
  transition: background 0.2s;
}
.btn-yt:hover { background: var(--verde-claro); }

/* ════════════════════════════
   FAQ (AEO)
════════════════════════════ */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  padding: 20px 24px;
  font-weight: 500;
  color: var(--texto);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}
.faq-question i { color: var(--verde); font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
.faq-answer {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--texto-suave);
  line-height: 1.75;
}

/* ════════════════════════════
   BLOG
════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--borde);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-3px); }
.blog-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-img-1 { background-color: #E8DFCF; }
.blog-img-2 { background-color: #D8ECD8; }
.blog-img-3 { background-color: #EDE0D4; }
.blog-body { padding: 20px; }
.blog-cat {
  font-size: 11px;
  color: var(--verde);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}
.blog-body h3 { font-size: 1rem; font-family: 'DM Sans', sans-serif; font-weight: 500; margin-bottom: 8px; line-height: 1.4; }
.blog-body p { font-size: 13px; color: var(--texto-suave); margin-bottom: 12px; }
.blog-date { font-size: 12px; color: var(--texto-muted); }
.read-more { font-size: 13px; color: var(--verde); font-weight: 500; display: inline-flex; align-items: center; gap: 4px; }

/* ════════════════════════════
   CTA FINAL
════════════════════════════ */
.cta-section {
  background: var(--verde-oscuro);
  padding: 80px 24px;
  text-align: center;
}
.cta-section h2 { color: #E8F2E8; margin-bottom: 12px; }
.cta-section p { color: #A8C9A8; font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-cta-light {
  background: var(--crema);
  color: var(--verde-oscuro);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 32px;
  transition: background 0.2s;
}
.btn-cta-light:hover { background: #fff; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
footer {
  background: #2E3B2D;
  padding: 48px 24px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: #8FAF8E;
  margin-bottom: 8px;
}
.footer-tagline { font-size: 13px; color: #5A7A59; line-height: 1.6; }
.footer-col h4 { font-size: 12px; color: #5A7A59; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-family: 'DM Sans', sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 13px; color: #6B8A6A; transition: color 0.2s; }
.footer-col ul li a:hover { color: #8FAF8E; }
.footer-social { display: flex; gap: 10px; margin-top: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #8FAF8E;
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
}
.footer-social a:hover { background: var(--verde); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 12px; color: #3A5A39; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: #3A5A39; transition: color 0.2s; }
.footer-legal a:hover { color: #6B8A6A; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .sobre-inner { grid-template-columns: 1fr; }
  .sobre-avatar { width: 160px; height: 160px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .serv-grid { grid-template-columns: 1fr; }
  .serv-card { border-right: none; border-bottom: 1px solid var(--borde); }
  .serv-card:last-child { border-bottom: none; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
}
