/*
Theme Name:  Landing Page
Theme URI:   https://github.com/seu-usuario/landing_page-theme
Author:      Seu Nome
Author URI:  https://seusite.com.br
Description: Tema corporativo para software house. Posicionamento técnico e institucional. Sem dependências externas. Otimizado para Elementor.
Version:     2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.2
License:     GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: landing_page
Tags:        software-house, corporate, elementor, tech, minimal
*/

/* ==========================================================================
   CONVERSO — Corporate Tech Theme
   Identidade: software house institucional · tom técnico · sem ornamentos
   ========================================================================== */

/* --------------------------------------------------------------------------
   VARIÁVEIS
   -------------------------------------------------------------------------- */
:root {
  /* Paleta principal — azul petróleo profissional */
  --c-navy:         #0B1220;   /* Background escuro principal */
  --c-navy-2:       #111827;   /* Surface escura */
  --c-navy-3:       #1a2540;   /* Cards escuros */
  --c-blue:         #1D5FF0;   /* Azul primário vibrante */
  --c-blue-hover:   #1449cc;   /* Hover azul */
  --c-blue-dim:     rgba(29,95,240,0.12);
  --c-cyan:         #00D4FF;   /* Destaque técnico / accent */
  --c-cyan-dim:     rgba(0,212,255,0.10);
  --c-white:        #F0F4FF;   /* Texto em fundos escuros */
  --c-muted:        #6B7A9A;   /* Texto secundário escuro */
  --c-muted-light:  #94A3B8;   /* Muted mais claro */
  --c-border:       rgba(255,255,255,0.06);
  --c-border-mid:   rgba(255,255,255,0.1);
  --c-border-light: #E2E8F0;   /* Borda seções claras */

  /* Light sections */
  --c-bg-light:     #F7F9FC;
  --c-surface:      #FFFFFF;
  --c-text:         #0F1729;
  --c-text-soft:    #374151;

  /* Tipografia — Syne para display, DM Sans para corpo */
  --font-display: 'Syne', 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'JetBrains Mono', monospace;

  /* Escala */
  --fs-xs:    0.6875rem;
  --fs-sm:    0.8125rem;
  --fs-base:  0.9375rem;
  --fs-md:    1.0625rem;
  --fs-lg:    1.25rem;
  --fs-xl:    1.5rem;
  --fs-2xl:   1.875rem;
  --fs-3xl:   2.375rem;
  --fs-4xl:   3rem;
  --fs-5xl:   3.75rem;
  --fs-6xl:   4.75rem;

  /* Layout */
  --container:     1200px;
  --container-pad: 1.25rem;
  --header-h:      68px;

  /* Bordas */
  --r-sm:  4px;
  --r-md:  6px;
  --r-lg:  10px;
  --r-xl:  16px;

  /* Sombras */
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.2);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.25);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.35);
  --shadow-blue: 0 4px 24px rgba(29,95,240,0.30);

  /* Transições */
  --t-fast: 150ms ease;
  --t-base: 240ms ease;
  --t-slow: 380ms ease;
}

/* --------------------------------------------------------------------------
   RESET
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-navy);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--c-blue); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-cyan); }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-white);
}

/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.container--narrow { max-width: 760px; }
.container--mid    { max-width: 960px; }

/* --------------------------------------------------------------------------
   SITE LAYOUT
   -------------------------------------------------------------------------- */
.site { display: flex; flex-direction: column; min-height: 100vh; }
.site-content { flex: 1; }

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(11,18,32,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: border-color var(--t-base), background var(--t-base);
}

.site-header.scrolled {
  background: rgba(11,18,32,0.98);
  border-bottom-color: var(--c-border-mid);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
}

/* Logo */
.site-logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo img { height: 36px; width: auto; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  color: var(--c-cyan);
}
.logo-badge {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  line-height: 1;
  margin-top: 3px;
}

/* Nav desktop */
.main-nav { display: none; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--c-muted-light);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  color: var(--c-white);
  background: rgba(255,255,255,0.06);
}

/* Header CTA */
.header-actions { display: none; align-items: center; gap: 0.75rem; }

/* Mobile toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 8px;
  transition: background var(--t-fast);
}
.nav-toggle:hover { background: rgba(255,255,255,0.1); }
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--c-muted-light);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--c-navy-2);
  border-top: 1px solid var(--c-border);
  z-index: 199;
  overflow-y: auto;
  padding: 1.5rem var(--container-pad) 2rem;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a {
  display: block;
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--c-muted-light);
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast);
}
.mobile-nav a:hover { color: var(--c-white); }
.mobile-nav__footer { margin-top: 1.5rem; }

/* --------------------------------------------------------------------------
   BOTÕES
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
  user-select: none;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: none; }
.btn:focus-visible { outline: 2px solid var(--c-blue); outline-offset: 3px; }

/* Primary */
.btn-primary {
  background: var(--c-blue);
  color: #fff;
  border-color: var(--c-blue);
}
.btn-primary:hover {
  background: var(--c-blue-hover);
  border-color: var(--c-blue-hover);
  color: #fff;
  box-shadow: var(--shadow-blue);
}

/* Ghost dark */
.btn-ghost {
  background: transparent;
  color: var(--c-muted-light);
  border-color: var(--c-border-mid);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  color: var(--c-white);
  border-color: rgba(255,255,255,0.2);
}

/* Ghost light (fundos claros) */
.btn-ghost-light {
  background: transparent;
  color: var(--c-text-soft);
  border-color: var(--c-border-light);
}
.btn-ghost-light:hover {
  background: var(--c-bg-light);
  color: var(--c-text);
  border-color: #C8D0DD;
}

/* Outline cyan */
.btn-cyan {
  background: transparent;
  color: var(--c-cyan);
  border-color: rgba(0,212,255,0.35);
}
.btn-cyan:hover {
  background: rgba(0,212,255,0.08);
  border-color: var(--c-cyan);
  color: var(--c-cyan);
}

/* Tamanhos */
.btn-sm  { padding: 0.45rem 0.875rem; font-size: var(--fs-xs); }
.btn-lg  { padding: 0.75rem 1.75rem;  font-size: var(--fs-base); }
.btn-xl  { padding: 0.875rem 2rem;    font-size: var(--fs-md); border-radius: var(--r-lg); }
.btn-full { width: 100%; }

/* --------------------------------------------------------------------------
   TIPOGRAFIA DE SEÇÕES
   -------------------------------------------------------------------------- */

/* Label técnico antes dos títulos */
.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-cyan);
  margin-bottom: 1.125rem;
}
.label-tag::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--c-cyan);
}

/* Versão para fundos claros */
.label-tag--dark {
  color: var(--c-blue);
}
.label-tag--dark::before {
  background: var(--c-blue);
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, var(--fs-4xl));
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.section-title--light { color: var(--c-text); }

.section-lead {
  font-size: var(--fs-md);
  line-height: 1.7;
  color: var(--c-muted);
  max-width: 560px;
}
.section-lead--dark { color: var(--c-text-soft); }

/* --------------------------------------------------------------------------
   SEÇÕES
   -------------------------------------------------------------------------- */
.section {
  padding: 6rem 0;
}
.section--sm { padding: 4rem 0; }
.section--dark { background: var(--c-navy); }
.section--darker { background: var(--c-navy-2); }
.section--light { background: var(--c-bg-light); }
.section--white { background: var(--c-surface); }

/* --------------------------------------------------------------------------
   CARDS
   -------------------------------------------------------------------------- */
.card {
  background: var(--c-navy-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.card:hover {
  border-color: var(--c-border-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.card--light {
  background: var(--c-surface);
  border-color: var(--c-border-light);
}
.card--light:hover {
  border-color: #C8D0DD;
  box-shadow: 0 8px 32px rgba(15,23,41,0.08);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--c-blue-dim);
  border: 1px solid rgba(29,95,240,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--c-cyan);
  flex-shrink: 0;
}

.card__title {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: 0.625rem;
}
.card--light .card__title { color: var(--c-text); }

.card__body {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--c-muted);
}
.card--light .card__body { color: var(--c-text-soft); }

/* --------------------------------------------------------------------------
   TECHLINE — separador técnico decorativo
   -------------------------------------------------------------------------- */
.techline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.techline::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-cyan));
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   GRID UTILS
   -------------------------------------------------------------------------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 767px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-navy-2);
  border-top: 1px solid var(--c-border);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 1.5rem;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-white);
  margin-bottom: 0.875rem;
  line-height: 1;
}
.footer-logo-text em { font-style: normal; color: var(--c-cyan); }

.footer-desc {
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--c-muted);
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 1.125rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-links a {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--c-white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-bottom: 0.625rem;
  line-height: 1.5;
}
.footer-contact-item a { color: var(--c-muted); }
.footer-contact-item a:hover { color: var(--c-white); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--c-muted);
  letter-spacing: 0.02em;
}

.footer-social {
  display: flex;
  gap: 0.625rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-sm);
  color: var(--c-muted);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.footer-social a:hover {
  border-color: var(--c-blue);
  color: var(--c-white);
  background: var(--c-blue-dim);
}

/* --------------------------------------------------------------------------
   FORMULÁRIO
   -------------------------------------------------------------------------- */
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.form-label { font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-muted-light); }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: var(--fs-base);
  font-family: var(--font-body);
  color: var(--c-white);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
}
.form-control::placeholder { color: var(--c-muted); }
.form-control:focus {
  outline: none;
  background: rgba(255,255,255,0.07);
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(29,95,240,0.15);
}
textarea.form-control { min-height: 120px; resize: vertical; }

/* --------------------------------------------------------------------------
   CONTEÚDO EDITORIAL
   -------------------------------------------------------------------------- */
.entry-content { max-width: 720px; margin: 0 auto; color: var(--c-text); }
.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--c-text);
  margin-top: 2rem;
  margin-bottom: 0.875rem;
}
.entry-content p { color: var(--c-text-soft); margin-bottom: 1.25rem; }
.entry-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.entry-content li { margin-bottom: 0.375rem; color: var(--c-text-soft); }
.entry-content a { color: var(--c-blue); text-decoration: underline; }
.entry-content blockquote {
  border-left: 3px solid var(--c-blue);
  padding: 0.875rem 1.25rem;
  background: var(--c-blue-dim);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--c-text-soft);
}
.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--c-blue-dim);
  color: var(--c-blue);
  padding: 0.15em 0.4em;
  border-radius: var(--r-sm);
}
.entry-content pre {
  background: var(--c-navy-2);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.entry-content pre code { background: none; color: var(--c-cyan); padding: 0; }
.entry-content img { border-radius: var(--r-md); margin: 1.5rem 0; }
.entry-content hr { border: none; border-top: 1px solid var(--c-border-light); margin: 2rem 0; }
.entry-content table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: var(--fs-sm); }
.entry-content th, .entry-content td { padding: 0.625rem 0.875rem; border: 1px solid var(--c-border-light); }
.entry-content th { background: var(--c-bg-light); font-weight: 600; }

/* --------------------------------------------------------------------------
   PÁGINA 404
   -------------------------------------------------------------------------- */
.error-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70vh;
  padding: 5rem var(--container-pad);
  color: var(--c-white);
}
.error-404__code {
  font-family: var(--font-mono);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 400;
  color: var(--c-blue);
  opacity: 0.18;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.05em;
}
.error-404__label { font-family: var(--font-mono); font-size: var(--fs-xs); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-cyan); margin-bottom: 0.75rem; }
.error-404 h1 { font-size: var(--fs-2xl); margin-bottom: 0.875rem; }
.error-404 p { color: var(--c-muted); margin-bottom: 2rem; max-width: 360px; }

/* --------------------------------------------------------------------------
   WORDPRESS OBRIGATÓRIOS
   -------------------------------------------------------------------------- */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background: var(--c-surface); border-radius: var(--r-sm);
  box-shadow: var(--shadow-md); clip: auto !important; clip-path: none;
  color: var(--c-text); display: block; font-size: var(--fs-sm); font-weight: 600;
  height: auto; left: 1rem; line-height: normal; padding: 0.875rem 1.25rem;
  text-decoration: none; top: 1rem; width: auto; z-index: 100000;
}
.skip-link { position: absolute; top: -9999px; left: 0; z-index: 999999; background: var(--c-blue); color: #fff; padding: 0.75rem 1.25rem; font-size: var(--fs-sm); font-weight: 600; }
.skip-link:focus { top: 0; }
.alignleft { float: left; margin: 0.25em 1.5em 1em 0; }
.alignright { float: right; margin: 0.25em 0 1em 1.5em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.alignwide { margin-left: -2rem; margin-right: -2rem; }
.alignfull { margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); max-width: 100vw; }

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  :root { --container-pad: 1.5rem; }
}

@media (min-width: 1024px) {
  :root { --container-pad: 2rem; }
  .main-nav { display: flex; }
  .header-actions { display: flex; }
  .nav-toggle { display: none; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* --------------------------------------------------------------------------
   ELEMENTOR COMPAT
   -------------------------------------------------------------------------- */
body.elementor-page .site-content > .container { max-width: 100%; padding: 0; }
.elementor-section.elementor-section-stretched { left: 0 !important; width: 100% !important; }
.elementor-page .entry-content { max-width: 100%; margin: 0; }
body.elementor-template-canvas .site-header,
body.elementor-template-canvas .site-footer { display: none; }

/* --------------------------------------------------------------------------
   ANIMAÇÕES
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
}

/* --------------------------------------------------------------------------
   PRINT
   -------------------------------------------------------------------------- */
@media print {
  .site-header, .site-footer, .nav-toggle, .mobile-nav { display: none !important; }
  body { font-size: 12pt; color: #000; background: #fff; }
}
