/* =============================================================
   CLOUD EXPERT SCHOOL — DESIGN SYSTEM
   Cores da marca:
   #0D0D35 deep navy · #0B1870 royal · #0004FF electric blue
   #686666 gray · #F2F2F2 off-white
   ============================================================= */
:root{
  /* Brand */
  --navy-900:#05051c;
  --navy-800:#0d0d35;          /* primary deep navy */
  --navy-700:#0b1870;          /* royal blue */
  --navy-600:#11268f;
  --blue-600:#0028ff;
  --blue-500:#0040ff;           /* electric blue (tempered) */
  --blue-400:#3567ff;
  --blue-300:#6a8eff;
  --blue-glow:rgba(0,64,255,.42);
  --blue-soft:rgba(0,64,255,.12);
  --cyan:#22d3ee;

  /* Neutrals */
  --ink:#0a0a1f;
  --ink-2:#1a1a2e;
  --gray-700:#3f3f50;
  --gray-600:#686666;
  --gray-500:#8a8a96;
  --gray-400:#b6b6c0;
  --gray-300:#d6d6dd;
  --gray-200:#e8e8ee;
  --gray-100:#f2f2f5;
  --bg:#ffffff;
  --bg-soft:#f7f7fb;
  --bg-band:#eef0f7;

  /* Accents (only red used for "urgência" and gold for premium) */
  --success:#10b981;
  --warn:#f59e0b;
  --danger:#ef4444;
  --gold:#d4a23a;

  /* Type */
  --f-display:'Sora','Plus Jakarta Sans',system-ui,sans-serif;
  --f-ui:'Inter',system-ui,-apple-system,'Segoe UI',sans-serif;
  --f-mono:'JetBrains Mono',ui-monospace,Menlo,Consolas,monospace;

  /* Radius */
  --r-xs:6px;--r-sm:10px;--r-md:14px;--r-lg:20px;--r-xl:28px;--r-2xl:36px;--r-pill:999px;

  /* Shadows */
  --sh-1:0 1px 2px rgba(13,13,53,.06),0 1px 3px rgba(13,13,53,.05);
  --sh-2:0 8px 24px rgba(13,13,53,.08),0 2px 6px rgba(13,13,53,.05);
  --sh-3:0 20px 50px rgba(13,13,53,.14),0 8px 16px rgba(13,13,53,.06);
  --sh-blue:0 18px 40px -10px var(--blue-glow);
  --sh-deep:0 30px 80px -20px rgba(5,5,28,.6);

  /* Motion */
  --ease:cubic-bezier(.2,.7,.2,1);
  --ease-snap:cubic-bezier(.34,1.5,.64,1);
  --dur:280ms;

  --container:1240px;
  --header-h:74px;
}

*,*::before,*::after{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth;scroll-padding-top:90px}
body{
  font-family:var(--f-ui);
  color:var(--ink);
  background:var(--bg);
  font-size:16px;line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
  overflow-x:hidden;
}
img,svg{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
button{font:inherit;color:inherit;background:transparent;border:0;cursor:pointer}
::selection{background:var(--blue-500);color:#fff}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1,h2,h3,h4,h5{font-family:var(--f-display);color:var(--ink);margin:0;letter-spacing:-.02em;line-height:1.1;font-weight:800}
.h-hero{font-size:clamp(40px,6.4vw,80px);font-weight:800;line-height:1.02;letter-spacing:-.035em}
.h-section{font-size:clamp(30px,4vw,52px);font-weight:800;line-height:1.08;letter-spacing:-.03em}
.h-sub{font-size:clamp(22px,2.4vw,30px);font-weight:700;line-height:1.2}
.h-card{font-size:20px;font-weight:700;line-height:1.25}
.lead{font-size:18px;color:var(--gray-700);line-height:1.65;font-weight:400}
.lead-lg{font-size:20px;color:var(--gray-700);line-height:1.6}
.muted{color:var(--gray-700)}
.on-dark{color:#fff}
.on-dark h1,.on-dark h2,.on-dark h3,.on-dark h4{color:#fff}
.on-dark .lead{color:rgba(255,255,255,.92);font-weight:400}
.on-dark .muted{color:rgba(255,255,255,.7)}
.on-dark p{color:rgba(255,255,255,.86)}

.eyebrow{
  display:inline-flex;align-items:center;gap:10px;
  font-family:var(--f-mono);font-size:12px;font-weight:600;
  letter-spacing:.22em;text-transform:uppercase;color:var(--blue-500);
}
.eyebrow::before{content:"";width:24px;height:2px;background:currentColor;border-radius:2px}
.on-dark .eyebrow{color:#6a8eff}

.gradient-text{
  background:linear-gradient(135deg,#3567ff 0%,#0040ff 45%,#0b1870 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.gradient-text-light{
  background:linear-gradient(135deg,#fff 0%,#a9c0ff 50%,#3567ff 100%);
  -webkit-background-clip:text;background-clip:text;color:transparent;
}

/* =============================================================
   LAYOUT
   ============================================================= */
.container{max-width:var(--container);margin:0 auto;padding:0 28px}
section{padding:96px 0;position:relative}
@media (max-width:768px){section{padding:64px 0}}

.section-head{display:flex;align-items:flex-end;justify-content:space-between;gap:40px;margin-bottom:56px;flex-wrap:wrap}
.section-head .left{max-width:720px}
.section-head h2{margin-top:14px}
.section-head .right{max-width:380px}

.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:30px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media (max-width:1080px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:680px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

.split{display:grid;grid-template-columns:1fr 1.05fr;gap:80px;align-items:center}
@media (max-width:1080px){.split{grid-template-columns:1fr;gap:48px}}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 28px;border-radius:var(--r-pill);
  font-family:var(--f-ui);font-weight:600;font-size:15px;
  white-space:nowrap;
  transition:transform .25s var(--ease),background .25s,color .25s,box-shadow .25s,border-color .25s;
}
.btn .arrow{transition:transform .3s var(--ease);display:inline-block}
.btn:hover .arrow{transform:translateX(4px)}
.btn-primary{
  background:linear-gradient(135deg,#0040ff,#0b1870);
  color:#fff;box-shadow:var(--sh-blue);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 22px 50px -10px var(--blue-glow)}
.btn-ghost{background:transparent;color:#fff;border:1.5px solid rgba(255,255,255,.3)}
.btn-ghost:hover{background:rgba(255,255,255,.08);border-color:rgba(255,255,255,.6)}
.btn-outline{background:transparent;color:var(--ink);border:1.5px solid var(--ink)}
.btn-outline:hover{background:var(--ink);color:#fff}
.btn-soft{background:var(--blue-soft);color:var(--blue-500);border:1px solid transparent}
.btn-soft:hover{background:var(--blue-500);color:#fff}
.btn-lg{padding:18px 34px;font-size:16px}
.btn-block{display:flex;justify-content:center;width:100%}

.link-arrow{display:inline-flex;align-items:center;gap:8px;color:var(--blue-500);font-weight:700;font-size:14px;letter-spacing:.01em}
.link-arrow .arrow{transition:transform .3s var(--ease)}
.link-arrow:hover .arrow{transform:translateX(4px)}
.on-dark .link-arrow{color:#6a8eff}

/* =============================================================
   HEADER + NAV
   ============================================================= */
.header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:14px 0;
  transition:background .3s,backdrop-filter .3s,padding .3s,box-shadow .3s;
}
.header.scrolled{
  background:rgba(13,13,53,.88);
  backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  padding:10px 0;
  box-shadow:0 1px 0 rgba(255,255,255,.06);
}
.nav{display:flex;align-items:center;justify-content:space-between;gap:24px}
.brand{display:flex;align-items:center;gap:10px}
.brand-logo{height:42px;width:auto}
.brand-logo.dark-only{display:none}
.header .brand-logo.light-only{display:block}
@media (max-width:560px){.brand-logo{height:36px}}

.nav-links{display:flex;align-items:center;gap:6px;position:relative}
.nav-links > li{position:relative;list-style:none}
.nav-link{
  display:inline-flex;align-items:center;gap:6px;
  padding:10px 14px;font-size:14px;font-weight:500;
  color:rgba(255,255,255,.85);border-radius:8px;
  transition:color .2s,background .2s;
}
.nav-link:hover{color:#fff;background:rgba(255,255,255,.06)}
.nav-link.active{color:#fff}
.nav-link .chev{transition:transform .25s var(--ease);font-size:10px;opacity:.6}
.nav-links > li:hover .chev,.nav-links > li:focus-within .chev{transform:rotate(180deg)}

/* Dropdown */
.dropdown{
  position:absolute;top:100%;left:0;min-width:280px;
  background:#fff;border-radius:var(--r-lg);padding:10px;
  box-shadow:var(--sh-3);border:1px solid var(--gray-200);
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .2s,transform .2s,visibility .2s;
  margin-top:6px;
}
.nav-links > li:hover .dropdown,.nav-links > li:focus-within .dropdown{
  opacity:1;visibility:visible;transform:translateY(0);
}
.dropdown a{
  display:flex;align-items:center;gap:12px;padding:11px 14px;border-radius:10px;
  color:var(--ink);font-size:14px;font-weight:500;transition:background .2s;
}
.dropdown a:hover{background:var(--bg-band)}
.dropdown a .ic{
  width:28px;height:28px;border-radius:8px;
  background:linear-gradient(135deg,var(--blue-500),var(--navy-700));
  color:#fff;display:grid;place-items:center;flex:0 0 auto;
}
.dropdown a strong{display:block;color:var(--ink);font-weight:700;font-size:14px}
.dropdown a small{display:block;font-size:11px;color:var(--gray-500);font-weight:500}

.nav-cta{display:flex;align-items:center;gap:10px}
.menu-toggle{display:none;width:42px;height:42px;border-radius:50%;background:rgba(255,255,255,.1);color:#fff;align-items:center;justify-content:center}
@media (max-width:1080px){
  .nav-links{display:none}
  .menu-toggle{display:flex}
  .nav-cta .btn-ghost{display:none}
}

/* Light header variant (on pages without dark hero) */
.header.light{background:rgba(255,255,255,.92);backdrop-filter:saturate(180%) blur(14px)}
.header.light .nav-link{color:var(--ink)}
.header.light .nav-link:hover{background:var(--bg-band)}
.header.light .brand-logo.light-only{display:none}
.header.light .brand-logo.dark-only{display:block}
.header.light .menu-toggle{background:var(--gray-100);color:var(--ink)}
.header.light .btn-ghost{color:var(--ink);border-color:var(--gray-300)}
.header.light .btn-ghost:hover{background:var(--gray-100)}

/* Drawer */
.drawer{position:fixed;inset:0;z-index:200;display:none}
.drawer.open{display:block}
.drawer-shade{position:absolute;inset:0;background:rgba(5,5,28,.6);backdrop-filter:blur(4px)}
.drawer-panel{
  position:absolute;top:0;right:0;bottom:0;width:min(380px,92vw);
  background:#fff;padding:24px;display:flex;flex-direction:column;gap:6px;
  box-shadow:-20px 0 60px rgba(5,5,28,.3);
  animation:slideIn .35s var(--ease);
  overflow-y:auto;
}
@keyframes slideIn{from{transform:translateX(100%)}to{transform:translateX(0)}}
.drawer-head{display:flex;justify-content:space-between;align-items:center;padding:8px 0 18px;border-bottom:1px solid var(--gray-200);margin-bottom:12px}
.drawer-close{width:42px;height:42px;border-radius:50%;background:var(--gray-100);color:var(--ink);display:grid;place-items:center}
.drawer-section{padding:14px 0;border-bottom:1px solid var(--gray-200)}
.drawer-section:last-of-type{border:0}
.drawer-section h6{font-family:var(--f-mono);font-size:11px;letter-spacing:.16em;text-transform:uppercase;color:var(--gray-500);font-weight:600;margin-bottom:10px}
.drawer-section a{display:flex;align-items:center;gap:10px;padding:10px 0;color:var(--ink);font-weight:600;font-size:15px}
.drawer-section a:hover{color:var(--blue-500)}
.drawer .btn{margin-top:18px;justify-content:center}

/* =============================================================
   FOOTER
   ============================================================= */
.footer{background:var(--navy-900);color:rgba(255,255,255,.72);padding:80px 0 28px;position:relative;overflow:hidden}
.footer::before{
  content:"";position:absolute;top:0;left:0;right:0;height:1px;
  background:linear-gradient(90deg,transparent,var(--blue-500),transparent);
}
.foot-grid{display:grid;grid-template-columns:1.4fr repeat(4,1fr);gap:46px;margin-bottom:50px}
@media (max-width:1080px){.foot-grid{grid-template-columns:1fr 1fr;gap:30px}}
@media (max-width:520px){.foot-grid{grid-template-columns:1fr}}
.foot-brand{max-width:380px}
.foot-brand p{font-size:14px;color:rgba(255,255,255,.6);line-height:1.65;margin-top:18px}
.foot-news{margin-top:22px;display:flex;border:1px solid rgba(255,255,255,.15);border-radius:var(--r-pill);overflow:hidden;background:rgba(255,255,255,.04);max-width:380px}
.foot-news input{flex:1;background:transparent;border:0;color:#fff;padding:13px 20px;font-family:var(--f-ui);font-size:14px;outline:none}
.foot-news input::placeholder{color:rgba(255,255,255,.4)}
.foot-news button{padding:0 22px;background:var(--blue-500);color:#fff;font-weight:600;font-size:13px;display:flex;align-items:center;gap:6px}
.foot-news button:hover{background:var(--blue-400)}
.foot-col h5{font-family:var(--f-mono);font-size:11px;color:#fff;text-transform:uppercase;letter-spacing:.18em;font-weight:600;margin:0 0 18px}
.foot-col a{display:block;font-size:14px;padding:6px 0;color:rgba(255,255,255,.6);transition:color .2s,transform .2s}
.foot-col a:hover{color:#fff;transform:translateX(2px)}
.foot-divider{height:1px;background:rgba(255,255,255,.08);margin:28px 0 18px}
.foot-bottom{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;font-size:12px;color:rgba(255,255,255,.4);font-family:var(--f-mono);letter-spacing:.06em}
.foot-social{display:flex;gap:10px}
.foot-social a{width:36px;height:36px;border-radius:50%;border:1px solid rgba(255,255,255,.15);display:grid;place-items:center;color:rgba(255,255,255,.7);transition:.3s}
.foot-social a:hover{background:var(--blue-500);border-color:var(--blue-500);color:#fff;transform:translateY(-2px)}

/* =============================================================
   CONTACT MODAL (POP-UP)
   ============================================================= */
.cmodal{
  position:fixed;inset:0;z-index:300;display:none;
  align-items:center;justify-content:center;padding:20px;
}
.cmodal.open{display:flex}
.cmodal-shade{position:absolute;inset:0;background:rgba(5,5,28,.7);backdrop-filter:blur(6px);animation:fadeIn .25s var(--ease)}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.cmodal-panel{
  position:relative;width:100%;max-width:520px;
  background:#fff;border-radius:var(--r-xl);
  box-shadow:var(--sh-3),0 0 0 1px var(--gray-200);
  padding:40px 36px 36px;
  animation:popIn .35s var(--ease-snap);
  max-height:92vh;overflow-y:auto;
}
@keyframes popIn{from{opacity:0;transform:translateY(20px) scale(.96)}to{opacity:1;transform:none}}
.cmodal-close{position:absolute;top:16px;right:16px;width:38px;height:38px;border-radius:50%;background:var(--gray-100);color:var(--ink);display:grid;place-items:center;transition:.2s}
.cmodal-close:hover{background:var(--ink);color:#fff;transform:rotate(90deg)}
.cmodal-head{margin-bottom:24px}
.cmodal-head .badge{display:inline-flex;align-items:center;gap:8px;padding:5px 12px;border-radius:var(--r-pill);background:var(--blue-soft);color:var(--blue-500);font-family:var(--f-mono);font-size:11px;font-weight:600;letter-spacing:.12em;text-transform:uppercase;margin-bottom:14px}
.cmodal-head h3{font-size:24px;font-weight:800;letter-spacing:-.02em;margin:0 0 8px}
.cmodal-head p{font-size:14px;color:var(--gray-600);margin:0;line-height:1.5}
.cmodal-form{display:flex;flex-direction:column;gap:14px}
.field{display:flex;flex-direction:column;gap:6px}
.field label{font-size:12px;font-weight:600;color:var(--ink-2);letter-spacing:.02em}
.field label .req{color:var(--blue-500)}
.field input,.field select,.field textarea{
  width:100%;padding:13px 14px;border:1.5px solid var(--gray-300);border-radius:var(--r-md);
  background:#fff;color:var(--ink);font-family:var(--f-ui);font-size:14px;
  transition:border-color .2s,box-shadow .2s;
}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--blue-500);box-shadow:0 0 0 4px var(--blue-soft)}
.field textarea{resize:vertical;min-height:90px;font-family:var(--f-ui)}
.field select{appearance:none;-webkit-appearance:none;background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23686666' d='M6 8 0 0h12z'/></svg>");background-repeat:no-repeat;background-position:right 14px center;padding-right:36px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px}
@media (max-width:480px){.field-row{grid-template-columns:1fr}}
.cmodal-footer{display:flex;align-items:center;gap:14px;margin-top:8px;flex-wrap:wrap}
.cmodal-footer .privacy{font-size:11px;color:var(--gray-600);line-height:1.45;flex:1;min-width:200px}
.cmodal-submit{flex:0 0 auto}
.cmodal-success{display:none;text-align:center;padding:20px 0}
.cmodal-success.show{display:block;animation:popIn .4s var(--ease-snap)}
.cmodal-success .check{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,#10b981,#059669);margin:0 auto 18px;display:grid;place-items:center;color:#fff;box-shadow:0 14px 30px -10px rgba(16,185,129,.5)}
.cmodal-success h3{font-size:22px;font-weight:800;margin-bottom:8px}
.cmodal-success p{color:var(--gray-700);font-size:15px;margin-bottom:8px}
.cmodal-success .protocol{display:inline-block;margin-top:14px;font-family:var(--f-mono);font-size:12px;background:var(--gray-100);padding:8px 14px;border-radius:var(--r-sm);color:var(--gray-700);letter-spacing:.06em}

/* =============================================================
   REVEAL ON SCROLL
   ============================================================= */
.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal.d1{transition-delay:.08s}
.reveal.d2{transition-delay:.16s}
.reveal.d3{transition-delay:.24s}
.reveal.d4{transition-delay:.32s}
.reveal.d5{transition-delay:.40s}

/* =============================================================
   COMMON COMPONENTS — Cards, Pills, Stat blocks, etc.
   ============================================================= */
.card{
  background:#fff;border-radius:var(--r-lg);
  padding:30px;border:1px solid var(--gray-200);
  transition:.3s var(--ease);
}
.card:hover{transform:translateY(-4px);box-shadow:var(--sh-2);border-color:var(--gray-300)}
.card-dark{background:linear-gradient(155deg,var(--navy-800),var(--navy-900));color:#fff;border:1px solid rgba(255,255,255,.08)}
.card-blue{background:linear-gradient(135deg,var(--blue-500),var(--navy-700));color:#fff}

.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;border-radius:var(--r-pill);
  font-family:var(--f-mono);font-size:11px;font-weight:600;
  letter-spacing:.12em;text-transform:uppercase;
}
.pill-blue{background:var(--blue-soft);color:var(--blue-500)}
.pill-on-dark{background:rgba(255,255,255,.1);color:#a9c0ff;border:1px solid rgba(168,192,255,.25)}
.pill-success{background:rgba(16,185,129,.12);color:#10b981}
.pill-warn{background:rgba(245,158,11,.12);color:#b88500}

.icon-tile{
  width:56px;height:56px;border-radius:14px;
  background:linear-gradient(135deg,var(--blue-500),var(--navy-700));
  color:#fff;display:grid;place-items:center;flex:0 0 auto;
  box-shadow:0 8px 20px -8px var(--blue-glow);
}
.icon-tile.light{background:var(--blue-soft);color:var(--blue-500);box-shadow:none}
.icon-tile.dark{background:linear-gradient(135deg,var(--navy-800),var(--navy-700));color:#fff;box-shadow:0 8px 20px -8px rgba(13,13,53,.4)}

/* Stats */
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
@media (max-width:980px){.stats-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:520px){.stats-grid{grid-template-columns:1fr}}
.stat{border-left:2px solid var(--gray-200);padding-left:22px;transition:border-color .3s}
.stat:hover{border-color:var(--blue-500)}
.stat .n{font-family:var(--f-display);font-size:clamp(40px,4.6vw,60px);font-weight:800;color:var(--ink);line-height:1;letter-spacing:-.03em;font-feature-settings:"tnum"}
.stat .n small{font-size:.5em;color:var(--blue-500);margin-left:4px;font-weight:700}
.stat .l{font-size:14px;color:var(--gray-600);margin-top:10px;font-weight:500}
.on-dark .stat{border-left-color:rgba(255,255,255,.18)}
.on-dark .stat .n{color:#fff}
.on-dark .stat .n small{color:#6a8eff}
.on-dark .stat .l{color:rgba(255,255,255,.65)}

/* Marquee */
.marquee-wrap{overflow:hidden;mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);-webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent)}
.marquee-track{display:flex;gap:60px;width:max-content;animation:marquee 32s linear infinite;align-items:center}
.marquee-track:hover{animation-play-state:paused}
@keyframes marquee{from{transform:translateX(0)}to{transform:translateX(-50%)}}

/* Hero shared backgrounds */
.bg-hero-dark{
  position:relative;
  background:
    radial-gradient(1100px 600px at 80% -10%,rgba(0,64,255,.32),transparent 60%),
    radial-gradient(900px 500px at 10% 110%,rgba(11,24,112,.45),transparent 60%),
    linear-gradient(180deg,#04041a 0%,#0d0d35 55%,#0b1870 130%);
  color:#fff;overflow:hidden;
}
.bg-grid{
  position:absolute;inset:0;pointer-events:none;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:60px 60px;
  mask-image:radial-gradient(ellipse at 50% 30%,#000 30%,transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 30%,#000 30%,transparent 75%);
  animation:gridDrift 30s linear infinite;
}
@keyframes gridDrift{from{background-position:0 0,0 0}to{background-position:60px 60px,60px 60px}}
.bg-orb{position:absolute;border-radius:50%;filter:blur(60px);opacity:.6;pointer-events:none}
.bg-orb.a{width:480px;height:480px;background:#0040ff;top:-160px;right:-120px;animation:float 12s ease-in-out infinite}
.bg-orb.b{width:380px;height:380px;background:#0b1870;bottom:-150px;left:-120px;animation:float 14s ease-in-out infinite reverse}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(40px)}}

/* Sub-page hero (light) */
.subpage-hero{
  position:relative;padding:170px 0 80px;overflow:hidden;
  background:
    radial-gradient(900px 400px at 80% -10%,rgba(0,64,255,.30),transparent 60%),
    radial-gradient(700px 400px at 10% 110%,rgba(11,24,112,.40),transparent 60%),
    linear-gradient(180deg,#04041a 0%,#0d0d35 100%);
  color:#fff;
}
.subpage-hero h1{color:#fff;margin-bottom:18px}
.subpage-hero .crumbs{display:flex;align-items:center;gap:10px;font-family:var(--f-mono);font-size:12px;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.16em;margin-bottom:18px}
.subpage-hero .crumbs a{color:rgba(255,255,255,.5);transition:.2s}
.subpage-hero .crumbs a:hover{color:#fff}
.subpage-hero .crumbs span{color:rgba(255,255,255,.3)}

/* Final CTA band */
.cta-band{
  position:relative;overflow:hidden;
  background:
    radial-gradient(700px 400px at 80% 50%,rgba(0,64,255,.35),transparent 60%),
    linear-gradient(135deg,#0d0d35,#04041a);
  color:#fff;
}
.cta-band::before{
  content:"";position:absolute;inset:0;
  background-image:linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:80px 80px;
  mask-image:radial-gradient(ellipse at 50% 50%,#000 30%,transparent 80%);
  -webkit-mask-image:radial-gradient(ellipse at 50% 50%,#000 30%,transparent 80%);
}
.cta-inner{position:relative;text-align:center;max-width:760px;margin:0 auto}
.cta-inner h2{color:#fff;font-size:clamp(32px,5vw,52px);font-weight:800;letter-spacing:-.03em;line-height:1.05}
.cta-inner p{color:rgba(255,255,255,.78);margin:18px auto 32px;font-size:18px;max-width:540px}
.cta-row{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* Floating contact pill (bottom-right) */
.float-contact{
  position:fixed;bottom:24px;right:24px;z-index:90;
  background:linear-gradient(135deg,#0040ff,#0b1870);color:#fff;
  border-radius:var(--r-pill);padding:14px 22px;
  font-weight:700;font-size:14px;
  box-shadow:0 16px 40px -10px var(--blue-glow);
  display:inline-flex;align-items:center;gap:8px;
  transition:.3s;
}
.float-contact:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 22px 50px -12px var(--blue-glow)}
.float-contact .pulse{width:8px;height:8px;border-radius:50%;background:#5ed18a;box-shadow:0 0 0 0 rgba(94,209,138,.7);animation:pulseDot 1.8s infinite}
@keyframes pulseDot{0%{box-shadow:0 0 0 0 rgba(94,209,138,.7)}70%{box-shadow:0 0 0 12px rgba(94,209,138,0)}100%{box-shadow:0 0 0 0 rgba(94,209,138,0)}}
@media (max-width:560px){.float-contact{padding:12px 16px;font-size:12px;bottom:18px;right:18px}}


/* =============================================================
   CLOUD EXPERT SCHOOL — Header/Footer v2 overrides
   Upload as replacement for /wp-content/uploads/assets/css/main.css
   ============================================================= */
:root{
  --ces-header-h:72px;
}
body.admin-bar .header{top:32px}
@media (max-width:782px){body.admin-bar .header{top:46px}}

.header.chrome-v2{
  padding:8px 0;
  background:rgba(5,10,34,.78);
  backdrop-filter:saturate(180%) blur(16px);
  -webkit-backdrop-filter:saturate(180%) blur(16px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header.chrome-v2.scrolled{
  padding:6px 0;
  background:rgba(5,10,34,.92);
  box-shadow:0 14px 40px rgba(0,0,0,.16);
}
.chrome-v2-nav{
  min-height:58px;
  gap:18px;
}
.chrome-v2-brand{min-width:0;flex:0 0 auto}
.chrome-v2-logo{
  height:38px !important;
  width:auto !important;
  max-width:226px;
  object-fit:contain;
  display:block !important;
}
.header.chrome-v2.scrolled .chrome-v2-logo{height:35px !important}
.chrome-v2-links{
  gap:1px;
  flex:1 1 auto;
  justify-content:center;
  min-width:0;
}
.chrome-v2-links .nav-link{
  padding:8px 9px;
  font-size:13px;
  font-weight:700;
  letter-spacing:-.025em;
  border-radius:999px;
  color:rgba(255,255,255,.82);
}
.chrome-v2-links .nav-link:hover,
.chrome-v2-links .nav-link.active{
  color:#fff;
  background:rgba(255,255,255,.09);
}
.chrome-v2-actions{gap:10px;flex:0 0 auto}
.chrome-v2-student{
  padding:11px 18px;
  font-size:13px;
  font-weight:800;
  letter-spacing:-.01em;
  box-shadow:0 14px 30px -16px var(--blue-glow);
}
.header.chrome-v2.light{
  background:rgba(255,255,255,.94);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.header.chrome-v2.light .chrome-v2-links .nav-link{color:#172033}
.header.chrome-v2.light .chrome-v2-links .nav-link:hover,
.header.chrome-v2.light .chrome-v2-links .nav-link.active{background:#edf3ff;color:#003fe8}

.drawer-logo{height:38px;width:auto;max-width:220px;object-fit:contain}
.drawer.chrome-v2-drawer .drawer-panel{padding:22px;background:#fff}
.drawer.chrome-v2-drawer .drawer-section a{font-size:15px;font-weight:750}

.footer.chrome-v2-footer{
  background:radial-gradient(circle at 10% 0%,rgba(0,64,255,.18),transparent 34%),linear-gradient(180deg,#05071f 0%,#080b2a 100%);
  padding:64px 0 26px;
}
.chrome-v2-foot-grid{
  grid-template-columns:minmax(260px,1.35fr) 1fr .72fr .9fr .82fr;
  gap:34px;
  margin-bottom:36px;
}
.chrome-v2-foot-brand{max-width:420px}
.foot-logo-img{
  width:min(260px,78vw);
  height:auto;
  max-height:70px;
  object-fit:contain;
  display:block;
}
.chrome-v2-foot-brand p{
  max-width:380px;
  font-size:14px;
  line-height:1.65;
  margin-top:18px;
  color:rgba(255,255,255,.68);
}
.chrome-v2-social{margin-top:22px}
.chrome-v2-footer .foot-col h5{
  margin-bottom:14px;
  color:#fff;
  opacity:.94;
}
.chrome-v2-footer .foot-col a{
  padding:7px 0;
  font-size:13.5px;
  line-height:1.35;
  color:rgba(255,255,255,.65);
}
.chrome-v2-footer .foot-col a:hover{color:#fff}
.chrome-v2-foot-bottom{
  align-items:flex-start;
  font-family:var(--f-ui);
  letter-spacing:0;
  color:rgba(255,255,255,.48);
}
.foot-legal{
  max-width:390px;
  line-height:1.7;
  font-size:12.5px;
  color:rgba(255,255,255,.54);
}
.foot-legal strong{color:rgba(255,255,255,.82);font-weight:800}
.foot-policy-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px 16px;
  align-items:center;
}
.foot-policy-links a{
  font-size:12.5px;
  color:rgba(255,255,255,.54);
}
.foot-policy-links a:hover{color:#fff}

@media (max-width:1240px){
  .chrome-v2-links .nav-link{font-size:12.5px;padding:8px 7px}
  .chrome-v2-logo{height:34px !important;max-width:196px}
  .chrome-v2-student{padding:10px 15px;font-size:12.5px}
}
@media (max-width:1120px){
  .chrome-v2-links{display:none}
  .menu-toggle{display:flex}
  .chrome-v2-actions .chrome-v2-student{display:inline-flex}
  .chrome-v2-foot-grid{grid-template-columns:1.2fr 1fr 1fr;gap:28px}
}
@media (max-width:700px){
  .header.chrome-v2{padding:7px 0}
  .chrome-v2-nav{min-height:54px;gap:12px}
  .chrome-v2-logo{height:32px !important;max-width:190px}
  .chrome-v2-actions .chrome-v2-student{display:none}
  .menu-toggle{width:40px;height:40px}
  .footer.chrome-v2-footer{padding:48px 0 22px}
  .chrome-v2-foot-grid{grid-template-columns:1fr;gap:26px;margin-bottom:26px}
  .chrome-v2-foot-bottom{gap:16px}
  .foot-policy-links{flex-direction:column;align-items:flex-start;gap:8px}
}
@media (max-width:380px){
  .chrome-v2-logo{height:29px !important;max-width:165px}
}

/* =============================================================
   CLOUD EXPERT SCHOOL — Mobile drawer v3 premium refinement
   ============================================================= */
.header.chrome-v3{
  padding:7px 0;
}
.header.chrome-v3.scrolled{
  padding:5px 0;
}
.header.chrome-v3 .chrome-v2-nav{
  min-height:54px;
}
.header.chrome-v3 .chrome-v2-logo{
  height:34px !important;
  max-width:210px;
}
.header.chrome-v3.scrolled .chrome-v2-logo{
  height:32px !important;
}

.drawer.chrome-v3-drawer{
  z-index:9999;
}
.drawer.chrome-v3-drawer .drawer-shade{
  background:rgba(3,5,18,.72);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}
.drawer.chrome-v3-drawer .drawer-panel{
  top:12px;
  right:12px;
  bottom:12px;
  width:min(430px,calc(100vw - 24px));
  padding:0;
  gap:0;
  border-radius:28px;
  background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
  border:1px solid rgba(226,232,240,.95);
  box-shadow:-24px 0 80px rgba(2,6,23,.32),0 18px 60px rgba(15,23,42,.18);
  overflow:hidden;
}
.drawer.chrome-v3-drawer .chrome-v3-drawer-head{
  padding:22px 22px 18px;
  margin:0;
  border-bottom:1px solid #e8edf6;
  background:linear-gradient(180deg,#fff 0%,#fbfdff 100%);
}
.drawer.chrome-v3-drawer .drawer-brand{
  display:flex;
  align-items:center;
  min-width:0;
}
.drawer.chrome-v3-drawer .drawer-logo{
  height:42px !important;
  width:auto !important;
  max-width:230px;
  object-fit:contain;
}
.drawer.chrome-v3-drawer .drawer-close{
  width:42px;
  height:42px;
  border-radius:999px;
  background:#f1f5f9;
  color:#0f172a;
  font-size:18px;
  transition:transform .2s ease,background .2s ease;
}
.drawer.chrome-v3-drawer .drawer-close:hover{
  transform:rotate(90deg);
  background:#e8eef8;
}
.drawer-intro{
  padding:18px 22px 12px;
}
.drawer-intro span{
  display:block;
  color:#0057ff;
  font-family:var(--f-mono);
  font-size:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.18em;
  margin-bottom:6px;
}
.drawer-intro strong{
  display:block;
  color:#0f172a;
  font-size:18px;
  line-height:1.18;
  letter-spacing:-.035em;
  font-weight:900;
}
.drawer.chrome-v3-drawer .chrome-v3-drawer-section{
  padding:8px 14px 12px;
  border:0;
  display:grid;
  gap:8px;
}
.drawer-nav-card{
  display:grid !important;
  grid-template-columns:42px minmax(0,1fr) 18px;
  gap:12px !important;
  align-items:center;
  min-height:66px;
  padding:11px 12px !important;
  border-radius:18px;
  background:#fff;
  border:1px solid #e5ebf5;
  color:#0f172a !important;
  box-shadow:0 10px 28px -22px rgba(15,23,42,.55);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.drawer-nav-card:hover,
.drawer-nav-card.active{
  transform:translateY(-1px);
  border-color:rgba(0,87,255,.38);
  background:linear-gradient(180deg,#fff 0%,#f3f7ff 100%);
  box-shadow:0 18px 34px -26px rgba(0,87,255,.55);
}
.drawer-nav-icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,#edf4ff,#e7eeff);
  color:#0040ff;
  font-size:12px;
  font-weight:900;
  letter-spacing:-.04em;
}
.drawer-nav-card.active .drawer-nav-icon{
  background:linear-gradient(135deg,#0040ff,#0b1870);
  color:#fff;
}
.drawer-nav-copy{
  min-width:0;
  display:block;
}
.drawer-nav-copy strong{
  display:block;
  color:#0f172a;
  font-size:15.5px;
  line-height:1.05;
  letter-spacing:-.025em;
  font-weight:900;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.drawer-nav-copy small{
  display:block;
  color:#64748b;
  font-size:12px;
  line-height:1.25;
  margin-top:4px;
  font-weight:650;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.drawer-nav-arrow{
  color:#94a3b8;
  font-size:24px;
  line-height:1;
  font-weight:300;
}
.drawer-actions{
  padding:12px 22px 0;
  margin-top:auto;
}
.drawer-actions .btn{
  margin:0;
  min-height:54px;
  font-size:15px;
  border-radius:999px;
  box-shadow:0 22px 44px -22px rgba(0,64,255,.75);
}
.drawer-secondary{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:46px;
  margin-top:10px;
  border-radius:999px;
  border:1px solid #dbe3ef;
  color:#172033;
  font-weight:850;
  font-size:14px;
  background:#fff;
}
.drawer-secondary:hover{
  border-color:#b9c7dc;
  background:#f8fafc;
}
.drawer-footnote{
  padding:14px 22px 20px;
  color:#64748b;
  font-size:11.5px;
  line-height:1.4;
  text-align:center;
}

@media (max-width:700px){
  .header.chrome-v3 .chrome-v2-nav{min-height:52px}
  .header.chrome-v3 .chrome-v2-logo{height:30px !important;max-width:180px}
  .drawer.chrome-v3-drawer .drawer-panel{
    top:10px;
    right:10px;
    bottom:10px;
    width:calc(100vw - 20px);
    border-radius:24px;
  }
  .drawer.chrome-v3-drawer .chrome-v3-drawer-head{padding:18px 18px 14px}
  .drawer.chrome-v3-drawer .drawer-logo{height:36px !important;max-width:200px}
  .drawer-intro{padding:15px 18px 9px}
  .drawer-intro strong{font-size:16px}
  .drawer.chrome-v3-drawer .chrome-v3-drawer-section{padding:7px 12px 8px;gap:7px}
  .drawer-nav-card{
    min-height:58px;
    grid-template-columns:38px minmax(0,1fr) 16px;
    padding:9px 10px !important;
    border-radius:16px;
  }
  .drawer-nav-icon{width:38px;height:38px;border-radius:13px;font-size:11px}
  .drawer-nav-copy strong{font-size:14.5px}
  .drawer-nav-copy small{font-size:11.5px;margin-top:3px}
  .drawer-actions{padding:9px 18px 0}
  .drawer-actions .btn{min-height:50px;font-size:14px}
  .drawer-secondary{min-height:43px;font-size:13.5px}
  .drawer-footnote{padding:12px 18px 16px;font-size:11px}
}
@media (max-height:760px) and (max-width:700px){
  .drawer.chrome-v3-drawer .chrome-v3-drawer-head{padding:14px 16px 10px}
  .drawer.chrome-v3-drawer .drawer-logo{height:32px !important}
  .drawer-intro{padding:12px 16px 7px}
  .drawer-intro strong{font-size:15px}
  .drawer-nav-card{min-height:52px;padding:8px 9px !important}
  .drawer-nav-icon{width:34px;height:34px;border-radius:12px}
  .drawer-nav-copy strong{font-size:13.5px}
  .drawer-nav-copy small{font-size:10.8px}
  .drawer-actions .btn{min-height:46px}
  .drawer-secondary{min-height:40px}
  .drawer-footnote{display:none}
}
@media (max-width:380px){
  .header.chrome-v3 .chrome-v2-logo{height:28px !important;max-width:160px}
  .drawer-nav-copy strong{font-size:13.5px}
}

/* =============================================================
   CLOUD EXPERT SCHOOL — Header/Footer v4 refinements
   Header mais curto, menu sem Home, rodapé enxuto e CTA via formulário.
   ============================================================= */
:root{--ces-header-h:64px}
.header.chrome-v3{
  padding:5px 0 !important;
}
.header.chrome-v3.scrolled{
  padding:4px 0 !important;
}
.header.chrome-v3 .chrome-v2-nav{
  min-height:50px !important;
  gap:16px !important;
}
.header.chrome-v3 .chrome-v2-logo{
  height:32px !important;
  max-width:205px !important;
}
.header.chrome-v3.scrolled .chrome-v2-logo{
  height:30px !important;
}
.header.chrome-v3 .chrome-v2-links{
  gap:4px !important;
}
.header.chrome-v3 .chrome-v2-links .nav-link{
  font-size:13px !important;
  padding:8px 10px !important;
}
.header.chrome-v3 .chrome-v2-student{
  padding:10px 17px !important;
  font-size:13px !important;
}

/* Rodapé v4 */
.footer.chrome-v2-footer{
  padding:56px 0 24px !important;
}
.chrome-v2-foot-grid{
  grid-template-columns:minmax(280px,1.35fr) 1fr .72fr 1fr !important;
  gap:34px !important;
  align-items:start;
}
.foot-contact-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:18px;
  min-height:42px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.18);
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:13px;
  font-weight:850;
  letter-spacing:-.01em;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.foot-contact-cta:hover{
  transform:translateY(-2px);
  background:rgba(255,255,255,.13);
  border-color:rgba(255,255,255,.28);
  box-shadow:0 16px 34px -24px rgba(255,255,255,.7);
}
.chrome-v4-foot-bottom{
  display:grid !important;
  grid-template-columns:minmax(260px,1fr) auto;
  gap:20px !important;
  align-items:center !important;
}
.foot-company-card{
  display:grid;
  gap:5px;
  padding:16px 18px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.035));
  color:rgba(255,255,255,.64);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.foot-company-eyebrow{
  display:block;
  margin-bottom:4px;
  color:#6ea0ff;
  font-family:var(--f-mono);
  font-size:10px;
  font-weight:900;
  line-height:1;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.foot-company-card strong{
  color:#fff;
  font-size:14px;
  font-weight:900;
  letter-spacing:-.02em;
}
.foot-company-card span:not(.foot-company-eyebrow){
  display:block;
  color:rgba(255,255,255,.62);
  font-size:12.5px;
  line-height:1.45;
}

/* Botão flutuante agora abre o formulário SellFlux */
.float-contact{
  border:0;
  cursor:pointer;
  font-family:var(--f-ui);
}
.float-contact:hover{color:#fff}

/* Botão secundário do menu mobile como button */
.drawer-secondary{
  cursor:pointer;
  font-family:var(--f-ui);
}
.drawer-secondary.js-contact{
  width:100%;
}

@media (max-width:1240px){
  .header.chrome-v3 .chrome-v2-links .nav-link{font-size:12.7px !important;padding:8px 8px !important}
  .header.chrome-v3 .chrome-v2-logo{height:30px !important;max-width:190px !important}
}
@media (max-width:1120px){
  .chrome-v2-foot-grid{grid-template-columns:1.2fr 1fr 1fr !important;gap:28px !important}
  .chrome-v4-foot-bottom{grid-template-columns:1fr !important;align-items:start !important}
}
@media (max-width:700px){
  .header.chrome-v3{padding:6px 0 !important}
  .header.chrome-v3 .chrome-v2-nav{min-height:48px !important}
  .header.chrome-v3 .chrome-v2-logo{height:30px !important;max-width:186px !important}
  .footer.chrome-v2-footer{padding:44px 0 22px !important}
  .chrome-v2-foot-grid{grid-template-columns:1fr !important;gap:24px !important;margin-bottom:24px !important}
  .float-contact{font-size:12px;padding:12px 15px;right:14px;bottom:16px}
}
@media (max-width:380px){
  .header.chrome-v3 .chrome-v2-logo{height:28px !important;max-width:166px !important}
}


/* =============================================================
   Cloud Expert School · Header/Footer v6
   Ajuste mobile: menu sem ícones, selos ou emojis nos cards
   ============================================================= */
.drawer.chrome-v3-drawer .drawer-nav-card,
.drawer.chrome-v3-drawer .drawer-nav-card-clean{
  grid-template-columns:minmax(0,1fr) 18px !important;
  gap:12px !important;
  min-height:64px;
  padding:14px 16px !important;
}
.drawer.chrome-v3-drawer .drawer-nav-icon{
  display:none !important;
}
.drawer.chrome-v3-drawer .drawer-nav-copy strong{
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
  font-size:15.5px;
  letter-spacing:-.03em;
}
.drawer.chrome-v3-drawer .drawer-nav-copy small{
  white-space:normal !important;
  overflow:visible !important;
  text-overflow:clip !important;
  font-size:12px;
  line-height:1.28;
}
.drawer.chrome-v3-drawer .drawer-nav-arrow{
  justify-self:end;
}
@media (max-width:700px){
  .drawer.chrome-v3-drawer .drawer-nav-card,
  .drawer.chrome-v3-drawer .drawer-nav-card-clean{
    grid-template-columns:minmax(0,1fr) 16px !important;
    min-height:58px;
    padding:13px 15px !important;
    border-radius:16px;
  }
  .drawer.chrome-v3-drawer .drawer-nav-copy strong{font-size:14.8px;line-height:1.12}
  .drawer.chrome-v3-drawer .drawer-nav-copy small{font-size:11.6px;margin-top:3px;line-height:1.25}
}
@media (max-height:760px) and (max-width:700px){
  .drawer.chrome-v3-drawer .drawer-nav-card,
  .drawer.chrome-v3-drawer .drawer-nav-card-clean{
    min-height:52px;
    padding:10px 13px !important;
  }
  .drawer.chrome-v3-drawer .drawer-nav-copy strong{font-size:13.8px}
  .drawer.chrome-v3-drawer .drawer-nav-copy small{font-size:10.8px}
}

/* ============================================================
   Cloud Expert School · Turnstile / Lead security v7
   ============================================================ */
.ces-turnstile-wrap{
  margin-top: 10px !important;
}
.ces-turnstile-widget{
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.ces-turnstile-widget iframe{
  max-width: 100% !important;
}
.ces-turnstile-warning{
  width: 100%;
  border: 1px solid rgba(239,68,68,.22);
  background: rgba(254,242,242,.92);
  color: #991b1b;
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 12px;
  font-weight: 700;
}
.form-error-message{
  animation: cesFormErrorIn .18s ease-out both;
}
@keyframes cesFormErrorIn{
  from{opacity:0;transform:translateY(4px)}
  to{opacity:1;transform:translateY(0)}
}
@media (max-width: 520px){
  .ces-turnstile-widget{justify-content:center;min-height:64px}
}


/* Cloud Expert Secure Leads v4 — ajustes de formulário seguro */
.form-error-message{margin-top:12px;padding:12px 14px;border-radius:14px;background:#fff1f2;color:#9f1239;font-size:13px;font-weight:800;border:1px solid rgba(159,18,57,.16)}
.contato-v4-success{border-radius:14px}
.cmodal-submit[disabled], .contato-v4-submit[disabled]{opacity:.7;cursor:wait;filter:saturate(.8)}
