/* ================================================
   EPO Theme — main.css
   ================================================ */

/* ---- Variáveis ---- */
:root {
  --epo-primary:   hsl(232, 62%, 39%);
  --epo-secondary: hsl(204, 100%, 40%);
  --epo-accent:    hsl(195, 65%, 51%);
  --epo-bg:        hsl(210, 30%, 98%);
  --epo-bg-alt:    hsl(210, 20%, 96%);
  --epo-fg:        hsl(232, 62%, 25%);
  --epo-muted:     hsl(232, 30%, 45%);
  --epo-border:    hsl(210, 25%, 88%);
  --epo-card:      #ffffff;
  --epo-gradient:  linear-gradient(90deg, hsl(204,100%,40%) 0%, hsl(195,65%,51%) 100%);
  --epo-gradient-hero: linear-gradient(135deg, hsl(232,62%,25%) 0%, hsl(232,62%,39%) 50%, hsl(204,100%,40%) 100%);
  --epo-shadow-soft: 0 4px 20px -4px hsl(232 62% 25% / .08);
  --epo-shadow-card: 0 8px 40px -8px hsl(232 62% 25% / .13);
  --epo-shadow-glow: 0 0 48px hsl(204 100% 40% / .22);
  --epo-radius:    0.75rem;
  --epo-radius-lg: 1.25rem;
  --epo-radius-xl: 1.75rem;
  --container: 1280px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--epo-bg);
  color: var(--epo-fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: 80px; /* compensa header fixo */
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ---- Container ---- */
.epo-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Utilitários ---- */
.epo-gradient-text {
  background: var(--epo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.epo-section-badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.epo-section-badge--primary { background: hsl(232,62%,39%,.1); color: var(--epo-primary); }
.epo-section-badge--secondary { background: hsl(204,100%,40%,.1); color: var(--epo-secondary); }
.epo-section-badge--light { background: rgba(255,255,255,.12); color: rgba(255,255,255,.9); }

.epo-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--epo-fg);
  margin-bottom: 16px;
}
.epo-section-desc {
  font-size: 16px;
  color: var(--epo-muted);
  line-height: 1.75;
  max-width: 580px;
}
.epo-section-header { text-align: center; margin-bottom: 60px; }
.epo-section-header .epo-section-desc { margin: 0 auto; }

/* ── BOTÕES ── */
.epo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--epo-radius);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  transition: transform .2s, box-shadow .2s, opacity .2s, background .2s;
  cursor: pointer;
}
.epo-btn:hover { transform: translateY(-2px); }
.epo-btn--primary {
  background: var(--epo-gradient);
  color: #fff;
  box-shadow: 0 0 28px hsl(204 100% 40% / .28);
}
.epo-btn--primary:hover { opacity: .92; box-shadow: 0 0 40px hsl(204 100% 40% / .4); color: #fff; }
.epo-btn--white {
  background: #fff;
  color: var(--epo-fg);
}
.epo-btn--white:hover { box-shadow: 0 8px 28px rgba(0,0,0,.18); color: var(--epo-fg); }
.epo-btn--outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.epo-btn--outline:hover { background: rgba(255,255,255,.2); color: #fff; }
.epo-btn--ghost {
  background: #fff;
  color: var(--epo-fg);
  border: 1.5px solid var(--epo-border);
}
.epo-btn--ghost:hover { border-color: var(--epo-primary); color: var(--epo-primary); }
.epo-btn svg { width: 17px; height: 17px; flex-shrink: 0; transition: transform .2s; }
.epo-btn:hover svg { transform: translateX(3px); }
.epo-btn--lg { padding: 16px 36px; font-size: 17px; }

/* ════════════════════════════════════════════
   HEADER
════════════════════════════════════════════ */
#epo-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9990;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.3);
  box-shadow: var(--epo-shadow-soft);
  transition: background .3s, box-shadow .3s;
}
#epo-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 4px 32px -4px hsl(232 62% 25% / .18);
}
.epo-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.epo-logo { display: flex; align-items: center; transition: transform .2s; }
.epo-logo:hover { transform: scale(1.04); }
.epo-logo img { height: 52px; width: auto; }

/* Nav desktop */
.epo-nav { display: flex; align-items: center; gap: 2px; }
.epo-nav a {
  display: block;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 500;
  color: var(--epo-muted);
  border-radius: var(--epo-radius);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.epo-nav a:hover, .epo-nav a.current { color: var(--epo-fg); background: var(--epo-bg-alt); }
.epo-nav a.current { color: var(--epo-primary); font-weight: 600; }

/* Hamburguer */
.epo-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 10px;
  background: none;
  border: none;
  transition: background .2s;
}
.epo-hamburger:hover { background: var(--epo-bg-alt); }
.epo-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--epo-fg);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.epo-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.epo-hamburger.open span:nth-child(2) { opacity: 0; }
.epo-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.epo-mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--epo-border);
  padding: 12px 24px 20px;
  gap: 2px;
}
.epo-mobile-nav.open { display: flex; }
.epo-mobile-nav a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--epo-muted);
  border-radius: var(--epo-radius);
  transition: color .2s, background .2s;
}
.epo-mobile-nav a:hover { color: var(--epo-fg); background: var(--epo-bg-alt); }
.epo-mobile-nav .epo-btn { margin-top: 10px; justify-content: center; }

@media (max-width: 1023px) {
  .epo-nav, .epo-header-cta { display: none; }
  .epo-hamburger { display: flex; }
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
#epo-hero {
  position: relative;
  min-height: 100vh;
  background: var(--epo-gradient-hero);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.epo-hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.epo-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: epoPulse 5s ease-in-out infinite;
}
.epo-blob-1 { top: 8%; left: 3%; width: 320px; height: 320px; background: hsl(232,62%,39%,.35); animation-duration: 4s; }
.epo-blob-2 { bottom: 10%; right: 4%; width: 420px; height: 420px; background: hsl(204,100%,40%,.25); animation-duration: 5.5s; animation-delay: 1s; }
.epo-blob-3 { top: 45%; left: 45%; transform: translate(-50%,-50%); width: 700px; height: 700px; background: hsl(195,65%,51%,.08); animation: epoRotate 60s linear infinite; }
.epo-grid-pattern {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
  background-size: 60px 60px;
}
.epo-float { position: absolute; border-radius: 50%; animation: epoFloat 4s ease-in-out infinite; }
.epo-float-1 { top: 28%; right: 22%; width: 14px; height: 14px; background: hsl(195,65%,51%,.7); }
.epo-float-2 { top: 38%; left: 20%; width: 20px; height: 20px; background: hsl(204,100%,40%,.5); border-radius: 4px; transform: rotate(45deg); animation-delay: 1s; }
.epo-float-3 { bottom: 35%; right: 30%; width: 10px; height: 10px; background: hsl(232,62%,39%,.6); animation-delay: 2s; }

@keyframes epoPulse { 0%,100% { opacity:.4; transform:scale(1); } 50% { opacity:.8; transform:scale(1.15); } }
@keyframes epoRotate { from { transform:translate(-50%,-50%) rotate(0deg); } to { transform:translate(-50%,-50%) rotate(360deg); } }
@keyframes epoFloat { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-16px); } }
@keyframes epoFadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }

.epo-hero-content {
  position: relative; z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 100px;
  text-align: center;
}
.epo-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 32px;
  animation: epoFadeUp .6s ease-out both;
}
.epo-hero-badge-dot {
  width: 8px; height: 8px;
  background: hsl(195,65%,51%);
  border-radius: 50%;
  animation: epoPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.epo-hero-badge span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); }
.epo-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800; color: #fff;
  line-height: 1.12; margin-bottom: 24px;
  animation: epoFadeUp .6s ease-out .15s both;
}
.epo-hero-title .epo-highlight { position: relative; display: inline-block; }
.epo-hero-title .epo-highlight::after {
  content: ''; position: absolute;
  bottom: 6px; left: 0; right: 0; height: 12px;
  background: hsl(195,65%,51%,.35); transform: skewX(-3deg);
  z-index: -1; border-radius: 2px;
}
.epo-hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.68);
  max-width: 600px; margin: 0 auto 44px;
  line-height: 1.7;
  animation: epoFadeUp .6s ease-out .3s both;
}
.epo-hero-btns {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 16px; margin-bottom: 72px;
  animation: epoFadeUp .6s ease-out .45s both;
}
.epo-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
  animation: epoFadeUp .6s ease-out .6s both;
}
.epo-stat-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px; padding: 28px 16px;
  text-align: center; cursor: default;
  transition: transform .3s, background .3s;
}
.epo-stat-card:hover { transform: translateY(-10px) scale(1.03); background: rgba(255,255,255,.13); }
.epo-stat-icon { display: flex; justify-content: center; margin-bottom: 12px; }
.epo-stat-icon svg { width: 30px; height: 30px; color: hsl(195,65%,51%); }
.epo-stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px;
}
.epo-stat-label { font-size: 12px; color: rgba(255,255,255,.55); line-height: 1.4; }
.epo-hero-wave { position: absolute; bottom: -2px; left: 0; right: 0; line-height: 0; }
.epo-hero-wave svg { width: 100%; height: auto; display: block; }

/* ════════════════════════════════════════════
   SOBRE NÓS
════════════════════════════════════════════ */
#epo-about {
  background: var(--epo-bg-alt);
  padding: 96px 0;
  overflow: hidden;
}
.epo-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.epo-about-desc { font-size: 16px; color: var(--epo-muted); line-height: 1.75; margin-bottom: 36px; }
.epo-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.epo-benefit {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--epo-fg); line-height: 1.5;
  transition: padding-left .2s, color .2s; cursor: default;
}
.epo-benefit:hover { padding-left: 4px; color: var(--epo-primary); }
.epo-benefit svg { width: 17px; height: 17px; color: var(--epo-secondary); flex-shrink: 0; margin-top: 2px; }
.epo-about-cards { display: flex; flex-direction: column; gap: 20px; }
.epo-about-card {
  background: var(--epo-card);
  border-radius: 20px; padding: 24px 28px;
  box-shadow: var(--epo-shadow-card);
  display: flex; align-items: flex-start; gap: 20px;
  position: relative; overflow: hidden;
  cursor: default; transition: transform .3s, box-shadow .3s;
}
.epo-about-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--epo-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.epo-about-card:hover { transform: scale(1.02) translateX(-8px); box-shadow: var(--epo-shadow-glow); }
.epo-about-card:hover::after { transform: scaleX(1); }
.epo-about-card-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--epo-gradient);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.epo-about-card-icon svg { width: 24px; height: 24px; color: #fff; }
.epo-about-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 700; color: var(--epo-fg); margin-bottom: 6px;
  transition: color .2s;
}
.epo-about-card:hover h3 { color: var(--epo-primary); }
.epo-about-card p { font-size: 14px; color: var(--epo-muted); line-height: 1.65; }

/* ════════════════════════════════════════════
   SERVIÇOS
════════════════════════════════════════════ */
#epo-services { background: var(--epo-card); padding: 96px 0; }
.epo-services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.epo-service-card {
  background: var(--epo-card);
  border-radius: 20px; padding: 36px 28px;
  box-shadow: var(--epo-shadow-card);
  position: relative; overflow: hidden;
  cursor: default; transition: transform .3s, box-shadow .3s;
}
.epo-service-card::before {
  content: ''; position: absolute; inset: 0;
  background: var(--epo-gradient); opacity: 0;
  transition: opacity .3s; pointer-events: none;
}
.epo-service-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: var(--epo-shadow-glow); }
.epo-service-card:hover::before { opacity: .06; }
.epo-service-border {
  position: absolute; inset: 0; border-radius: 20px;
  border: 2px solid transparent; transition: border-color .3s; pointer-events: none;
}
.epo-service-card:hover .epo-service-border { border-color: hsl(204,100%,40%,.35); }
.epo-service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: var(--epo-bg-alt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; transition: background .3s; position: relative;
}
.epo-service-card:hover .epo-service-icon { background: hsl(232,62%,39%,.1); }
.epo-service-icon svg { width: 28px; height: 28px; color: var(--epo-primary); }
.epo-service-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px; font-weight: 700; color: var(--epo-fg);
  margin-bottom: 12px; position: relative; transition: color .2s;
}
.epo-service-card:hover h3 { color: var(--epo-primary); }
.epo-service-card p { font-size: 14px; color: var(--epo-muted); line-height: 1.7; position: relative; }
.epo-service-deco {
  position: absolute; bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: radial-gradient(circle, hsl(232,62%,39%,.06), transparent);
  border-radius: 50%; transition: transform .4s;
}
.epo-service-card:hover .epo-service-deco { transform: scale(2.2); }

/* ════════════════════════════════════════════
   DESTAQUES
════════════════════════════════════════════ */
#epo-highlights { background: var(--epo-bg-alt); padding: 96px 0; overflow: hidden; }
.epo-highlights-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-bottom: 48px; }
.epo-news-card {
  background: var(--epo-card); border-radius: 20px;
  overflow: hidden; box-shadow: var(--epo-shadow-card);
  cursor: pointer; transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.epo-news-card:hover { transform: translateY(-14px) scale(1.02); box-shadow: var(--epo-shadow-glow); }
.epo-news-img { position: relative; padding-top: 60%; overflow: hidden; }
.epo-news-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.epo-news-card:hover .epo-news-img img { transform: scale(1.12); }
.epo-news-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,32,71,.65), transparent);
}
.epo-news-cat {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--epo-secondary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
}
.epo-news-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.epo-news-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px; font-weight: 700; color: var(--epo-fg);
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  transition: color .2s;
}
.epo-news-card:hover .epo-news-body h3 { color: var(--epo-primary); }
.epo-news-body p {
  font-size: 13px; color: var(--epo-muted); line-height: 1.6; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 14px;
}
.epo-news-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--epo-muted); }
.epo-news-meta-date { display: flex; align-items: center; gap: 5px; }
.epo-news-meta-date svg { width: 12px; height: 12px; }
.epo-highlights-footer { text-align: center; }

/* ════════════════════════════════════════════
   CONTATO
════════════════════════════════════════════ */
#epo-contact {
  position: relative; padding: 96px 0;
  background: var(--epo-gradient-hero); overflow: hidden;
}
.epo-contact-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.epo-contact-info { color: #fff; }
.epo-contact-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 20px;
}
.epo-contact-desc { font-size: 16px; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 440px; margin-bottom: 40px; }
.epo-contact-items { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.epo-contact-item {
  display: flex; align-items: center; gap: 18px;
  text-decoration: none; transition: padding-left .2s;
}
.epo-contact-item:hover { padding-left: 8px; }
.epo-contact-item-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .2s;
}
.epo-contact-item:hover .epo-contact-item-icon { background: rgba(255,255,255,.18); }
.epo-contact-item-icon svg { width: 20px; height: 20px; color: hsl(195,65%,51%); }
.epo-contact-item-label { font-size: 12px; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.epo-contact-item-value { font-size: 15px; color: #fff; font-weight: 500; }
.epo-contact-social { display: flex; align-items: center; gap: 12px; }
.epo-contact-social span { font-size: 13px; color: rgba(255,255,255,.5); }
.epo-contact-social a {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.8); transition: background .2s, transform .2s;
}
.epo-contact-social a:hover { background: var(--epo-secondary); transform: translateY(-3px) rotate(10deg); color: #fff; }
.epo-contact-social svg { width: 18px; height: 18px; }

/* Formulário */
.epo-form-wrap {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  border-radius: 28px; padding: 40px;
  box-shadow: 0 0 60px hsl(204,100%,40%,.22);
}
.epo-form-wrap h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--epo-fg); margin-bottom: 28px;
}
.epo-form { display: flex; flex-direction: column; gap: 18px; }
.epo-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.epo-form-group { display: flex; flex-direction: column; gap: 6px; }
.epo-form-group label { font-size: 13px; font-weight: 600; color: var(--epo-fg); }
.epo-form-group input,
.epo-form-group textarea,
.epo-form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--epo-border);
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: var(--epo-fg);
  background: rgba(255,255,255,.5);
  outline: none; transition: border-color .2s, box-shadow .2s;
  resize: none; width: 100%;
}
.epo-form-group input:focus,
.epo-form-group textarea:focus {
  border-color: var(--epo-primary);
  box-shadow: 0 0 0 3px hsl(232,62%,39%,.1);
}
.epo-form-group input::placeholder,
.epo-form-group textarea::placeholder { color: hsl(232,30%,65%); }
.epo-form-feedback {
  padding: 12px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 500; display: none;
}
.epo-form-feedback.success { background: hsl(142,72%,90%); color: hsl(142,60%,25%); display: block; }
.epo-form-feedback.error { background: hsl(0,72%,92%); color: hsl(0,60%,35%); display: block; }

/* ════════════════════════════════════════════
   BLOG — Listagem
════════════════════════════════════════════ */
#epo-blog-hero {
  background: var(--epo-gradient-hero);
  padding: 120px 0 72px;
  text-align: center;
  position: relative; overflow: hidden;
}
.epo-blog-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: 0 24px; }
.epo-blog-hero-inner h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; color: #fff; margin-bottom: 16px;
}
.epo-blog-hero-inner p { font-size: 17px; color: rgba(255,255,255,.7); line-height: 1.7; }

#epo-blog-list { background: var(--epo-bg-alt); padding: 72px 0 96px; }
.epo-blog-inner { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.epo-blog-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px; justify-content: center;
}
.epo-filter-btn {
  padding: 8px 20px; border-radius: 100px;
  border: 1.5px solid var(--epo-border);
  background: var(--epo-card); color: var(--epo-muted);
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600; transition: all .2s;
}
.epo-filter-btn:hover, .epo-filter-btn.active {
  border-color: var(--epo-primary); color: var(--epo-primary);
  background: hsl(232,62%,39%,.07);
}
.epo-filter-btn.active { background: var(--epo-primary); color: #fff; }

.epo-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-bottom: 56px;
}
.epo-post-card {
  background: var(--epo-card); border-radius: 20px;
  overflow: hidden; box-shadow: var(--epo-shadow-card);
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.epo-post-card:hover { transform: translateY(-10px); box-shadow: var(--epo-shadow-glow); }
.epo-post-card--featured { grid-column: span 3; display: grid; grid-template-columns: 1fr 1fr; }
.epo-post-thumb {
  position: relative; padding-top: 58%; overflow: hidden; flex-shrink: 0;
}
.epo-post-card--featured .epo-post-thumb { padding-top: 0; min-height: 300px; }
.epo-post-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.epo-post-card--featured .epo-post-thumb img { position: static; height: 100%; width: 100%; }
.epo-post-card:hover .epo-post-thumb img { transform: scale(1.07); }
.epo-post-cat-badge {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; border-radius: 100px;
  background: var(--epo-secondary); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .04em; z-index: 2;
}
.epo-post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.epo-post-body h2, .epo-post-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; color: var(--epo-fg);
  margin-bottom: 10px; line-height: 1.4; transition: color .2s;
}
.epo-post-body h2 { font-size: 22px; }
.epo-post-body h3 { font-size: 17px; }
.epo-post-card:hover .epo-post-body h2,
.epo-post-card:hover .epo-post-body h3 { color: var(--epo-primary); }
.epo-post-body p {
  font-size: 14px; color: var(--epo-muted); line-height: 1.7;
  flex: 1; margin-bottom: 20px;
  display: -webkit-box; -webkit-line-clamp: 3;
  -webkit-box-orient: vertical; overflow: hidden;
}
.epo-post-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid var(--epo-border);
  font-size: 12px; color: var(--epo-muted);
}
.epo-post-meta-left { display: flex; align-items: center; gap: 8px; }
.epo-post-meta-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--epo-gradient);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 10px; font-weight: 700;
}
.epo-read-more {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--epo-primary);
  transition: gap .2s;
}
.epo-post-card:hover .epo-read-more { gap: 10px; }
.epo-read-more svg { width: 14px; height: 14px; }

/* Paginação */
.epo-pagination { display: flex; justify-content: center; gap: 8px; }
.epo-pagination a, .epo-pagination span {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1.5px solid var(--epo-border);
  background: var(--epo-card); color: var(--epo-muted);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 600; transition: all .2s;
}
.epo-pagination a:hover { border-color: var(--epo-primary); color: var(--epo-primary); }
.epo-pagination .current {
  background: var(--epo-primary); color: #fff; border-color: var(--epo-primary);
}

/* ════════════════════════════════════════════
   SINGLE POST
════════════════════════════════════════════ */
.epo-single-wrap { max-width: 860px; margin: 0 auto; padding: 60px 24px 96px; }
.epo-single-hero { position: relative; border-radius: 24px; overflow: hidden; margin-bottom: 48px; }
.epo-single-hero img { width: 100%; height: 460px; object-fit: cover; display: block; }
.epo-single-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,32,71,.7) 0%, transparent 60%); }
.epo-single-hero-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px; color: #fff;
}
.epo-single-hero-meta h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800;
  line-height: 1.2; margin-bottom: 16px;
}
.epo-post-info { display: flex; align-items: center; gap: 16px; font-size: 13px; color: rgba(255,255,255,.8); flex-wrap: wrap; }
.epo-post-info svg { width: 14px; height: 14px; }
.epo-post-info span { display: flex; align-items: center; gap: 5px; }

.epo-post-content {
  font-size: 17px; line-height: 1.85; color: var(--epo-fg);
}
.epo-post-content h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 700; color: var(--epo-fg);
  margin: 48px 0 16px;
}
.epo-post-content h3 { font-size: 1.4rem; margin: 36px 0 12px; }
.epo-post-content p { margin-bottom: 24px; }
.epo-post-content a { color: var(--epo-secondary); border-bottom: 1px solid; }
.epo-post-content ul, .epo-post-content ol { margin: 0 0 24px 24px; }
.epo-post-content li { margin-bottom: 8px; }
.epo-post-content img { border-radius: 16px; margin: 32px 0; }
.epo-post-content blockquote {
  border-left: 4px solid var(--epo-secondary);
  padding: 16px 24px; margin: 32px 0;
  background: hsl(204,100%,40%,.06);
  border-radius: 0 12px 12px 0;
  font-style: italic; color: var(--epo-primary);
}

/* Tags */
.epo-post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--epo-border); }
.epo-post-tag {
  padding: 5px 14px; border-radius: 100px;
  background: var(--epo-bg-alt); color: var(--epo-muted);
  font-size: 13px; font-weight: 500; transition: all .2s;
}
.epo-post-tag:hover { background: var(--epo-primary); color: #fff; }

/* Posts relacionados */
.epo-related { max-width: var(--container); margin: 0 auto; padding: 0 24px 96px; }
.epo-related h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem; font-weight: 800; color: var(--epo-fg); margin-bottom: 32px;
}
.epo-related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
#epo-footer { background: var(--epo-fg); color: rgba(255,255,255,.85); padding: 64px 0 0; }
.epo-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.epo-footer-brand img { height: 50px; width: auto; filter: brightness(0) invert(1); margin-bottom: 20px; }
.epo-footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); max-width: 280px; }
.epo-footer-social { display: flex; gap: 10px; margin-top: 24px; }
.epo-footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.7); transition: background .2s, transform .2s;
}
.epo-footer-social a:hover { background: var(--epo-secondary); color: #fff; transform: translateY(-2px); }
.epo-footer-social svg { width: 17px; height: 17px; }
.epo-footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 700; color: #fff;
  margin-bottom: 20px; letter-spacing: .02em;
}
.epo-footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.epo-footer-col a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .2s, padding-left .2s; display: inline-block;
}
.epo-footer-col a:hover { color: rgba(255,255,255,.95); padding-left: 4px; }
.epo-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0; display: flex;
  align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.epo-footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.epo-footer-filiados { display: flex; align-items: center; gap: 10px; }
.epo-footer-filiados span {
  font-size: 11px; color: rgba(255,255,255,.35);
  padding: 3px 10px; border: 1px solid rgba(255,255,255,.15);
  border-radius: 6px; letter-spacing: .03em;
}

/* ════════════════════════════════════════════
   RESPONSIVO
════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .epo-about-inner { grid-template-columns: 1fr; gap: 48px; }
  .epo-services-grid { grid-template-columns: 1fr 1fr; }
  .epo-highlights-grid { grid-template-columns: 1fr 1fr; }
  .epo-contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .epo-blog-grid { grid-template-columns: 1fr 1fr; }
  .epo-post-card--featured { grid-column: span 2; }
  .epo-footer-grid { grid-template-columns: 1fr 1fr; }
  .epo-footer-brand { grid-column: 1 / -1; }
  .epo-related-grid { grid-template-columns: 1fr 1fr; }
  .epo-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
  .epo-services-grid { grid-template-columns: 1fr; }
  .epo-highlights-grid { grid-template-columns: 1fr; }
  .epo-blog-grid { grid-template-columns: 1fr; }
  .epo-post-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .epo-post-card--featured .epo-post-thumb { min-height: 0; padding-top: 58%; }
  .epo-related-grid { grid-template-columns: 1fr; }
  .epo-footer-grid { grid-template-columns: 1fr; }
  .epo-footer-bottom { flex-direction: column; text-align: center; }
  .epo-form-row { grid-template-columns: 1fr; }
  .epo-form-wrap { padding: 28px 20px; }
  .epo-benefits { grid-template-columns: 1fr; }
  .epo-hero-btns { flex-direction: column; width: 100%; }
  .epo-hero-btns .epo-btn { width: 100%; justify-content: center; }
  .epo-single-hero img { height: 280px; }
}
