/*
Theme Name: Diweb
Theme URI: https://diweb.com.br
Author: Diweb
Author URI: https://diweb.com.br
Description: Tema oficial Diweb — A tecnologia das grandes empresas. Agora no seu negócio.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: diweb
Tags: dark, technology, business, elementor
*/

/* ── VARIÁVEIS GLOBAIS ──────────────────────────────────────────── */
:root {
  --dw-bg:       #070C14;
  --dw-bg2:      #0D1520;
  --dw-bg3:      #101B2B;
  --dw-blue:     #1E6FFF;
  --dw-blue2:    #0A4FD4;
  --dw-blue3:    #0F3D7A;
  --dw-cyan:     #00D4FF;
  --dw-green:    #00E88F;
  --dw-amber:    #FFB800;
  --dw-red:      #FF4757;
  --dw-text:     #EDF2F7;
  --dw-muted:    #7A8FA6;
  --dw-border:   rgba(255,255,255,0.07);
  --dw-card:     rgba(255,255,255,0.04);
  --dw-card-h:   rgba(255,255,255,0.07);
  --dw-radius:   16px;
  --dw-radius-s: 10px;
  --dw-shadow:   0 4px 40px rgba(0,0,0,0.4);
}

/* ── RESET & BASE ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dw-bg);
  color: var(--dw-text);
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,111,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--dw-blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--dw-cyan); }

/* ── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dw-bg); }
::-webkit-scrollbar-thumb { background: var(--dw-blue2); border-radius: 99px; }

/* ── TIPOGRAFIA ─────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--dw-text);
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p {
  color: var(--dw-muted);
  font-weight: 300;
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.75;
}

strong { color: var(--dw-text); font-weight: 500; }

/* ── CONTAINER ──────────────────────────────────────────────────── */
.container,
.dw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* ── HEADER ─────────────────────────────────────────────────────── */
#masthead,
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(7,12,20,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dw-border);
  padding: 18px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding .3s;
}

.site-branding .site-title,
.dw-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--dw-text) !important;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.site-branding .site-title span,
.dw-logo span { color: var(--dw-blue); }

/* NAV */
.main-navigation ul {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation a {
  color: var(--dw-muted);
  font-size: .95rem;
  font-weight: 400;
  transition: color .2s;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: var(--dw-text);
}

.dw-header-cta {
  background: var(--dw-green);
  color: #070C14 !important;
  padding: 10px 24px;
  border-radius: 99px;
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s;
  white-space: nowrap;
}
.dw-header-cta:hover {
  background: #00ff9d;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,232,143,0.4);
}

/* ── CONTEÚDO PRINCIPAL ─────────────────────────────────────────── */
#content,
.site-content {
  padding-top: 76px;
  position: relative;
  z-index: 1;
}

/* ── SEÇÕES ─────────────────────────────────────────────────────── */
.dw-section {
  padding: 110px 0;
  position: relative;
}

.dw-section--dark  { background: var(--dw-bg2); }
.dw-section--darker { background: var(--dw-bg3); }
.dw-section--blue  { background: var(--dw-blue); }
.dw-section--navy  { background: var(--dw-blue3); }

/* ── SECTION HEADER ─────────────────────────────────────────────── */
.dw-section-header {
  text-align: center;
  margin-bottom: 64px;
}

.dw-section-header--left { text-align: left; }

.dw-tag {
  display: inline-block;
  color: var(--dw-blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.dw-tag--green  { color: var(--dw-green); }
.dw-tag--amber  { color: var(--dw-amber); }

.dw-section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.dw-section-sub {
  color: var(--dw-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* ── BOTÕES ─────────────────────────────────────────────────────── */
.dw-btn,
.elementor-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.dw-btn--primary {
  background: var(--dw-blue);
  color: #fff;
  box-shadow: 0 0 40px rgba(30,111,255,0.25);
}
.dw-btn--primary:hover {
  background: var(--dw-blue2);
  transform: translateY(-2px);
  box-shadow: 0 6px 50px rgba(30,111,255,0.4);
  color: #fff;
}

.dw-btn--green {
  background: var(--dw-green);
  color: #070C14;
  font-weight: 600;
}
.dw-btn--green:hover {
  background: #00ff9d;
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0,232,143,0.3);
  color: #070C14;
}

.dw-btn--ghost {
  background: transparent;
  color: var(--dw-text);
  border: 1px solid var(--dw-border);
}
.dw-btn--ghost:hover {
  border-color: rgba(255,255,255,.25);
  background: var(--dw-card);
  color: var(--dw-text);
}

.dw-btn--white {
  background: #fff;
  color: var(--dw-blue);
  font-weight: 600;
}
.dw-btn--white:hover {
  background: var(--dw-text);
  transform: translateY(-2px);
}

/* ── BADGE / ETIQUETA ───────────────────────────────────────────── */
.dw-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,111,255,0.1);
  border: 1px solid rgba(30,111,255,0.25);
  color: #7EB8FF;
  padding: 6px 16px;
  border-radius: 99px;
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.dw-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--dw-cyan);
  border-radius: 50%;
  animation: dw-pulse 2s infinite;
}

@keyframes dw-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.5); }
}

/* ── CARDS ──────────────────────────────────────────────────────── */
.dw-card {
  background: var(--dw-card);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  padding: 36px 30px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.dw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dw-blue);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}

.dw-card:hover {
  background: var(--dw-card-h);
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: var(--dw-shadow);
}

.dw-card:hover::before { transform: scaleX(1); }

.dw-card--green::before  { background: var(--dw-green); }
.dw-card--amber::before  { background: var(--dw-amber); }
.dw-card--cyan::before   { background: var(--dw-cyan); }

.dw-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(30,111,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
}

.dw-card--green .dw-card__icon  { background: rgba(0,232,143,.1); }
.dw-card--amber .dw-card__icon  { background: rgba(255,184,0,.1); }
.dw-card--cyan  .dw-card__icon  { background: rgba(0,212,255,.1); }

.dw-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dw-text);
  margin-bottom: 10px;
}

.dw-card__text {
  color: var(--dw-muted);
  font-size: .93rem;
  font-weight: 300;
  line-height: 1.65;
}

.dw-card__list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dw-card__list li {
  color: var(--dw-muted);
  font-size: .88rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.dw-card__list li::before {
  content: '✓';
  color: var(--dw-green);
  font-weight: 700;
  font-size: .8rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── GRIDS ──────────────────────────────────────────────────────── */
.dw-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.dw-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.dw-grid-2-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 1024px) {
  .dw-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .dw-grid-2,
  .dw-grid-3,
  .dw-grid-2-1 { grid-template-columns: 1fr; gap: 20px; }
}

/* ── HERO ───────────────────────────────────────────────────────── */
.dw-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.dw-hero__glow {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,111,255,0.13) 0%, transparent 70%);
  top: -200px; right: -100px;
  pointer-events: none;
}

.dw-hero__glow2 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,232,143,0.07) 0%, transparent 70%);
  bottom: -100px; left: -50px;
  pointer-events: none;
}

.dw-hero__content { max-width: 780px; position: relative; z-index: 2; }

.dw-hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 24px;
}

.dw-hero__title .accent  { color: var(--dw-blue); }
.dw-hero__title .accent2 { color: var(--dw-green); }

.dw-hero__sub {
  font-size: 1.2rem;
  color: var(--dw-muted);
  max-width: 580px;
  margin-bottom: 44px;
  font-weight: 300;
  line-height: 1.75;
}

.dw-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dw-hero__stats {
  display: flex;
  gap: 44px;
  margin-top: 60px;
  padding-top: 44px;
  border-top: 1px solid var(--dw-border);
  flex-wrap: wrap;
}

.dw-stat__num {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dw-text);
}

.dw-stat__num span { color: var(--dw-blue); }

.dw-stat__label {
  color: var(--dw-muted);
  font-size: .88rem;
  margin-top: 5px;
}

/* ── FAIXA DE DOR ───────────────────────────────────────────────── */
.dw-pain-strip {
  background: var(--dw-bg2);
  padding: 80px 5%;
  text-align: center;
  border-top: 1px solid var(--dw-border);
  border-bottom: 1px solid var(--dw-border);
}

.dw-pain-strip__quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--dw-text);
  max-width: 820px;
  margin: 0 auto 20px;
  line-height: 1.3;
}

.dw-pain-strip__text {
  font-size: 1.05rem;
  color: var(--dw-muted);
  max-width: 600px;
  margin: 0 auto 20px;
  font-weight: 300;
}

.dw-pain-strip__cta {
  color: var(--dw-blue);
  font-size: 1.1rem;
  font-weight: 600;
}

/* ── CASE CARDS ─────────────────────────────────────────────────── */
.dw-case-card {
  background: var(--dw-bg3);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  overflow: hidden;
  transition: all .3s;
}

.dw-case-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.12);
  box-shadow: var(--dw-shadow);
}

.dw-case-card__header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--dw-border);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.dw-case-card__logo {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.dw-case-card__logo--blue  { background: rgba(30,111,255,.13); }
.dw-case-card__logo--green { background: rgba(0,232,143,.13); }

.dw-case-card__segment {
  display: inline-block;
  background: rgba(30,111,255,.1);
  color: #7EB8FF;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 7px;
}

.dw-case-card__title {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dw-text);
  margin: 0;
}

.dw-case-card__body { padding: 24px 28px 28px; }

.dw-case-card__pain {
  font-style: italic;
  font-size: .92rem;
  color: rgba(122,143,166,.8);
  border-left: 2px solid var(--dw-blue);
  padding-left: 14px;
  margin-bottom: 18px;
  font-weight: 300;
  line-height: 1.6;
}

.dw-case-card__text {
  font-size: .93rem;
  color: var(--dw-muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 18px;
}

.dw-case-card__highlight {
  background: rgba(30,111,255,.08);
  border: 1px solid rgba(30,111,255,.15);
  border-radius: var(--dw-radius-s);
  padding: 14px 18px;
  font-size: .9rem;
  font-style: italic;
  color: #9EC8FF;
  margin-top: 16px;
}

.dw-case-card__highlight--green {
  background: rgba(0,232,143,.07);
  border-color: rgba(0,232,143,.15);
  color: #7DFFBE;
}

/* ── PLANOS ─────────────────────────────────────────────────────── */
.dw-plan {
  background: var(--dw-card);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  padding: 0;
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.dw-plan:hover {
  border-color: rgba(255,255,255,.15);
  transform: translateY(-4px);
  box-shadow: var(--dw-shadow);
}

.dw-plan--featured {
  border-color: var(--dw-blue);
  box-shadow: 0 0 0 1px var(--dw-blue);
  transform: scale(1.03);
}

.dw-plan--featured:hover { transform: scale(1.03) translateY(-4px); }

.dw-plan__header {
  padding: 28px 28px 22px;
  border-bottom: 1px solid var(--dw-border);
}

.dw-plan__badge {
  display: inline-block;
  background: var(--dw-blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 14px;
}

.dw-plan__name {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dw-text);
  margin-bottom: 6px;
}

.dw-plan__tagline {
  color: var(--dw-muted);
  font-size: .88rem;
  font-weight: 300;
}

.dw-plan__price {
  padding: 22px 28px;
  border-bottom: 1px solid var(--dw-border);
}

.dw-plan__amount {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--dw-text);
  line-height: 1;
}

.dw-plan__amount sup { font-size: 1.2rem; vertical-align: super; }
.dw-plan__period { color: var(--dw-muted); font-size: .88rem; }

.dw-plan__features {
  padding: 22px 28px;
  flex: 1;
}

.dw-plan__features ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dw-plan__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: var(--dw-muted);
  font-weight: 300;
}

.dw-plan__features li::before {
  content: '✓';
  color: var(--dw-green);
  font-weight: 700;
  font-size: .82rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.dw-plan__footer {
  padding: 20px 28px 28px;
}

/* ── PILARES ────────────────────────────────────────────────────── */
.dw-pillar {
  background: var(--dw-card);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius-s);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: all .25s;
}

.dw-pillar:hover {
  background: var(--dw-card-h);
  border-color: rgba(255,255,255,.12);
}

.dw-pillar__icon {
  font-size: 1.3rem;
  width: 44px; height: 44px;
  background: rgba(30,111,255,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dw-pillar h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: .98rem;
  margin-bottom: 5px;
}

.dw-pillar p {
  color: var(--dw-muted);
  font-size: .88rem;
  font-weight: 300;
  margin: 0;
}

/* ── OBJEÇÕES ───────────────────────────────────────────────────── */
.dw-objections {
  background: var(--dw-bg2);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius);
  padding: 0;
  overflow: hidden;
}

.dw-objection {
  padding: 28px 32px;
  border-bottom: 1px solid var(--dw-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.dw-objection:last-child { border-bottom: none; }

.dw-objection__q {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dw-muted);
}

.dw-objection__q::before { content: '"'; color: var(--dw-blue); }
.dw-objection__q::after  { content: '"'; color: var(--dw-blue); }

.dw-objection__a {
  color: var(--dw-text);
  font-size: .95rem;
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .dw-objection { grid-template-columns: 1fr; gap: 12px; }
}

/* ── CTA SECTION ─────────────────────────────────────────────────── */
.dw-cta-section {
  background: linear-gradient(135deg, var(--dw-blue3) 0%, var(--dw-blue2) 100%);
  padding: 90px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dw-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.dw-cta-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}

.dw-cta-section p {
  color: rgba(255,255,255,.75);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* ── LOGOS STRIP ─────────────────────────────────────────────────── */
.dw-logos-strip {
  background: var(--dw-bg2);
  padding: 48px 5%;
  border-top: 1px solid var(--dw-border);
  border-bottom: 1px solid var(--dw-border);
  text-align: center;
}

.dw-logos-strip p {
  color: var(--dw-muted);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.dw-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}

.dw-logos-row span {
  color: rgba(122,143,166,.45);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .04em;
  transition: color .2s;
}

.dw-logos-row span:hover { color: var(--dw-muted); }

/* ── FOOTER ──────────────────────────────────────────────────────── */
#colophon,
.site-footer {
  background: #040810;
  border-top: 1px solid var(--dw-border);
  padding: 64px 5% 32px;
}

.dw-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .dw-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

.dw-footer-brand .dw-logo {
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 14px;
}

.dw-footer-brand p {
  font-size: .9rem;
  max-width: 300px;
  font-weight: 300;
  line-height: 1.65;
}

.dw-footer-col h5 {
  font-family: 'Syne', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dw-muted);
  margin-bottom: 16px;
}

.dw-footer-col ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dw-footer-col a {
  color: var(--dw-muted);
  font-size: .92rem;
  transition: color .2s;
}

.dw-footer-col a:hover { color: var(--dw-text); }

.dw-footer-bottom {
  border-top: 1px solid var(--dw-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.dw-footer-bottom p {
  font-size: .85rem;
  margin: 0;
}

/* ── WHATSAPP FLOAT ──────────────────────────────────────────────── */
.dw-whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dw-whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all .3s;
  font-size: 1.5rem;
  text-decoration: none;
}

.dw-whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,.5);
}

.dw-whatsapp-tooltip {
  background: var(--dw-bg2);
  color: var(--dw-text);
  font-size: .82rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  border: 1px solid var(--dw-border);
  opacity: 0;
  transform: translateX(8px);
  transition: all .25s;
  white-space: nowrap;
  pointer-events: none;
}

.dw-whatsapp-float:hover .dw-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── ANIMAÇÕES ───────────────────────────────────────────────────── */
@keyframes dw-fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dw-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.dw-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.dw-animate--delay-1 { transition-delay: .1s; }
.dw-animate--delay-2 { transition-delay: .2s; }
.dw-animate--delay-3 { transition-delay: .3s; }
.dw-animate--delay-4 { transition-delay: .4s; }

/* ── ELEMENTOR OVERRIDES ─────────────────────────────────────────── */
.elementor-section {
  position: relative;
  z-index: 1;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

.elementor-widget-text-editor {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.75;
}

/* Remove padding padrão do Elementor */
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
}

/* ── FORMULÁRIO DE CONTATO ───────────────────────────────────────── */
.dw-contact-form input,
.dw-contact-form select,
.dw-contact-form textarea,
.wpcf7-form input,
.wpcf7-form textarea {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--dw-border);
  border-radius: var(--dw-radius-s);
  padding: 14px 18px;
  color: var(--dw-text);
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  transition: border-color .2s;
  margin-bottom: 14px;
}

.dw-contact-form input:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--dw-blue);
}

.dw-contact-form textarea,
.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.dw-contact-form input::placeholder,
.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: var(--dw-muted);
}

/* ── MOBILE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .dw-hero { padding: 100px 5% 60px; min-height: auto; }
  .dw-hero__stats { gap: 28px; }
  .dw-section { padding: 72px 0; }
  .dw-section-header { margin-bottom: 44px; }
  #masthead { padding: 14px 5%; }
  .main-navigation { display: none; }
  .dw-whatsapp-float { bottom: 20px; right: 20px; }
  .dw-plan--featured { transform: none; }
}
