/* =====================================================================
   Provedor Brasil — Design System
   Cores oficiais:
     Azul principal   #003DA5
     Azul secundário  #1E5EFF
     Amarelo          #FFD400
     Branco           #FFFFFF
   ===================================================================== */

:root {
  --azul: #003DA5;
  --azul-2: #1E5EFF;
  --azul-esc: #002766;
  --amarelo: #FFD400;
  --amarelo-esc: #E6BE00;
  --branco: #FFFFFF;
  --cinza-1: #F5F7FB;
  --cinza-2: #E6EAF2;
  --cinza-3: #9AA3B2;
  --cinza-4: #4A5265;
  --texto: #0F1A33;
  --texto-2: #4A5265;
  --shadow-sm: 0 2px 6px rgba(0, 61, 165, .06);
  --shadow-md: 0 8px 24px rgba(0, 61, 165, .10);
  --shadow-lg: 0 20px 60px rgba(0, 61, 165, .16);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --fonte: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container: 1200px;
}

/* Reset */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; overflow-x: clip; }
body {
  font-family: var(--fonte);
  color: var(--texto);
  background: var(--branco);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-x: clip; /* clip não cria contexto de rolagem: mantém o sticky do cabeçalho */
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--azul); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--azul-2); }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
h1,h2,h3,h4 { line-height: 1.2; color: var(--texto); font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.4rem); margin-bottom: .8rem; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }
p  { color: var(--texto-2); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }
.section-header { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section-header .eyebrow { display: inline-block; background: rgba(0,61,165,.08); color: var(--azul); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; margin-top: .6rem; }

/* Botões */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 24px; border-radius: var(--radius); font-weight: 700; font-size: .98rem; transition: all .25s ease; white-space: nowrap; }
.btn-primary { background: var(--amarelo); color: var(--azul-esc); box-shadow: 0 8px 20px rgba(255,212,0,.35); }
.btn-primary:hover { background: var(--amarelo-esc); color: var(--azul-esc); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(255,212,0,.45); }
.btn-outline { background: transparent; color: var(--branco); border: 2px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: var(--branco); color: var(--azul); }
.btn-blue { background: var(--azul); color: var(--branco); }
.btn-blue:hover { background: var(--azul-2); color: var(--branco); transform: translateY(-2px); }
.btn-ghost { background: var(--cinza-1); color: var(--azul); }
.btn-ghost:hover { background: var(--cinza-2); }
.btn-wpp { background: #25D366; color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.35); }
.btn-wpp:hover { background: #1ebe57; color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 10px 16px; font-size: .88rem; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* Topbar */
.topbar { background: var(--azul-esc); color: #cfd9ef; font-size: .82rem; padding: 8px 0; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: #cfd9ef; }
.topbar a:hover { color: var(--amarelo); }
.topbar .info { display: flex; gap: 20px; flex-wrap: wrap; }

/* Header */
.header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: saturate(180%) blur(10px); border-bottom: 1px solid var(--cinza-2); }
.header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; gap: 20px; }
.logo img { height: 40px; width: auto; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 8px; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--azul); position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ''; position: absolute; left: 0; width: 22px; height: 2px; background: var(--azul); transition: transform .2s ease; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { color: var(--texto); font-weight: 600; font-size: .93rem; padding: 8px 12px; border-radius: 8px; }
.nav a:hover, .nav a.active { color: var(--azul); background: var(--cinza-1); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 10px 16px; font-size: .85rem; }
.btn-webmail { background: linear-gradient(135deg, var(--azul) 0%, var(--azul-2) 100%); color: #fff; }
.btn-webmail:hover { color: #fff; filter: brightness(1.08); }
.btn-area { background: var(--amarelo); color: var(--azul-esc); }
.btn-area:hover { background: var(--amarelo-esc); color: var(--azul-esc); }

/* Hero slider */
.hero { position: relative; min-height: 620px; background: var(--azul-esc); color: #fff; overflow: hidden; }
.slides { position: relative; width: 100%; height: 100%; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; padding: 100px 0 90px; display: flex; align-items: center; }
.slide.active { opacity: 1; z-index: 2; }
.slide::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(0,39,102,.92) 0%, rgba(0,61,165,.78) 55%, rgba(0,61,165,.35) 100%);
  z-index: 1;
}
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; }
.slide-content .eyebrow { display: inline-block; background: rgba(255,212,0,.16); color: var(--amarelo); font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 1.2rem; }
.slide h1, .slide .slide-title { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); line-height: 1.1; margin-bottom: 1.2rem; }
.slide h1 strong, .slide .slide-title strong { color: var(--amarelo); }
.slide p { color: #d9e2f2; font-size: 1.1rem; margin-bottom: 1.8rem; max-width: 560px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slide-visual { display: none; }

.slider-nav { position: absolute; bottom: 30px; left: 0; right: 0; z-index: 5; display: flex; justify-content: center; gap: 10px; }
.slider-dot { width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,.3); cursor: pointer; transition: background .3s ease; }
.slider-dot.active { background: var(--amarelo); }

/* Faixa de destaque atendimento humanizado */
.human-strip { background: var(--amarelo); color: var(--azul-esc); padding: 22px 0; }
.human-strip .container { display: flex; align-items: center; justify-content: center; gap: 14px; text-align: center; flex-wrap: wrap; font-weight: 700; font-size: 1.05rem; }
.human-strip svg { width: 26px; height: 26px; }

/* Diferenciais / features grid */
.features { background: var(--cinza-1); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 1100px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feature { background: #fff; border-radius: var(--radius); padding: 30px 26px; box-shadow: var(--shadow-sm); transition: all .3s ease; border: 1px solid transparent; height: 100%; display: flex; flex-direction: column; }

.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(0,61,165,.1); }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, var(--azul) 0%, var(--azul-2) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature-icon svg { width: 28px; height: 28px; stroke: var(--amarelo); }
.feature h3 { color: var(--azul-esc); }
.feature p { font-size: .95rem; }

/* Planos em destaque */
.plans-home { background: #fff; }
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.plan { background: #fff; border-radius: var(--radius-lg); padding: 34px 28px; border: 2px solid var(--cinza-2); text-align: center; position: relative; transition: all .3s ease; }
.plan:hover { border-color: var(--azul-2); transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--azul); background: linear-gradient(180deg, #fff 0%, #f4f7ff 100%); transform: scale(1.03); }
.plan.featured::before { content: 'Mais escolhido'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--amarelo); color: var(--azul-esc); font-weight: 700; font-size: .78rem; padding: 6px 16px; border-radius: 999px; }
.plan h3 { color: var(--azul); font-size: 1.3rem; margin-bottom: 8px; }
.plan .price { font-size: 2.4rem; font-weight: 800; color: var(--azul-esc); margin: 14px 0 4px; }
.plan .price small { font-size: .95rem; color: var(--cinza-3); font-weight: 500; }
.plan ul { text-align: left; margin: 22px 0; }
.plan ul li { padding: 8px 0; color: var(--texto-2); font-size: .95rem; display: flex; align-items: start; gap: 8px; }
.plan ul li::before { content: '✓'; color: #22c55e; font-weight: 800; }
.plan .btn { width: 100%; justify-content: center; }
.plans-cta { text-align: center; margin-top: 3rem; }

/* Serviços em destaque */
.services { background: var(--cinza-1); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.service-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card .img { height: 180px; background-size: cover; background-position: center; }
.service-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.service-card h3 { color: var(--azul-esc); }
.service-card p { margin-bottom: 16px; flex: 1; }

/* Portfólio */
.portfolio { background: #fff; }
.portfolio-showcase { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .portfolio-showcase { grid-template-columns: 1.05fr .95fr; } }
.mockup { position: relative; background: #0a1128; border-radius: var(--radius-lg); padding: 20px; box-shadow: var(--shadow-lg); aspect-ratio: 16/10; overflow: hidden; }
.mockup::before { content: ''; position: absolute; top: 12px; left: 20px; width: 40px; height: 8px; background: linear-gradient(90deg, #ff5f56 33%, #ffbd2e 33% 66%, #27c93f 66%); border-radius: 4px; opacity: .7; }
.mockup iframe { width: 100%; height: 100%; border: 0; border-radius: 8px; background: #fff; transform-origin: top left; margin-top: 14px; height: calc(100% - 14px); }
.portfolio-info h2 { margin-bottom: 1rem; }
.portfolio-info .site-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0; }
.portfolio-info .site-tag { padding: 8px 14px; border: 1px solid var(--cinza-2); border-radius: 999px; font-size: .85rem; color: var(--azul); font-weight: 600; cursor: pointer; transition: all .2s ease; }
.portfolio-info .site-tag.active, .portfolio-info .site-tag:hover { background: var(--azul); color: #fff; border-color: var(--azul); }

/* Marcas */
.brands { background: var(--cinza-1); }
.brands-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.brand-slot { aspect-ratio: 3/2; background: #fff; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--cinza-3); font-weight: 700; font-size: .8rem; letter-spacing: .05em; border: 1px solid var(--cinza-2); transition: all .2s; }
.brand-slot:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* Avaliações Google */
.reviews { background: #fff; }
.google-summary { display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap; margin-bottom: 3rem; background: var(--cinza-1); padding: 30px; border-radius: var(--radius-lg); max-width: 780px; margin-left: auto; margin-right: auto; }
.google-summary .rating { font-size: 3rem; font-weight: 800; color: var(--azul-esc); line-height: 1; }
.stars { color: #FBBC04; font-size: 1.4rem; letter-spacing: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.review { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--cinza-2); }
.review .header-r { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--azul), var(--azul-2)); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.review .name { font-weight: 700; color: var(--texto); }
.review .date { font-size: .82rem; color: var(--cinza-3); }
.review p { font-size: .95rem; }

/* CTA principal (WhatsApp) */
.cta-big { background: url('../imagens/bg-cta.jpg') center/cover no-repeat, var(--azul-esc); color: #fff; text-align: center; padding: 90px 0; position: relative; }
.cta-big::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,39,102,.9), rgba(0,61,165,.85)); }
.cta-big .container { position: relative; z-index: 2; }
.cta-big h2 { color: #fff; margin-bottom: 1rem; }
.cta-big p { color: #d9e2f2; font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }

/* FAQ */
.faq { background: var(--cinza-1); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-question { width: 100%; text-align: left; padding: 20px 24px; font-weight: 700; color: var(--texto); display: flex; justify-content: space-between; align-items: center; gap: 14px; font-size: 1rem; }
.faq-question::after { content: '+'; font-size: 1.6rem; color: var(--azul); font-weight: 400; transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer div { padding: 0 24px 22px; color: var(--texto-2); }
.faq-item.open .faq-answer { max-height: 500px; }

/* Instagram destaque */
.insta-card { background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCB045); color: #fff; padding: 40px; border-radius: var(--radius-lg); text-align: center; }
.insta-card h3 { color: #fff; font-size: 1.4rem; margin-bottom: 8px; }
.insta-card p { color: rgba(255,255,255,.9); margin-bottom: 20px; }
.insta-card .btn { background: #fff; color: #833AB4; }
.insta-card .btn:hover { background: #f0f0f0; }

/* Footer */
.footer { background: #050e24; color: #b7c1d9; padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; letter-spacing: .04em; }
.footer a { color: #b7c1d9; display: block; padding: 4px 0; font-size: .93rem; }
.footer a:hover { color: var(--amarelo); }
.footer .logo img { height: 40px; margin-bottom: 16px; }
.footer p { color: #8792ad; font-size: .93rem; }
.footer .social { display: flex; gap: 10px; margin-top: 16px; }
.footer .social a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; padding: 0; }
.footer .social a:hover { background: var(--amarelo); color: var(--azul-esc); }
.footer .social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; text-align: center; font-size: .85rem; color: #8792ad; }

/* WhatsApp flutuante */
.wpp-float { position: fixed; bottom: 22px; right: 22px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 30px rgba(37,211,102,.5); z-index: 999; transition: transform .3s ease; animation: pulse 2s infinite; }
.wpp-float:hover { transform: scale(1.1); color: #fff; }
.wpp-float svg { width: 32px; height: 32px; }
@keyframes pulse { 0%,100% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 0 rgba(37,211,102,.5); } 50% { box-shadow: 0 10px 30px rgba(37,211,102,.5), 0 0 0 20px rgba(37,211,102,0); } }

/* Page Hero (subpáginas) */
.page-hero { background: linear-gradient(135deg, var(--azul-esc) 0%, var(--azul) 100%); color: #fff; padding: 90px 0 70px; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: url('../imagens/bg-cta.jpg') center/cover; opacity: .18; }
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero p { color: #d9e2f2; font-size: 1.1rem; max-width: 640px; margin: 0 auto; }
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 1.2rem; }
.breadcrumb a { color: var(--amarelo); }

/* Grade duas colunas texto/imagem */
.two-col { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; } .two-col.rev > :first-child { order: 2; } }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.two-col ul { margin-top: 1rem; }
.two-col ul li { padding: 8px 0; color: var(--texto-2); display: flex; gap: 10px; align-items: start; }
.two-col ul li::before { content: '✓'; color: #22c55e; font-weight: 800; }

/* Login card (webmail / área cliente) */
.login-page { background: var(--cinza-1); padding: 60px 0; min-height: 60vh; }
.login-wrap { display: grid; grid-template-columns: 1fr; gap: 30px; max-width: 1100px; margin: 0 auto; }
@media (min-width: 900px) { .login-wrap { grid-template-columns: 1fr 1fr; } }
.login-card { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.login-card h2 { color: var(--azul-esc); }
.login-card p { margin-bottom: 20px; }
.login-card label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--texto); }
.login-card input[type=text], .login-card input[type=email], .login-card input[type=password] {
  width: 100%; padding: 12px 14px; border: 2px solid var(--cinza-2); border-radius: var(--radius-sm); font-size: 1rem; margin-bottom: 16px; transition: border .2s;
}
.login-card input:focus { outline: 0; border-color: var(--azul); }
.login-card input[type=submit] {
  width: 100%; padding: 14px; background: var(--azul); color: #fff; border-radius: var(--radius-sm); font-weight: 700; font-size: 1rem; cursor: pointer; transition: background .2s; border: 0;
}
.login-card input[type=submit]:hover { background: var(--azul-2); }
.help-card { background: #fff; padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.help-card h3 { color: var(--azul-esc); margin-bottom: 12px; }
.help-card ul li { padding: 8px 0; }
.help-card ul li a { display: flex; gap: 10px; align-items: center; }

/* Tabela de planos completa */
.plans-full { background: var(--cinza-1); }
.plans-cat { margin-bottom: 3rem; }
.plans-cat h3 { color: var(--azul-esc); text-align: center; margin-bottom: 1.5rem; font-size: 1.4rem; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card .img { height: 180px; background: linear-gradient(135deg, var(--azul), var(--azul-2)); }
.blog-card .body { padding: 24px; }
.blog-card .cat { color: var(--azul); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.blog-card h3 { margin: 8px 0 10px; font-size: 1.15rem; }

/* Contato */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { background: linear-gradient(135deg, var(--azul-esc), var(--azul)); color: #fff; padding: 40px; border-radius: var(--radius-lg); }
.contact-info h3 { color: #fff; }
.contact-info p, .contact-info a { color: rgba(255,255,255,.92); }
.contact-info .item { display: flex; gap: 14px; margin: 20px 0; align-items: start; }
.contact-info .item svg { width: 24px; height: 24px; flex-shrink: 0; color: var(--amarelo); }

/* Responsivo */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav { position: fixed; top: 0; right: -100%; width: 82%; max-width: 340px; height: 100vh; background: #fff; flex-direction: column; align-items: stretch; padding: 80px 22px 30px; box-shadow: -20px 0 60px rgba(0,0,0,.15); transition: right .3s ease; gap: 4px; }
  .nav.open { right: 0; }
  .nav a { padding: 14px 16px; font-size: 1rem; }
  .header-cta .btn { display: none; }
  .header-cta .btn-webmail { display: inline-flex; }
  .slide .container { grid-template-columns: 1fr; }
  .slide { padding: 70px 0 80px; }
  .topbar .info { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 0; }
  .plan.featured { transform: none; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .google-summary { flex-direction: column; }
}

/* Animações fade-in on scroll */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============ AJUSTES: Header azul, socials, hero mobile ============ */
.header { background: var(--azul-esc); border-bottom: 1px solid rgba(255,255,255,.08); }
.header .logo img { height: 44px; filter: brightness(0) saturate(100%) invert(84%) sepia(89%) saturate(1500%) hue-rotate(2deg) brightness(103%) contrast(103%); }
.nav a { color: #d9e2f2; }
.nav a:hover, .nav a.active { color: var(--amarelo); background: rgba(255,255,255,.06); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { background: var(--amarelo); }
.btn-webmail { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
.btn-webmail:hover { background: rgba(255,255,255,.18); color: #fff; }

/* Ícones sociais (topbar + footer) */
.social-icons { display: inline-flex; align-items: center; gap: 8px; }
.social-icons a {
  width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08); color: #fff !important; transition: all .2s ease;
}
.social-icons a:hover { background: var(--amarelo); color: var(--azul-esc) !important; transform: translateY(-1px); }
.social-icons svg { width: 16px; height: 16px; fill: currentColor; }
.footer .social { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.footer .social a { width: 40px; height: 40px; padding: 0; }

/* Mobile nav em fundo azul */
@media (max-width: 900px) {
  .nav { background: var(--azul-esc); }
  .nav a { color: #fff; }
}

/* Hero — correção de altura e comportamento mobile */
.hero { min-height: 620px; display: block; }
.slides { position: absolute; inset: 0; }
.slide-bg { position: absolute; inset: 0; background-position: center center; background-size: cover; background-repeat: no-repeat; }
@media (max-width: 900px) {
  .hero { min-height: 640px; }
  .slide { padding: 50px 0 70px; align-items: center; }
  .slide::before {
    background: linear-gradient(180deg, rgba(0,39,102,.88) 0%, rgba(0,39,102,.72) 55%, rgba(0,61,165,.55) 100%);
  }
  .slide h1, .slide .slide-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .slide p { font-size: .98rem; }
  .slide-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 540px) {
  .hero { min-height: 600px; }
}


/* Legal / institutional pages */
.legal-doc{max-width:860px;margin:0 auto;background:#fff;padding:40px 44px;border-radius:12px;box-shadow:0 4px 24px rgba(0,0,0,.06);line-height:1.75;color:#222}
.legal-doc h2{color:var(--azul-esc,#003DA5);margin-top:36px;margin-bottom:12px;font-size:1.35rem;border-left:4px solid var(--amarelo,#FFD400);padding-left:12px}
.legal-doc h3{margin-top:22px;margin-bottom:8px;font-size:1.08rem;color:#111}
.legal-doc p,.legal-doc li{font-size:.98rem}
.legal-doc ul{padding-left:22px;margin:10px 0 16px}
.legal-doc li{margin-bottom:6px}
.legal-doc a{color:var(--azul,#1E5EFF);text-decoration:underline}
.legal-doc hr{border:none;border-top:1px solid #eee;margin:32px 0}
.legal-updated{background:#f6f8ff;border:1px solid #e3e9ff;padding:10px 14px;border-radius:8px;font-size:.92rem;color:#333}
@media (max-width:640px){.legal-doc{padding:24px 18px}.legal-doc h2{font-size:1.15rem}}

/* ============ Central de Domínios ============ */
.dom-search { display: flex; gap: 10px; background: #fff; padding: 10px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 720px; margin: 24px auto 8px; }
.dom-search input { flex: 1; border: 0; outline: none; padding: 14px 18px; font: inherit; font-size: 1.05rem; color: var(--texto); background: transparent; min-width: 0; }
.dom-search input::placeholder { color: var(--cinza-3); }
.dom-search button { flex-shrink: 0; }
.dom-search-hero { margin-top: 30px; }
.dom-hint { text-align: center; color: rgba(255,255,255,.75); font-size: .88rem; margin-top: 8px; }

/* Home widget (fundo claro) */
.dom-home { background: linear-gradient(135deg, var(--azul-esc) 0%, var(--azul) 100%); color: #fff; padding: 60px 0; }
.dom-home .section-header { margin-bottom: 1.4rem; }
.dom-home .eyebrow { background: rgba(255,212,0,.16); color: var(--amarelo); }
.dom-home h2 { color: #fff; }
.dom-home p { color: #d9e2f2; }
.dom-home .dom-hint { color: rgba(255,255,255,.8); }

/* Resultados */
.dom-section { background: var(--cinza-1); }
.dom-results { max-width: 820px; margin: 0 auto; }
.dom-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); border: 1px solid var(--cinza-2); animation: domFadeIn .5s ease; }
.dom-card h3 { color: var(--azul-esc); font-size: 1.5rem; margin-bottom: 10px; }
.dom-card p { color: var(--texto-2); margin-bottom: 14px; }
.dom-idle { text-align: center; border-style: dashed; box-shadow: none; }
.dom-badge { display: inline-block; padding: 6px 12px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; }
.dom-badge-ok { background: rgba(34,197,94,.14); color: #15803d; }
.dom-badge-warn { background: rgba(239,68,68,.12); color: #b91c1c; }
.dom-badge-neutral { background: rgba(0,61,165,.08); color: var(--azul); }
.dom-available { border-left: 6px solid #22c55e; }
.dom-registered { border-left: 6px solid #ef4444; }
.dom-neutral, .dom-error { border-left: 6px solid var(--azul); }
.dom-highlight { display: inline-block; margin: 6px 0 20px; padding: 14px 22px; background: linear-gradient(135deg, var(--azul-esc), var(--azul)); color: var(--amarelo); font-size: 1.4rem; font-weight: 800; border-radius: var(--radius); letter-spacing: .01em; }
.dom-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.dom-actions .btn { flex: 1; min-width: 200px; justify-content: center; }
.dom-info { display: grid; gap: 6px; margin: 18px 0 22px; background: var(--cinza-1); border-radius: var(--radius); padding: 18px 20px; }
.dom-row { display: grid; grid-template-columns: 200px 1fr; gap: 14px; padding: 8px 0; border-bottom: 1px dashed var(--cinza-2); font-size: .94rem; }
.dom-row:last-child { border-bottom: 0; }
.dom-k { font-weight: 700; color: var(--azul-esc); }
.dom-v { color: var(--texto-2); word-break: break-word; }

/* Sugestões */
.dom-suggestions { max-width: 1000px; margin: 40px auto 0; }
.dom-sugg-header { text-align: center; margin-bottom: 24px; }
.dom-sugg-header h3 { color: var(--azul-esc); font-size: 1.4rem; margin-bottom: 4px; }
.dom-sugg-header p { color: var(--texto-2); }
.dom-sugg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.dom-sugg { background: #fff; border-radius: var(--radius); padding: 20px; border: 1px solid var(--cinza-2); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 10px; animation: domFadeIn .4s ease; transition: transform .2s ease, box-shadow .2s ease; }
.dom-sugg:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dom-sugg-name { font-weight: 700; color: var(--azul-esc); word-break: break-all; }
.dom-sugg-status { align-self: flex-start; padding: 4px 10px; border-radius: 999px; font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.dom-sugg-ok { border-left: 4px solid #22c55e; }
.dom-sugg-warn { border-left: 4px solid #ef4444; }
.dom-sugg .btn { width: 100%; justify-content: center; }

/* Skeleton */
.dom-skeleton .sk-line { height: 14px; border-radius: 6px; background: linear-gradient(90deg, #eef1f8 0%, #e0e5f0 50%, #eef1f8 100%); background-size: 200% 100%; animation: domShimmer 1.2s ease-in-out infinite; margin: 10px 0; }
.sk-w40 { width: 40%; } .sk-w50 { width: 50%; } .sk-w60 { width: 60%; } .sk-w70 { width: 70%; }
@keyframes domShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes domFadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 720px) {
  .dom-search { flex-direction: column; padding: 12px; }
  .dom-search button { width: 100%; justify-content: center; }
  .dom-row { grid-template-columns: 1fr; gap: 2px; }
  .dom-actions .btn { min-width: 0; width: 100%; }
  .dom-card { padding: 24px 20px; }
}

/* ============ Instagram banner ============ */
.insta-banner { display: block; max-width: 1100px; margin: 0 auto; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); transition: transform .3s ease, box-shadow .3s ease; line-height: 0; }
.insta-banner:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.insta-banner img { width: 100%; height: auto; display: block; }

/* Footer com 5 colunas (Serviços, Empresa, Acesso, Legal) */
.footer-grid { grid-template-columns: 1.6fr repeat(4, 1fr); }
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ v3 REFINAMENTOS ============ */

/* Logotipo amarelo (mesma paleta dos botões e ícones) */
.header .logo img,
.footer .logo img {
  content: url('../imagens/logo-amarelo.png');
  filter: none;
  height: 44px;
  width: auto;
}
.footer .logo img { height: 40px; }

/* Cabeçalho: compactar nav para 1 única linha */
.header .container { gap: 14px; }
.nav { gap: 2px; flex-wrap: nowrap; }
.nav a { padding: 8px 10px; font-size: .88rem; white-space: nowrap; }
@media (min-width: 1200px) {
  .nav a { padding: 8px 12px; font-size: .92rem; }
}

/* Header CTA — apenas Webmail (destaque em amarelo) */
.header-cta { flex-shrink: 0; }
.btn-webmail {
  background: var(--amarelo);
  color: var(--azul-esc);
  border: 0;
  box-shadow: 0 6px 18px rgba(255,212,0,.35);
  font-weight: 800;
}
.btn-webmail:hover {
  background: var(--amarelo-esc);
  color: var(--azul-esc);
  box-shadow: 0 10px 22px rgba(255,212,0,.45);
  transform: translateY(-1px);
}

/* Topbar direita: agrupa Área do Cliente + redes sociais */
.topbar { padding: 10px 0; }
.topbar-right { display: inline-flex; align-items: center; gap: 12px; }

/* Botão Área do Cliente — glassmorphism */
.btn-area-glass {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff !important;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .01em;
  transition: all .25s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}
.btn-area-glass:hover {
  background: rgba(255,212,0,.18);
  border-color: rgba(255,212,0,.55);
  color: var(--amarelo) !important;
  transform: translateY(-1px);
}
.btn-area-glass svg { width: 15px; height: 15px; }
@media (max-width: 640px) {
  .btn-area-glass span { display: none; }
  .btn-area-glass { padding: 7px 9px; }
}
/* Marcas — carrossel infinito */
.brands { padding-bottom: 40px; }
.marquee {
  overflow: hidden;
  padding: 32px 0;
  background: transparent;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  align-items: center;
  animation: marquee 55s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track img {
  height: 54px;
  width: auto;
  max-width: none;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .72;
  transition: filter .3s ease, opacity .3s ease, transform .3s ease;
  flex-shrink: 0;
}
.marquee-track img:hover { filter: none; opacity: 1; transform: scale(1.08); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (max-width: 640px) {
  .marquee-track { gap: 44px; }
  .marquee-track img { height: 40px; }
}

/* Ocultar antiga grade de marcas se ainda houver */
.brands-grid { display: none !important; }

/* ===== v4 — Previews widescreen, marcas refinadas, páginas de acesso ===== */


/* Marcas — logos padronizados, cores originais, fundo suave */
.brands { background: #fff; }
.marquee {
  padding: 40px 0;
  background:
    radial-gradient(120% 100% at 50% 50%, #fff 55%, #f6f8fc 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { gap: 56px; }
.marquee-track img {
  height: auto;
  max-height: 46px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  filter: none !important;
  opacity: 1;
  mix-blend-mode: multiply;
  transition: transform .3s ease;
}
.marquee-track img:hover { transform: scale(1.06); filter: none; opacity: 1; }
@media (max-width: 640px) {
  .marquee-track { gap: 40px; }
  .marquee-track img { max-height: 36px; max-width: 104px; }
}

/* Páginas de acesso (Webmail / Painel) */
.access-hero { background: linear-gradient(135deg, var(--azul-esc), var(--azul)); color: #fff; padding: 64px 0 56px; }
.access-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.access-hero p { color: rgba(255,255,255,.92); max-width: 720px; font-size: 1.05rem; }
.access-hero .btn { margin-top: 26px; }
.access-section { padding: 56px 0; background: var(--cinza-1); }
.access-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 700px) { .access-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1024px) { .access-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.access-item { background: #fff; border: 1px solid var(--cinza-2); border-radius: var(--radius-lg); padding: 22px 24px; box-shadow: var(--shadow-sm); display: flex; gap: 12px; align-items: flex-start; }
.access-item span { font-size: 1.2rem; line-height: 1.2; }
.access-item strong { display: block; color: var(--azul-esc); font-size: 1rem; margin-bottom: 4px; }
.access-item p { font-size: .92rem; color: var(--texto-2); margin: 0; }
.access-cta { text-align: center; margin-top: 34px; }
.access-note { max-width: 820px; margin: 34px auto 0; background: #fff; border-left: 4px solid var(--amarelo); border-radius: 12px; padding: 18px 22px; color: var(--texto-2); font-size: .95rem; box-shadow: var(--shadow-sm); }
.access-note strong { color: var(--azul-esc); }

/* ---- Acesso por domínio (webmail / painel) ---- */
.domain-access { margin-top: 26px; max-width: 620px; }
.domain-access-center { margin-left: auto; margin-right: auto; text-align: center; }
.domain-access label { display: block; font-weight: 700; margin-bottom: 10px; font-size: 1rem; }
.access-hero .domain-access label { color: #fff; }
.access-cta .domain-access label { color: var(--azul-esc); }
.domain-access-row { display: flex; gap: 10px; flex-wrap: wrap; }
.domain-access-row input {
  flex: 1 1 240px; min-width: 0; padding: 14px 16px; font: inherit; font-size: 1rem;
  border: 1px solid rgba(0,0,0,.12); border-radius: 12px; background: #fff; color: var(--texto);
  outline: none; transition: box-shadow .2s ease, border-color .2s ease;
}
.domain-access-row input:focus { border-color: var(--azul); box-shadow: 0 0 0 3px rgba(30,94,255,.25); }
.domain-access-row .btn { margin-top: 0 !important; white-space: nowrap; }
.domain-access-row .btn[disabled] { opacity: .55; cursor: not-allowed; }
.domain-access-msg { margin-top: 10px; font-size: .92rem; font-weight: 600; color: #ffd400; }
.access-cta .domain-access-msg { color: #c0392b; }
.domain-access-hint { display: block; margin-top: 10px; font-size: .85rem; opacity: .85; }
.access-hero .domain-access-hint { color: rgba(255,255,255,.85); }
@media (max-width: 560px) {
  .domain-access-row { flex-direction: column; }
  .domain-access-row input { flex: 0 0 auto; width: 100%; }
  .domain-access-row .btn { width: 100%; justify-content: center; }
}

/* ---- Acesso direto ao Painel de Controle (Área do Cliente) ---- */
.access-hero-box {
  margin-top: 30px; max-width: 660px; padding: 30px 32px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
}
.access-hero-box h2 { color: var(--amarelo); font-size: clamp(1.25rem, 2.6vw, 1.65rem); margin-bottom: 8px; }
.access-hero-box p { color: rgba(255,255,255,.92); font-size: 1rem; max-width: 560px; margin: 0; }
.access-hero-box .btn { margin-top: 22px; }
.access-hero-box .access-hero-hint { margin-top: 16px; font-size: .85rem; line-height: 1.55; color: rgba(255,255,255,.75); max-width: 540px; }
.btn-access { padding: 16px 30px; font-size: 1.02rem; justify-content: center; }
.access-panel {
  max-width: 760px; margin: 0 auto; background: #fff;
  border: 1px solid var(--cinza-2); border-radius: 20px;
  padding: 42px 34px; box-shadow: var(--shadow-md);
}
.access-panel .eyebrow { display: inline-block; background: rgba(0,61,165,.08); color: var(--azul); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.access-panel h3 { font-size: clamp(1.3rem, 2.6vw, 1.7rem); color: var(--azul-esc); margin-bottom: 10px; }
.access-panel p { max-width: 560px; margin: 0 auto 8px; font-size: 1rem; }
.access-panel .btn { margin-top: 24px; }
@media (max-width: 560px) {
  .access-hero-box { padding: 24px 20px; }
  .access-panel { padding: 34px 22px; }
  .btn-access { width: 100%; }
}


/* Nota discreta de emergência técnica (Contato) */
.contact-note { margin-top: 14px; font-size: .82rem; color: var(--texto-2); opacity: .85; line-height: 1.5; }

/* ============ Portfólio — Vitrine 16:9 (componente único) ============ */
.pf-caption { text-align: center; margin-top: 22px; color: var(--texto-2); font-size: .95rem; }
.pf-caption strong { color: var(--azul-esc); }
.pf-actions { text-align: center; margin-top: 26px; }

.pf-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pf-card {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(0, 40, 110, .08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(6, 20, 50, .05), 0 12px 30px -18px rgba(6, 20, 50, .35);
  transition: transform .45s cubic-bezier(.2,.7,.3,1), box-shadow .45s cubic-bezier(.2,.7,.3,1), border-color .45s ease;
}
.pf-card:hover,
.pf-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(30, 94, 255, .22);
  box-shadow: 0 2px 4px rgba(6, 20, 50, .06), 0 28px 56px -24px rgba(6, 20, 50, .42);
}

.pf-frame {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, #eef2fb, #e3e9f6);
  line-height: 0;
}
.pf-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.001);
  transition: transform .7s cubic-bezier(.2,.7,.3,1);
}
.pf-card:hover .pf-shot,
.pf-card:focus-within .pf-shot { transform: scale(1.045); }

/* brilho discreto sobre a prévia */
.pf-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 32%, rgba(3,14,40,.34) 100%);
  opacity: .85;
  transition: opacity .45s ease;
  pointer-events: none;
}
.pf-card:hover .pf-frame::after { opacity: .55; }

.pf-open {
  position: absolute;
  left: 16px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--azul-esc);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1;
  box-shadow: 0 6px 18px rgba(3, 14, 40, .22);
  backdrop-filter: blur(6px);
  transform: translateY(6px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.pf-card:hover .pf-open,
.pf-card:focus-within .pf-open { opacity: 1; transform: translateY(0); }
.pf-open svg { width: 13px; height: 13px; flex-shrink: 0; }

.pf-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 17px;
  background: #fff;
  border-top: 1px solid rgba(0, 40, 110, .07);
}
.pf-name {
  display: block;
  color: var(--azul-esc);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.25;
}
.pf-domain {
  display: block;
  margin-top: 3px;
  color: var(--texto-2);
  font-size: .8rem;
  letter-spacing: .01em;
}
.pf-badge {
  flex-shrink: 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(30, 94, 255, .09);
  color: var(--azul);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (min-width: 720px) and (max-width: 1023px) {
  .pf-showcase { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  /* card órfão da última linha fica centralizado, sem buraco visual */
  .pf-showcase .pf-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 11px);
    justify-self: center;
  }
}
@media (max-width: 719px) {
  .pf-showcase { grid-template-columns: minmax(0, 1fr); gap: 20px; max-width: 520px; margin: 0 auto; }
  .pf-meta { padding: 14px 16px 15px; }
  .pf-open { opacity: 1; transform: none; left: auto; right: 12px; bottom: 12px; padding: 6px 11px; font-size: .7rem; }
  .pf-open svg { width: 11px; height: 11px; }
}
@media (prefers-reduced-motion: reduce) {
  .pf-card, .pf-shot, .pf-open { transition: none !important; }
  .pf-card:hover { transform: none; }
  .pf-card:hover .pf-shot { transform: none; }
}

/* Blog: imagens semânticas nos cards (mesmo resultado visual do background-image) */
.blog-card .img { position: relative; overflow: hidden; }
.blog-card .img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ Movimento reduzido (global) ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  /* Conteúdo revelado por scroll permanece sempre visível */
  .reveal { opacity: 1 !important; transform: none !important; }
  /* Marquee de marcas: sem rolagem automática, com leitura por arraste/teclado */
  .marquee-track { animation: none !important; transform: none !important; }
  .marquee { overflow-x: auto; }
  /* Botão flutuante do WhatsApp sem pulso */
  .whatsapp-float, .whatsapp-float::before, .whatsapp-float::after { animation: none !important; }
  /* Skeleton/shimmer sem brilho animado */
  .dom-skeleton .sk-line, .sk-line { animation: none !important; }
}
