/*
Theme Name: Leandro Gimenez
Theme URI: https://leandrogimenez.com
Author: Leandro Gimenez
Author URI: https://leandrogimenez.com
Description: Tema personalizado - Automação com IA Simplificada
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: leandro-gimenez
*/

/* ============================================
   LEANDRO GIMENEZ — Automação com IA Simplificada
   WHITE THEME — Design Tokens & Global Styles
   ============================================ */
:root {
  --dark: #0D1F33;
  --navy: #1B3A5C;
  --blue: #2E6DB4;
  --light-blue: #4A9AE8;
  --soft-blue: #6A8FB8;
  --ice: #E8EDF3;
  --bg: #FAFBFD;
  --bg-card: #FFFFFF;
  --bg-section: #F3F6FA;
  --border: rgba(27,58,92,0.08);
  --border-hover: rgba(46,109,180,0.25);
  --text: #1B3A5C;
  --text-light: #5A7A9A;
  --text-muted: #6D7C8E;
  --white: #fff;
  --shadow-sm: 0 1px 3px rgba(13,31,51,0.04), 0 1px 2px rgba(13,31,51,0.03);
  --shadow-md: 0 4px 20px rgba(13,31,51,0.06), 0 1px 4px rgba(13,31,51,0.04);
  --shadow-lg: 0 10px 40px rgba(13,31,51,0.08), 0 2px 8px rgba(13,31,51,0.04);
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --ease: 0.2s ease;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: var(--blue); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--light-blue); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; }
.container    { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container--sm { max-width: 780px; margin: 0 auto; padding: 0 32px; }

/* Particles Canvas */
#particlesCanvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.45;
}

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 32px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 10px; color: var(--navy); }
.nav__logo-text { font-size: 15px; font-weight: 700; color: var(--dark); }
.nav__logo-text span { font-weight: 300; color: var(--soft-blue); }
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__link { font-size: 13px; color: var(--text-light); letter-spacing: 0.5px; font-weight: 400; }
.nav__link:hover, .nav__link--active { color: var(--dark); }
.nav__cta {
  background: var(--blue); color: var(--white) !important;
  padding: 11px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 13px; min-height: 44px;
}
.nav__cta:hover { background: var(--light-blue); color: var(--white) !important; }
.nav__hamburger { display: none; background: none; border: none; color: var(--dark); font-size: 24px; cursor: pointer; }
.nav__links--open {
  display: flex !important; flex-direction: column;
  position: absolute; top: 64px; left: 0; right: 0;
  background: rgba(255,255,255,0.98); padding: 20px 32px; gap: 16px; box-shadow: var(--shadow-md);
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-md); font-weight: 600; font-size: 14px;
  border: none; cursor: pointer; transition: all var(--ease);
  padding: 13px 26px; font-family: 'Outfit', sans-serif;
}
.btn--primary { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--light-blue); color: var(--white); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(46,109,180,0.3); }
.btn--ghost { background: transparent; color: var(--blue); border: 1px solid rgba(46,109,180,0.2); }
.btn--ghost:hover { border-color: var(--blue); color: var(--dark); background: rgba(46,109,180,0.04); }
.btn--block { width: 100%; }

/* HERO */
.hero { padding: 140px 0 80px; position: relative; overflow: hidden; z-index: 1; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(46,109,180,0.05) 0%, transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: 1fr 280px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero__badge {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--blue); background: rgba(46,109,180,0.06);
  padding: 6px 16px; border-radius: 20px; letter-spacing: 1.5px;
  display: inline-block; margin-bottom: 20px; border: 1px solid rgba(46,109,180,0.1);
}
.hero__title { font-size: 42px; font-weight: 800; line-height: 1.15; margin-bottom: 20px; color: var(--dark); }
.hero__title em { font-style: normal; color: var(--blue); }
.hero__desc { font-size: 15px; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }
.hero__actions { display: flex; gap: 14px; align-items: center; }
.hero__photo img {
  width: 220px; height: 220px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(46,109,180,0.1); box-shadow: 0 8px 32px rgba(46,109,180,0.12);
}

/* AWARDS */
.awards { padding: 48px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.awards__label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 24px; font-weight: 300; }
.awards__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.award {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 12px 18px;
  display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow-sm);
}
.award__text { font-size: 11px; color: var(--dark); font-weight: 500; line-height: 1.3; }
.award__text small { display: block; font-size: 9px; color: var(--text-muted); font-weight: 300; margin-top: 1px; }

/* TRUSTED BY / LOGO CAROUSEL */
.trusted { padding: 40px 0; border-bottom: 1px solid var(--border); position: relative; z-index: 1; overflow: hidden; }
.trusted__label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); text-align: center; margin-bottom: 24px; font-weight: 300; }
.trusted__wrapper {
  position: relative; overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.trusted__track {
  display: flex; gap: 60px; align-items: center;
  animation: scroll-logos 25s linear infinite; width: max-content;
}
.trusted__logo {
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--soft-blue); white-space: nowrap; opacity: 0.55; transition: opacity 0.3s; flex-shrink: 0;
}
.trusted__logo:hover { opacity: 0.85; }
.trusted__logo--sm { font-size: 15px; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 80px 0; position: relative; z-index: 1; }
.section--alt { background: var(--bg-section); }
.section--divider { border-top: 1px solid var(--border); }
.section__label { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: 3px; color: var(--blue); margin-bottom: 10px; display: block; }
.section__label--center { text-align: center; }
.section__heading { font-size: 30px; font-weight: 700; margin-bottom: 16px; color: var(--dark); }
.section__heading--center { text-align: center; }
.section__heading--sm { font-size: 24px; }
.section__heading em { font-style: normal; color: var(--blue); }
.section__sub { font-size: 14px; color: var(--text-light); font-weight: 300; margin-bottom: 44px; max-width: 520px; line-height: 1.7; }
.section__sub--center { text-align: center; margin-left: auto; margin-right: auto; }

/* SKILL CARDS */
.skills-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.skill-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.skill-card:hover { border-color: var(--border-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.skill-card__icon { margin-bottom: 14px; }
.skill-card__title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.skill-card__desc { font-size: 12px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-top: 40px; }
.about__text p { font-size: 14px; color: var(--text-light); line-height: 1.8; font-weight: 300; margin-bottom: 16px; }
.about__text strong { color: var(--dark); font-weight: 600; }
.timeline { display: flex; flex-direction: column; gap: 18px; }
.timeline__item { display: flex; gap: 14px; align-items: flex-start; }
.timeline__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); margin-top: 7px; flex-shrink: 0; }
.timeline__dot--muted { background: var(--ice); }
.timeline__title { font-size: 13px; font-weight: 600; color: var(--dark); }
.timeline__desc { font-size: 11px; color: var(--text-muted); font-weight: 300; }

/* BLOG CARDS */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s;
  cursor: pointer; display: block; color: inherit; box-shadow: var(--shadow-sm);
}
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-2px); color: inherit; box-shadow: var(--shadow-md); }
.blog-card__thumb {
  height: 150px; background: linear-gradient(135deg, #2E6DB4, #4A9AE8);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.blog-card__thumb::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.08), transparent 60%); }
.blog-card__thumb--mkt   { background: linear-gradient(135deg, #1B3A5C, #4A9AE8); }
.blog-card__thumb--pbi   { background: linear-gradient(135deg, #2E6DB4, #6A8FB8); }
.blog-card__thumb--blip  { background: linear-gradient(180deg, #1B3A5C, #2E6DB4); }
.blog-card__thumb--ia    { background: linear-gradient(135deg, #0D1F33, #4A9AE8); }
.blog-card__thumb--sales { background: linear-gradient(160deg, #2E6DB4, #1B3A5C); }
.blog-card__thumb--tools { background: linear-gradient(160deg, #4A9AE8, #2E6DB4); }
.blog-card__cat {
  font-family: 'JetBrains Mono', monospace; font-size: 8px;
  color: var(--white); background: rgba(255,255,255,0.2);
  padding: 4px 10px; border-radius: 12px; letter-spacing: 1px; position: relative; z-index: 1;
}
.blog-card__body { padding: 18px; }
.blog-card__title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.5; }
.blog-card__excerpt { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.6; margin-bottom: 10px; }
.blog-card__meta { font-size: 10px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.reading-time { display: inline-flex; align-items: center; gap: 4px; }
.icon-clock { color: var(--text-muted); }

/* NEWSLETTER BOX */
.news-box {
  background: linear-gradient(135deg, rgba(46,109,180,0.03), rgba(74,154,232,0.05));
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
}
.news-box__desc { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.6; }
.news-form { display: flex; flex-direction: column; gap: 12px; }
.news-form__input {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 13px 18px; font-size: 14px;
  color: var(--dark); outline: none; transition: border-color var(--ease);
}
.news-form__input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,109,180,0.08); }
.news-form__input::placeholder { color: var(--text-muted); }
.news-form__note { font-size: 10px; color: var(--text-muted); text-align: center; }

/* PAIN GRID */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 20px; }
.pain-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: left;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.pain-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pain-card__icon { margin-bottom: 14px; color: var(--blue); }
.pain-card__icon svg { width: 32px; height: 32px; }
.pain-card__title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.pain-card__desc { font-size: 12px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* SOLUÇÕES GRID (Consultoria) */
.solucoes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 20px; }
.solucao-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 20px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all 0.3s;
}
.solucao-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue); }
.solucao-card__icon { margin-bottom: 12px; color: var(--blue); }
.solucao-card__icon svg { width: 28px; height: 28px; }
.solucao-card__title { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }

/* PROCESSO GRID (Consultoria) */
.processo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; margin-bottom: 60px; }
.processo-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-sm); transition: all 0.3s; position: relative;
}
.processo-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.processo-card__num {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--light-blue));
  color: var(--white); font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.processo-card__title { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.processo-card__desc { font-size: 12px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* PROPOSTA BOX (Consultoria form section) */
.proposta-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 48px 40px;
  box-shadow: var(--shadow-sm); max-width: 640px; margin: 0 auto;
}
.proposta-box__header { text-align: center; margin-bottom: 32px; }
.proposta-box__desc { font-size: 14px; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-top: 8px; }

/* CONSULTORIA FORM (fallback when no CF7) */
.cons-form { display: flex; flex-direction: column; gap: 14px; }
.cons-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cons-form__input, .cons-form__textarea {
  width: 100%; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 14px 18px; font-size: 14px;
  color: var(--dark); outline: none; font-family: 'Outfit', sans-serif;
  transition: border-color var(--ease);
}
.cons-form__input:focus, .cons-form__textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,109,180,0.08); }
.cons-form__input::placeholder, .cons-form__textarea::placeholder { color: var(--text-muted); }
.cons-form__textarea { resize: vertical; min-height: 100px; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px; transition: all 0.3s; box-shadow: var(--shadow-sm);
}
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card--featured { border-color: var(--blue); background: rgba(46,109,180,0.02); position: relative; box-shadow: var(--shadow-md); }
.price-card--featured::before {
  content: 'MAIS POPULAR'; position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%); background: var(--blue); color: var(--white);
  font-size: 9px; letter-spacing: 2px; padding: 4px 14px; border-radius: 12px; font-weight: 600; white-space: nowrap;
}
.price-card__title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.price-card__desc { font-size: 12px; color: var(--text-light); font-weight: 300; margin-bottom: 20px; line-height: 1.5; }
.price-card__list { margin-bottom: 24px; }
.price-card__list li { font-size: 12px; color: var(--text-light); padding: 5px 0; display: flex; align-items: center; gap: 8px; font-weight: 300; }
.price-card__list li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* MENTORIA HERO */
.mentoria-hero { padding: 140px 0 60px; text-align: center; position: relative; z-index: 1; }
.mentoria-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 30%, rgba(46,109,180,0.04), transparent 60%); }
.mentoria-hero__title { font-size: 38px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
.mentoria-hero__title em { font-style: normal; color: var(--blue); }
.mentoria-hero__sub { font-size: 15px; color: var(--text-light); font-weight: 300; max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }

/* NEWSLETTER PAGE */
.news-hero { padding: 140px 0 40px; text-align: center; position: relative; z-index: 1; }
.news-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 40%, rgba(46,109,180,0.04), transparent 60%); }
.news-hero__title { font-size: 36px; font-weight: 800; color: var(--dark); margin: 20px 0 14px; }
.news-hero__title em { font-style: normal; color: var(--blue); }
.news-hero__sub { font-size: 15px; color: var(--text-light); font-weight: 300; max-width: 480px; margin: 0 auto 32px; line-height: 1.7; }
.news-author { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.news-author__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.news-author__name { font-size: 13px; color: var(--dark); font-weight: 600; }
.news-author__quote { font-size: 12px; color: var(--text-light); font-weight: 300; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 20px 0 44px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 18px; box-shadow: var(--shadow-sm); }
.feature-card__title { font-size: 12px; color: var(--dark); margin: 8px 0 4px; }
.feature-card__desc { font-size: 11px; color: var(--text-light); font-weight: 300; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.testimonial { background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 22px; box-shadow: var(--shadow-sm); }
.testimonial__quote { font-size: 12px; color: var(--text-light); font-style: italic; line-height: 1.7; font-weight: 300; margin-bottom: 10px; }
.testimonial__author { font-size: 11px; color: var(--dark); font-weight: 600; }
.testimonial__role { font-size: 10px; color: var(--text-muted); font-weight: 300; }

/* BLOG SIDEBAR */
.blog-layout { display: grid; grid-template-columns: 220px 1fr; gap: 32px; padding-top: 20px; }
.blog-sidebar { position: sticky; top: 84px; align-self: start; }
.blog-sidebar__title { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 14px; font-weight: 600; }
.sidebar-cats { display: flex; flex-direction: column; gap: 6px; margin-bottom: 28px; }
.sidebar-cats__link { font-size: 12px; color: var(--text-light); font-weight: 300; padding: 6px 12px; border-radius: var(--radius-sm); transition: all var(--ease); display: flex; justify-content: space-between; }
.sidebar-cats__link:hover, .sidebar-cats__link--active { background: rgba(46,109,180,0.06); color: var(--dark); }
.sidebar-cats__count { font-size: 10px; color: var(--text-muted); }
.search-box { display: flex; align-items: center; gap: 8px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 10px 14px; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.search-box__input { background: none; border: none; color: var(--dark); font-size: 12px; outline: none; flex: 1; }
.search-box__input::placeholder { color: var(--text-muted); }
.sidebar-cta { background: rgba(46,109,180,0.04); border: 1px solid var(--border); border-radius: 10px; padding: 16px; }
.sidebar-cta__text { font-size: 11px; color: var(--text-light); font-weight: 300; margin-bottom: 10px; }
.blog-main-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* SINGLE BLOG */
.single-hero { padding: 120px 0 40px; position: relative; z-index: 1; }
.single-hero__back { font-size: 11px; color: var(--text-light); display: inline-flex; align-items: center; gap: 4px; margin-bottom: 20px; }
.single-hero__cat { font-family: 'JetBrains Mono', monospace; font-size: 10px; color: var(--blue); letter-spacing: 2px; margin-bottom: 14px; display: inline-block; }
.single-hero__title { font-size: 34px; font-weight: 700; line-height: 1.3; max-width: 700px; margin-bottom: 16px; color: var(--dark); }
.single-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-light); font-weight: 300; }
.single-meta__photo { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.single-meta strong { color: var(--dark); font-weight: 600; }
.article { padding: 40px 0 80px; position: relative; z-index: 1; }
.article p { font-size: 15px; color: var(--text-light); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }
.article h2 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 36px 0 16px; }
.article blockquote { border-left: 3px solid var(--blue); padding: 16px 24px; margin: 24px 0; background: rgba(46,109,180,0.03); border-radius: 0 8px 8px 0; }
.article blockquote p { color: var(--dark); font-style: italic; margin-bottom: 0; }
.article code { font-family: 'JetBrains Mono', monospace; font-size: 13px; background: rgba(46,109,180,0.06); padding: 3px 8px; border-radius: 4px; color: var(--blue); }
.article h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin: 28px 0 12px; }
.article ul, .article ol { margin: 0 0 20px 20px; font-size: 15px; color: var(--text-light); font-weight: 300; line-height: 1.9; }
.article li { margin-bottom: 6px; }
.article a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; transition: color var(--ease); }
.article a:hover { color: var(--light-blue); }
.article .wp-block-table { margin: 28px 0; overflow-x: auto; }
.article .wp-block-table table { width: 100%; border-collapse: collapse; font-size: 13px; }
.article .wp-block-table thead { background: var(--dark); color: var(--white); }
.article .wp-block-table th { padding: 12px 16px; font-weight: 600; text-align: left; }
.article .wp-block-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-light); font-weight: 300; }
.article .wp-block-table tbody tr:hover { background: rgba(46,109,180,0.02); }
.article .wp-block-separator { display: none; }

/* YOUTUBE EMBED — responsive + styled */
.article .wp-block-embed-youtube { margin: 32px 0; }
.article .wp-block-embed-youtube .wp-block-embed__wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.article .wp-block-embed-youtube .wp-block-embed__wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: var(--radius-lg); }

.article__cta { margin-top: 44px; padding: 28px; background: rgba(46,109,180,0.03); border: 1px solid var(--border); border-radius: var(--radius-lg); text-align: center; }
.article__cta-title { color: var(--dark); font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.article__cta-desc { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
.article__cta .btn,
.article .btn { color: var(--white); text-decoration: none; }
.article__cta .btn:hover,
.article .btn:hover { color: var(--white); text-decoration: none; }

/* AUTHOR BOX */
.author-box { display: flex; gap: 20px; align-items: center; padding: 28px; margin: 48px 0 40px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.author-box__photo { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-box__name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.author-box__role { font-size: 12px; color: var(--blue); font-weight: 500; margin-bottom: 8px; }
.author-box__bio { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.6; }
.author-box__links { display: flex; gap: 12px; margin-top: 10px; }
.author-box__link { font-size: 12px; color: var(--blue); font-weight: 500; }

/* COMMENTS */
.comments { margin: 0 0 60px; }
.comments__title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 24px; }
.comments__form { margin-bottom: 32px; }
.comments__textarea { width: 100%; min-height: 100px; resize: vertical; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 18px; font-size: 14px; color: var(--dark); outline: none; font-family: 'Outfit', sans-serif; transition: border-color var(--ease); }
.comments__textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,109,180,0.08); }
.comments__textarea::placeholder { color: var(--text-muted); }
.comments__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.comments__input { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 16px; font-size: 13px; color: var(--dark); outline: none; font-family: 'Outfit', sans-serif; }
.comments__input:focus { border-color: var(--blue); }
.comments__input::placeholder { color: var(--text-muted); }
.comments__submit { margin-top: 12px; }
.comments__list { display: flex; flex-direction: column; gap: 20px; }
.comment { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-sm); }
.comment__header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.comment__avatar { width: 36px; height: 36px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--light-blue)); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--white); }
.comment__name { font-size: 13px; font-weight: 600; color: var(--dark); }
.comment__date { font-size: 11px; color: var(--text-muted); font-weight: 300; }
.comment__text { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.7; }
.comment__reply a { font-size: 12px; color: var(--accent); font-weight: 500; text-decoration: none; cursor: pointer; }
.comment__reply a:hover { text-decoration: underline; }
.comment--reply { margin-left: 32px; border-left: 2px solid var(--accent); padding-left: 16px; }
.comment .children { margin-top: 12px; }
#cancel-comment-reply-link { font-size: 12px; color: var(--text-light); margin-left: 8px; }

/* FAQ */
.faq { margin: 0 0 60px; }
.faq__title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.faq__item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; background: var(--bg-card); box-shadow: var(--shadow-sm); }
.faq__question { width: 100%; background: none; border: none; cursor: pointer; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; font-family: 'Outfit', sans-serif; font-size: 14px; font-weight: 600; color: var(--dark); text-align: left; transition: background var(--ease); }
.faq__question:hover { background: rgba(46,109,180,0.02); }
.faq__icon { width: 20px; height: 20px; transition: transform 0.3s; color: var(--blue); flex-shrink: 0; }
.faq__item--open .faq__icon { transform: rotate(45deg); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq__answer-inner { padding: 0 20px 18px; font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.7; }

/* PROGRESS BAR */
.progress-bar { position: fixed; top: 64px; left: 0; height: 2px; background: var(--blue); z-index: 99; transition: width 0.1s; width: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 36px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group__label { display: block; font-size: 11px; letter-spacing: 1px; color: var(--text-light); margin-bottom: 5px; font-weight: 500; }
.form-group__input, .form-group__textarea, .form-group__select { width: 100%; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 13px 16px; font-size: 14px; color: var(--dark); outline: none; transition: border-color var(--ease); }
.form-group__input:focus, .form-group__textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(46,109,180,0.08); }
.form-group__textarea { resize: vertical; min-height: 110px; }
.contact-info__title { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.contact-info__desc { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 20px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.contact-item__label { color: var(--dark); font-weight: 600; display: block; font-size: 12px; margin-bottom: 2px; }
.contact-item__value { font-size: 12px; color: var(--text-light); font-weight: 300; }

/* FLOATING CTA */
.floating-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  background: var(--blue); color: var(--white); padding: 14px 22px;
  border-radius: var(--radius-lg); font-size: 13px; font-weight: 600;
  box-shadow: 0 8px 32px rgba(46,109,180,0.3);
  display: flex; align-items: center; gap: 8px;
  cursor: pointer; transition: all 0.3s; animation: pulse 3s infinite;
}
.floating-cta:hover { background: var(--light-blue); color: var(--white); transform: scale(1.05); animation: none; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(46,109,180,0.2); }
  50%      { box-shadow: 0 8px 40px rgba(46,109,180,0.45); }
}

/* FOOTER */
.footer { border-top: 1px solid var(--border); padding: 44px 0 28px; background: var(--dark); color: var(--ice); position: relative; z-index: 1; }
.footer .nav__logo { color: var(--soft-blue); }
.footer .nav__logo-text { color: var(--ice); }
.footer .nav__logo-text span { color: var(--soft-blue); }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer__brand-desc { font-size: 12px; color: var(--soft-blue); font-weight: 300; line-height: 1.6; margin-top: 12px; }
.footer__col-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--ice); margin-bottom: 14px; font-weight: 600; }
.footer__col a { display: block; font-size: 12px; color: var(--soft-blue); font-weight: 300; margin-bottom: 7px; }
.footer__col a:hover { color: var(--ice); }
.footer__bottom { border-top: 1px solid rgba(106,143,184,0.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; }
.footer__copy { font-size: 10px; color: var(--soft-blue); letter-spacing: 1px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a { font-size: 14px; color: var(--soft-blue); }
.footer__social a:hover { color: var(--ice); }

/* BREADCRUMBS */
.breadcrumbs { font-size: 12px; color: var(--text-light); margin-bottom: 20px; display: flex; align-items: center; flex-wrap: wrap; gap: 6px; }
.breadcrumbs a { color: var(--text-light); font-weight: 400; }
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs__sep { color: var(--text-muted); font-size: 10px; }
.breadcrumbs__current { color: var(--dark); font-weight: 500; }

/* RESPONSIVE — Tablet (768px) */
@media (max-width: 768px) {
  .container, .container--sm { padding: 0 16px; }
  .nav__inner { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 110px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__photo { order: -1; display: flex; justify-content: center; }
  .hero__photo img { width: 160px; height: 160px; }
  .hero__desc { margin: 0 auto 32px; max-width: 100%; }
  .hero__actions { justify-content: center; flex-wrap: wrap; }
  .hero__title { font-size: 28px; }
  .skills-grid, .pain-grid { grid-template-columns: 1fr 1fr; }
  .processo-grid, .solucoes-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid, .news-box { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid, .features-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
  .nav__hamburger { display: block; }
  .nav__links--open { padding: 20px 16px; gap: 18px; }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .blog-main-grid { grid-template-columns: 1fr; }
  .floating-cta { bottom: 16px; right: 16px; font-size: 12px; padding: 12px 18px; }
  .mentoria-hero { padding: 110px 0 48px; }
  .mentoria-hero__title { font-size: 28px; }
  .mentoria-hero__sub { font-size: 14px; margin: 0 auto 32px; }
  .news-hero { padding: 110px 0 32px; }
  .news-hero__title { font-size: 26px; }
  .news-hero__sub { font-size: 14px; }
  .author-box { flex-direction: column; text-align: center; }
  .comments__row { grid-template-columns: 1fr; }
  .news-box { padding: 32px 20px; }
  .single-hero { padding: 100px 0 32px; }
  .single-hero__title { font-size: 26px; }
  .single-meta { flex-wrap: wrap; }
  .article__cta { padding: 24px 20px; }
  .awards__grid { gap: 10px; }
  .award { padding: 8px 10px; }
  .contact-info { margin-top: 16px; }
  .proposta-box { padding: 36px 24px; }
  .form-group__input, .form-group__textarea, .form-group__select,
  .news-form__input, .comments__textarea, .comments__input,
  .cons-form__input, .cons-form__textarea { font-size: 16px; }
  body { font-size: 16px; }
}

/* RESPONSIVE — Small phones (480px) */
@media (max-width: 480px) {
  .container, .container--sm { padding: 0 12px; }
  .section { padding: 40px 0; }
  .hero { padding: 96px 0 40px; }
  .hero__title { font-size: 24px; }
  .hero__desc { font-size: 14px; }
  .hero__badge { font-size: 10px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { width: 100%; }
  .skills-grid, .pain-grid { grid-template-columns: 1fr; }
  .processo-grid { grid-template-columns: 1fr; }
  .solucoes-grid { grid-template-columns: 1fr 1fr; }
  .section__heading { font-size: 24px; }
  .section__heading--sm { font-size: 20px; }
  .section__sub { font-size: 14px; }
  .mentoria-hero { padding: 96px 0 36px; }
  .mentoria-hero__title { font-size: 24px; }
  .mentoria-hero__sub { font-size: 13px; }
  .news-hero { padding: 96px 0 28px; }
  .news-hero__title { font-size: 22px; }
  .news-hero__sub { font-size: 13px; }
  .single-hero { padding: 88px 0 24px; }
  .single-hero__title { font-size: 22px; }
  .article { padding: 28px 0 60px; }
  .article__cta { padding: 20px 16px; margin-top: 32px; }
  .article__cta .btn { font-size: 13px; padding: 12px 20px; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .floating-cta { bottom: 12px; right: 12px; font-size: 11px; padding: 10px 16px; }
  .breadcrumbs { font-size: 11px; }
  .cons-form__row { grid-template-columns: 1fr; }
  .proposta-box { padding: 24px 16px; }
  .about-grid { gap: 32px; }
  .about__text p { font-size: 13px; }
  .timeline__title { font-size: 12px; }
  .timeline__desc { font-size: 10px; }
  .contact-grid { gap: 32px; }
  .blog-card__title { font-size: 15px; }
  .blog-card__body { padding: 14px; }
  .author-box { padding: 20px; }
  .pain-card { padding: 20px; }
  .solucao-card { padding: 16px; }
  .processo-card { padding: 20px; }
  .awards { padding: 32px 0; }
  .awards__grid { gap: 8px; }
  .award__text { font-size: 10px; }
}
