/* Patch 094a — Kit visual global EuPassei */

:root{
  --ep-bg:#f8fafc;
  --ep-card:#ffffff;
  --ep-text:#0f172a;
  --ep-muted:#64748b;
  --ep-border:#e5e7eb;
  --ep-blue:#2563eb;
  --ep-blue-dark:#1d4ed8;
  --ep-purple:#7c3aed;
  --ep-green:#16a34a;
  --ep-red:#dc2626;
  --ep-yellow:#f59e0b;
  --ep-radius-xl:28px;
  --ep-radius-lg:22px;
  --ep-radius-md:18px;
  --ep-shadow-sm:0 10px 22px rgba(15,23,42,.05);
  --ep-shadow-md:0 12px 28px rgba(15,23,42,.07);
  --ep-shadow-lg:0 18px 44px rgba(15,23,42,.16);
}

body{
  background:var(--ep-bg);
}

.ep-page{
  max-width:1180px;
  margin:0 auto;
  padding:8px 0 44px;
}

.ep-hero{
  background:linear-gradient(135deg,#0f172a,#2563eb);
  color:#fff;
  border-radius:var(--ep-radius-xl);
  padding:28px;
  margin:22px 0 18px;
  box-shadow:var(--ep-shadow-lg);
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
}

.ep-hero-purple{
  background:linear-gradient(135deg,#0f172a,#7c3aed);
}

.ep-eyebrow{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  color:#bfdbfe;
  font-weight:900;
}

.ep-hero-purple .ep-eyebrow{
  color:#ddd6fe;
}

.ep-hero h1{
  margin:6px 0 8px;
  font-size:36px;
  line-height:1.08;
}

.ep-hero p{
  margin:0;
  color:#dbeafe;
  max-width:840px;
}

.ep-hero-purple p{
  color:#ede9fe;
}

.ep-hero-badge{
  background:rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.22);
  border-radius:22px;
  min-width:150px;
  min-height:112px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:16px;
  text-align:center;
}

.ep-hero-badge strong{
  font-size:38px;
  line-height:1;
}

.ep-hero-badge span{
  font-size:13px;
  color:#dbeafe;
  font-weight:800;
}

.ep-stats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin-bottom:16px;
}

.ep-stat{
  background:var(--ep-card);
  border:1px solid var(--ep-border);
  border-radius:var(--ep-radius-md);
  padding:16px;
  box-shadow:var(--ep-shadow-sm);
}

.ep-stat strong{
  display:block;
  font-size:24px;
  color:var(--ep-text);
}

.ep-stat span{
  color:var(--ep-muted);
  font-size:13px;
}

.ep-grid-2{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}

.ep-grid-3{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}

.ep-panel,
.ep-card{
  background:var(--ep-card);
  border:1px solid var(--ep-border);
  border-radius:var(--ep-radius-lg);
  padding:18px;
  box-shadow:var(--ep-shadow-md);
}

.ep-card-hover{
  transition:.16s;
}

.ep-card-hover:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 32px rgba(15,23,42,.09);
}

.ep-panel h2,
.ep-card h2{
  margin:0 0 6px;
  color:var(--ep-text);
  font-size:20px;
}

.ep-panel p,
.ep-card p{
  margin:0 0 14px;
  color:var(--ep-muted);
  font-size:13px;
  line-height:1.48;
}

.ep-icon{
  width:48px;
  height:48px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  background:#eff6ff;
  color:#1d4ed8;
  margin-bottom:12px;
}

.ep-tags{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin:14px 0;
}

.ep-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:6px 9px;
  font-size:12px;
  font-weight:900;
  background:#f1f5f9;
  color:#334155;
}

.ep-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}

.ep-actions a,
.ep-actions button,
.ep-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px !important;
  padding:9px 13px;
  font-weight:900 !important;
  font-size:13px;
  border:1px solid transparent;
  background:var(--ep-blue);
  color:#fff;
}

.ep-actions a:hover,
.ep-btn:hover{
  color:#fff;
  background:var(--ep-blue-dark);
}

.ep-btn-soft,
.ep-actions a.soft{
  background:#e2e8f0;
  color:#0f172a;
}

.ep-btn-soft:hover,
.ep-actions a.soft:hover{
  background:#cbd5e1;
  color:#0f172a;
}

.ep-btn-danger{
  background:#fee2e2;
  color:#991b1b;
}

.ep-btn-danger:hover{
  background:#fecaca;
  color:#7f1d1d;
}

.ep-form-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.ep-form-grid .full{
  grid-column:1 / -1;
}

.ep-form-grid label{
  display:block;
  font-size:13px;
  font-weight:900;
  color:#334155;
  margin-bottom:6px;
}

.ep-form-grid input,
.ep-form-grid select,
.ep-form-grid textarea{
  width:100%;
  min-height:48px;
  border-radius:14px !important;
  font-size:15px !important;
}

.ep-empty{
  border:1px dashed #cbd5e1;
  background:#f8fafc;
  border-radius:18px;
  padding:18px;
  color:#64748b;
  font-weight:800;
}

.ep-table-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:22px;
  padding:18px;
  box-shadow:var(--ep-shadow-md);
}

.ep-table-card table{
  border-collapse:separate !important;
  border-spacing:0 10px !important;
}

.ep-table-card table thead th{
  border:0 !important;
  color:#64748b;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ep-table-card table tbody tr{
  background:#f8fafc;
  box-shadow:0 6px 16px rgba(15,23,42,.04);
}

.ep-table-card table tbody td{
  border-top:1px solid #e5e7eb !important;
  border-bottom:1px solid #e5e7eb !important;
  vertical-align:middle;
  padding:14px !important;
}

.ep-table-card table tbody td:first-child{
  border-left:1px solid #e5e7eb !important;
  border-radius:16px 0 0 16px;
}

.ep-table-card table tbody td:last-child{
  border-right:1px solid #e5e7eb !important;
  border-radius:0 16px 16px 0;
}

.ep-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:7px 10px;
  font-size:12px;
  font-weight:900;
  background:#dbeafe;
  color:#1e40af;
  white-space:nowrap;
}

.ep-badge-green{
  background:#dcfce7;
  color:#166534;
}

.ep-badge-yellow{
  background:#fef3c7;
  color:#92400e;
}

.ep-badge-red{
  background:#fee2e2;
  color:#991b1b;
}

.ep-muted{
  color:var(--ep-muted);
}

@media(max-width:1000px){
  .ep-grid-3,
  .ep-stats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:720px){
  .ep-page{
    padding-left:6px;
    padding-right:6px;
  }

  .ep-hero{
    flex-direction:column;
    align-items:flex-start;
  }

  .ep-grid-2,
  .ep-grid-3,
  .ep-stats,
  .ep-form-grid{
    grid-template-columns:1fr;
  }

  .ep-hero h1{
    font-size:30px;
  }
}

/* Patch 094e — ajustes finos globais */
.ep-kicker{
  display:inline-flex;
  align-items:center;
  gap:6px;
  border-radius:999px;
  padding:6px 10px;
  background:#eff6ff;
  color:#1d4ed8;
  font-size:12px;
  font-weight:900;
}

.ep-section-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin:0 0 12px;
}

.ep-section-title h2{
  margin:0;
  color:#0f172a;
  font-size:20px;
}

.ep-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:12px;
}

.ep-mini-card{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:14px;
}

.ep-mini-card strong{
  display:block;
  color:#0f172a;
  margin-bottom:4px;
}

.ep-mini-card span{
  color:#64748b;
  font-size:13px;
}

@media(max-width:720px){
  .ep-mini-grid{
    grid-template-columns:1fr;
  }
}

/* 094q2 — Menu lateral unificado */
.ep-shell-body{
  background:#f3f4f6;
}

.ep-sidebar{
  position:fixed;
  top:0;
  left:0;
  bottom:0;
  width:292px;
  background:#0f172a;
  color:#f8fafc;
  z-index:1040;
  overflow-y:auto;
  overflow-x:hidden;
  box-shadow:8px 0 30px rgba(15,23,42,.18);
  transition:width .2s ease, transform .2s ease;
}

.ep-sidebar-head{
  min-height:72px;
  padding:14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ep-sidebar-brand{
  display:flex;
  align-items:center;
  gap:10px;
  color:#fff;
  text-decoration:none;
  min-width:0;
}

.ep-brand-mark{
  width:42px;
  height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  font-weight:900;
  flex:0 0 auto;
}

.ep-sidebar-label{
  display:flex;
  flex-direction:column;
  min-width:0;
}

.ep-sidebar-label strong{
  color:#fff;
  font-size:15px;
  line-height:1.1;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.ep-sidebar-label small{
  color:#94a3b8;
  font-size:12px;
  margin-top:3px;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.ep-sidebar-icon-btn{
  width:38px;
  height:38px;
  border:0;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:900;
}

.ep-sidebar-icon-btn:hover{
  background:rgba(255,255,255,.14);
}

.ep-sidebar-user{
  margin:14px;
  padding:12px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
}

.ep-user-avatar{
  width:38px;
  height:38px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#1d4ed8;
  color:#fff;
  font-weight:900;
  text-transform:uppercase;
  flex:0 0 auto;
}

.ep-sidebar-nav{
  padding:4px 10px 18px;
}

.ep-accordion-section{
  margin-bottom:8px;
}

.ep-accordion-button{
  width:100%;
  display:flex;
  align-items:center;
  gap:10px;
  border:0;
  border-radius:14px;
  padding:11px 12px;
  background:transparent;
  color:#cbd5e1;
  font-weight:800;
  text-align:left;
}

.ep-accordion-button:hover,
.ep-accordion-button.is-open{
  background:rgba(255,255,255,.08);
  color:#fff;
}

.ep-menu-icon{
  width:24px;
  text-align:center;
  flex:0 0 auto;
}

.ep-chevron{
  margin-left:auto;
  color:#94a3b8;
  transition:transform .2s ease;
}

.ep-accordion-button.is-open .ep-chevron{
  transform:rotate(90deg);
}

.ep-accordion-panel{
  display:none;
  padding:6px 0 4px 34px;
}

.ep-accordion-panel.is-open{
  display:block;
}

.ep-sidebar-link{
  display:block;
  color:#cbd5e1;
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
  font-size:14px;
  font-weight:650;
  margin:2px 0;
}

.ep-sidebar-link:hover{
  color:#fff;
  background:rgba(255,255,255,.08);
}

.ep-sidebar-link.active{
  color:#fff;
  background:#2563eb;
}

.ep-sidebar-logout{
  color:#fecaca;
}

.ep-shell-main{
  margin-left:292px;
  min-height:100vh;
  padding:24px;
  transition:margin-left .2s ease;
}

body.ep-sidebar-collapsed .ep-sidebar{
  width:78px;
}

body.ep-sidebar-collapsed .ep-shell-main{
  margin-left:78px;
}

body.ep-sidebar-collapsed .ep-sidebar-label,
body.ep-sidebar-collapsed .ep-chevron{
  display:none;
}

body.ep-sidebar-collapsed .ep-sidebar-head{
  justify-content:center;
  padding-left:10px;
  padding-right:10px;
}

body.ep-sidebar-collapsed .ep-sidebar-brand{
  display:none;
}

body.ep-sidebar-collapsed .ep-sidebar-user{
  justify-content:center;
  padding:10px 6px;
}

body.ep-sidebar-collapsed .ep-accordion-button{
  justify-content:center;
  padding-left:8px;
  padding-right:8px;
}

body.ep-sidebar-collapsed .ep-accordion-panel{
  display:none !important;
}

.ep-mobile-menu-button{
  display:none;
  position:fixed;
  left:14px;
  top:14px;
  z-index:1060;
  border:0;
  border-radius:999px;
  background:#0f172a;
  color:#fff;
  padding:10px 14px;
  font-weight:900;
  box-shadow:0 8px 24px rgba(15,23,42,.22);
}

.ep-sidebar-backdrop{
  display:none;
}

@media(max-width:900px){
  .ep-mobile-menu-button{
    display:block;
  }

  .ep-sidebar{
    transform:translateX(-105%);
    width:292px;
  }

  body.ep-sidebar-mobile-open .ep-sidebar{
    transform:translateX(0);
  }

  .ep-shell-main,
  body.ep-sidebar-collapsed .ep-shell-main{
    margin-left:0;
    padding:76px 14px 20px;
  }

  body.ep-sidebar-mobile-open .ep-sidebar-backdrop{
    display:block;
    position:fixed;
    inset:0;
    background:rgba(15,23,42,.52);
    z-index:1030;
  }

  body.ep-sidebar-collapsed .ep-sidebar{
    width:292px;
  }

  body.ep-sidebar-collapsed .ep-sidebar-label,
  body.ep-sidebar-collapsed .ep-chevron{
    display:flex;
  }

  body.ep-sidebar-collapsed .ep-sidebar-brand{
    display:flex;
  }
}

@media(min-width:901px){
  .ep-mobile-menu-button{
    display:none !important;
  }
}

/* 094q3 — refinamento do menu lateral */
.ep-sidebar-admin-shortcuts{
  margin:0 14px 12px;
  display:flex;
  gap:8px;
}

.ep-sidebar-admin-shortcuts a{
  flex:1;
  text-align:center;
  padding:8px 9px;
  border-radius:12px;
  background:rgba(37,99,235,.18);
  color:#dbeafe;
  text-decoration:none;
  font-size:12px;
  font-weight:850;
}

.ep-sidebar-admin-shortcuts a:hover{
  background:rgba(37,99,235,.32);
  color:#fff;
}

.ep-sidebar-link{
  position:relative;
}

.ep-sidebar-link.active{
  background:linear-gradient(135deg,#2563eb,#1d4ed8);
  box-shadow:0 8px 18px rgba(37,99,235,.25);
}

.ep-sidebar-link.active::before{
  content:"";
  position:absolute;
  left:-9px;
  top:8px;
  bottom:8px;
  width:4px;
  border-radius:999px;
  background:#93c5fd;
}

body.ep-sidebar-collapsed .ep-sidebar-admin-shortcuts{
  display:none;
}

body.ep-sidebar-collapsed .ep-sidebar-link.active::before{
  display:none;
}

@media(max-width:900px){
  .ep-sidebar-admin-shortcuts{
    margin-top:0;
  }
}

/* 094r — Landing comercial */
.ep-landing-vendas{
  max-width:1180px;
}

.ep-sales-hero{
  display:grid;
  grid-template-columns:minmax(0,1.15fr) minmax(320px,.85fr);
  gap:28px;
  align-items:stretch;
  margin-bottom:28px;
}

.ep-sales-copy{
  position:relative;
  overflow:hidden;
  border-radius:30px;
  padding:42px;
  background:
    radial-gradient(circle at top right, rgba(37,99,235,.18), transparent 34%),
    linear-gradient(135deg,#ffffff,#eef4ff);
  border:1px solid rgba(37,99,235,.12);
  box-shadow:0 18px 45px rgba(15,23,42,.08);
}

.ep-sales-copy h1{
  margin:10px 0 16px;
  font-size:clamp(34px,5vw,58px);
  line-height:1.02;
  letter-spacing:-.045em;
  color:#0f172a;
  max-width:850px;
}

.ep-sales-lead{
  font-size:18px;
  line-height:1.65;
  color:#475569;
  max-width:780px;
}

.ep-sales-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}

.ep-btn-lg{
  padding:13px 18px;
  font-size:15px;
}

.ep-sales-trust{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:22px;
}

.ep-sales-trust span{
  display:inline-flex;
  align-items:center;
  padding:8px 11px;
  border-radius:999px;
  background:#fff;
  color:#334155;
  font-weight:800;
  font-size:13px;
  border:1px solid rgba(148,163,184,.25);
}

.ep-sales-card{
  position:relative;
  min-height:100%;
}

.ep-card-glow{
  position:absolute;
  inset:34px 18px 18px;
  border-radius:34px;
  background:linear-gradient(135deg,#2563eb,#7c3aed);
  filter:blur(24px);
  opacity:.18;
}

.ep-sales-panel{
  position:relative;
  height:100%;
  border-radius:30px;
  padding:26px;
  background:#0f172a;
  color:#fff;
  box-shadow:0 22px 50px rgba(15,23,42,.22);
  border:1px solid rgba(255,255,255,.08);
}

.ep-mini-title{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#dbeafe;
  font-weight:900;
  font-size:13px;
  margin-bottom:14px;
}

.ep-feature-line{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.ep-feature-line:last-child{
  border-bottom:0;
}

.ep-feature-line strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
}

.ep-feature-line span{
  color:#cbd5e1;
  font-size:14px;
}

.ep-section{
  margin-top:32px;
}

.ep-section-head{
  max-width:820px;
  margin-bottom:18px;
}

.ep-section-head h2{
  font-size:clamp(26px,3vw,38px);
  line-height:1.12;
  letter-spacing:-.03em;
  color:#0f172a;
  margin:6px 0 10px;
}

.ep-section-head p{
  color:#64748b;
  font-size:16px;
  line-height:1.65;
}

.ep-method-section{
  border-radius:30px;
  padding:30px;
  background:#fff;
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 16px 38px rgba(15,23,42,.06);
}

.ep-timeline-method{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}

.ep-method-step{
  padding:18px;
  border-radius:22px;
  background:#f8fafc;
  border:1px solid rgba(148,163,184,.18);
}

.ep-method-step span{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:#2563eb;
  color:#fff;
  font-weight:900;
  margin-bottom:12px;
}

.ep-method-step strong{
  display:block;
  color:#0f172a;
  font-size:16px;
  margin-bottom:6px;
}

.ep-method-step p{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.5;
}

.ep-pricing-section{
  border-radius:30px;
  padding:30px;
  background:linear-gradient(135deg,#0f172a,#1e293b);
  color:#fff;
}

.ep-pricing-section .ep-section-head h2{
  color:#fff;
}

.ep-pricing-section .ep-section-head p{
  color:#cbd5e1;
}

.ep-price-grid{
  align-items:stretch;
}

.ep-price-card{
  position:relative;
  border-radius:26px;
  padding:28px;
  background:#fff;
  color:#0f172a;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 18px 42px rgba(15,23,42,.14);
}

.ep-price-featured{
  border:2px solid #93c5fd;
}

.ep-price-badge{
  display:inline-flex;
  padding:8px 11px;
  border-radius:999px;
  background:#dbeafe;
  color:#1d4ed8;
  font-weight:900;
  font-size:13px;
  margin-bottom:14px;
}

.ep-price-badge-soft{
  background:#f1f5f9;
  color:#475569;
}

.ep-price-card h2{
  margin:0 0 10px;
  font-size:26px;
  letter-spacing:-.02em;
}

.ep-price{
  font-size:34px;
  font-weight:950;
  letter-spacing:-.04em;
  margin-bottom:8px;
}

.ep-price span{
  font-size:15px;
  color:#64748b;
  letter-spacing:0;
}

.ep-price-card p{
  color:#64748b;
  line-height:1.6;
}

.ep-price-card ul{
  padding-left:20px;
  margin:18px 0 22px;
  color:#334155;
}

.ep-price-card li{
  margin:8px 0;
}

.ep-btn-block{
  width:100%;
  justify-content:center;
  text-align:center;
}

.ep-public-list{
  display:grid;
  gap:10px;
  margin-top:16px;
}

.ep-public-item{
  display:block;
  padding:14px;
  border-radius:18px;
  background:#f8fafc;
  color:#0f172a;
  text-decoration:none;
  border:1px solid rgba(148,163,184,.18);
}

.ep-public-item:hover{
  background:#eff6ff;
  color:#0f172a;
}

.ep-public-item strong{
  display:block;
  margin-bottom:4px;
}

.ep-public-item span{
  color:#64748b;
  font-size:14px;
  line-height:1.45;
}

.ep-faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
}

.ep-faq-grid details{
  border-radius:22px;
  padding:18px 20px;
  background:#fff;
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.ep-faq-grid summary{
  cursor:pointer;
  font-weight:900;
  color:#0f172a;
}

.ep-faq-grid p{
  margin:12px 0 0;
  color:#64748b;
  line-height:1.6;
}

.ep-final-cta{
  margin-top:34px;
  padding:32px;
  border-radius:30px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 35%),
    linear-gradient(135deg,#2563eb,#7c3aed);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  box-shadow:0 22px 50px rgba(37,99,235,.25);
}

.ep-final-cta h2{
  margin:6px 0 8px;
  font-size:clamp(26px,3vw,40px);
  letter-spacing:-.03em;
}

.ep-final-cta p{
  margin:0;
  color:#e0e7ff;
}

.ep-final-cta .ep-btn-soft{
  background:#fff;
  color:#1d4ed8;
}

.ep-final-cta .ep-btn{
  background:#0f172a;
}

@media(max-width:1050px){
  .ep-sales-hero,
  .ep-timeline-method,
  .ep-faq-grid{
    grid-template-columns:1fr;
  }

  .ep-final-cta{
    flex-direction:column;
    align-items:flex-start;
  }
}

@media(max-width:680px){
  .ep-sales-copy,
  .ep-method-section,
  .ep-pricing-section,
  .ep-final-cta{
    padding:22px;
    border-radius:24px;
  }

  .ep-sales-actions{
    flex-direction:column;
  }

  .ep-sales-actions .ep-btn,
  .ep-sales-actions .ep-btn-soft{
    width:100%;
    justify-content:center;
  }
}

/* 094s — SEO/conversão */
.ep-share-box{
  margin-top:34px;
  padding:26px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid rgba(148,163,184,.18);
  box-shadow:0 16px 38px rgba(15,23,42,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.ep-share-box h2{
  margin:6px 0 6px;
  color:#0f172a;
  letter-spacing:-.03em;
}

.ep-share-box p{
  margin:0;
  color:#64748b;
}

@media(max-width:760px){
  .ep-share-box{
    flex-direction:column;
    align-items:flex-start;
  }
}
