/* ═══════════════════════════════════════════════════════════════════════════
   EZEN LP V2 — Complete Stylesheet
   ═══════════════════════════════════════════════════════════════════════════ */

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body.ezen-lp {
    font-family: var(--ezen-font-body); color: var(--ezen-text); background: var(--ezen-bg);
    font-size: var(--ezen-base-size); line-height: var(--ezen-body-lh); font-weight: var(--ezen-body-weight);
    overflow-x: hidden;
}
a { color: var(--ezen-link); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ezen-link-hover); }
ul, ol { list-style: none; } img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* Container & Section */
.ezen-container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.ezen-section { padding: calc(100px * var(--ezen-spacing)) 0; }
.ezen-width-narrow .ezen-container { max-width: 700px; }
.ezen-width-wide .ezen-container { max-width: 1280px; }
.ezen-width-full .ezen-container { max-width: 100%; }
.ezen-align-center { text-align: center; }
.ezen-align-right { text-align: right; }
.ezen-border-line-top { border-top: 1px solid rgba(0,0,0,0.06); }
.ezen-border-line-bottom { border-bottom: 1px solid rgba(0,0,0,0.06); }
.ezen-border-shadow { box-shadow: 0 -1px 20px rgba(0,0,0,0.04); }
.ezen-hide-desktop { }
.ezen-hide-mobile { }

/* Reveal Animations */
.ezen-reveal { opacity: 0; transform: translateY(30px); transition: opacity var(--ezen-anim-speed) cubic-bezier(0.16,1,0.3,1), transform var(--ezen-anim-speed) cubic-bezier(0.16,1,0.3,1); }
.ezen-reveal.revealed { opacity: 1; transform: translateY(0); }
body[data-animations="fade-in"] .ezen-reveal { transform: none; }
body[data-animations="slide-left"] .ezen-reveal { transform: translateX(-30px); }
body[data-animations="slide-left"] .ezen-reveal.revealed { transform: translateX(0); }
body[data-animations="slide-right"] .ezen-reveal { transform: translateX(30px); }
body[data-animations="slide-right"] .ezen-reveal.revealed { transform: translateX(0); }
body[data-animations="scale"] .ezen-reveal { transform: scale(0.95); }
body[data-animations="scale"] .ezen-reveal.revealed { transform: scale(1); }
body[data-animations="none"] .ezen-reveal { opacity: 1; transform: none; transition: none; }

/* Shared title */
.ezen-section-title {
    font-family: var(--ezen-font-heading); font-size: clamp(1.5rem,3vw,2.25rem);
    font-weight: var(--ezen-heading-weight); letter-spacing: var(--ezen-heading-ls);
    line-height: var(--ezen-heading-lh); margin-bottom: calc(48px * var(--ezen-spacing));
}
.ezen-section-subtitle { font-size: 1.0625rem; color: var(--ezen-text-light); max-width: 500px; margin-bottom: 40px; }
.ezen-align-center .ezen-section-subtitle { margin-left: auto; margin-right: auto; }

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.ezen-nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 20px 0; transition: background 0.4s, padding 0.4s, box-shadow 0.4s; }
.ezen-nav.scrolled { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 0; box-shadow: 0 1px 0 rgba(0,0,0,0.05); }
.ezen-nav .ezen-container { display: flex; align-items: center; justify-content: space-between; }
.ezen-logo-text { font-family: 'Open Sans', var(--ezen-font-heading); font-weight: 800; font-size: 1.5rem; color: var(--ezen-primary); letter-spacing: -0.02em; }
.ezen-logo-img { height: 32px; width: auto; }
.ezen-nav-cta { font-size: 0.875rem; font-weight: 500; color: var(--ezen-text); padding: 10px 24px; border: 1px solid rgba(0,0,0,0.12); border-radius: var(--ezen-btn-radius); transition: all 0.3s; }
.ezen-nav-cta:hover { background: var(--ezen-primary); border-color: var(--ezen-primary); color: white; }

/* ─── CTA Button ──────────────────────────────────────────────────────── */
.ezen-cta {
    display: inline-flex; align-items: center; gap: 12px; font-size: 1rem; font-weight: 600;
    color: var(--ezen-btn-text); background: var(--ezen-btn-bg); padding: 16px 36px;
    border-radius: var(--ezen-btn-radius); transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.ezen-cta:hover { background: var(--ezen-btn-hover); color: var(--ezen-btn-text); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(227,102,33,0.3); }
.ezen-cta svg { transition: transform 0.3s; }
.ezen-cta:hover svg { transform: translateX(4px); }
.ezen-cta-secondary { background: transparent; color: var(--ezen-text); border: 1.5px solid rgba(0,0,0,0.15); }
.ezen-cta-secondary:hover { background: rgba(0,0,0,0.04); color: var(--ezen-text); box-shadow: none; transform: none; }

/* ─── HERO ─────────────────────────────────────────────────────────────── */
.ezen-hero { min-height: 100vh; display: flex; align-items: center; padding-top: 120px; }
.ezen-hero-inner { max-width: 800px; }
.ezen-hero-split .ezen-hero-inner { max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ezen-hero-center .ezen-hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.ezen-hero-center .ezen-hero-subtitle { margin-left: auto; margin-right: auto; }
.ezen-hero-center .ezen-hero-actions { justify-content: center; }
.ezen-hero-badge { display: inline-block; padding: 6px 16px; background: rgba(227,102,33,0.08); color: var(--ezen-primary); font-size: 0.8125rem; font-weight: 600; border-radius: 100px; margin-bottom: 20px; letter-spacing: 0.02em; }
.ezen-hero-title { font-family: var(--ezen-font-heading); font-size: clamp(2.25rem,5vw,3.75rem); font-weight: var(--ezen-heading-weight); line-height: var(--ezen-heading-lh); letter-spacing: var(--ezen-heading-ls); margin-bottom: 24px; }
.ezen-hero-subtitle { font-size: clamp(1rem,2vw,1.25rem); color: var(--ezen-text-light); line-height: 1.7; max-width: 560px; margin-bottom: 40px; }
.ezen-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.ezen-hero-media img { border-radius: var(--ezen-radius); width: 100%; }
.ezen-video-wrap { position: relative; padding-bottom: 56.25%; border-radius: var(--ezen-radius); overflow: hidden; }
.ezen-video-wrap iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }

/* ─── DIAGNOSTICO ──────────────────────────────────────────────────────── */
.ezen-diagnostico-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 32px; }
.ezen-diagnostico-card { padding: 36px 32px; background: var(--ezen-bg); border-radius: var(--ezen-radius); border: 1px solid rgba(0,0,0,0.04); transition: box-shadow 0.3s; }
.ezen-diagnostico-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.ezen-diagnostico-icon { font-size: 1.5rem; margin-bottom: 12px; }
.ezen-diagnostico-num { font-family: var(--ezen-font-heading); font-size: 0.8rem; font-weight: 600; color: var(--ezen-primary); margin-bottom: 16px; letter-spacing: 0.05em; }
.ezen-diagnostico-card h3 { font-family: var(--ezen-font-heading); font-size: 1.125rem; font-weight: 600; line-height: 1.4; margin-bottom: 8px; }
.ezen-diagnostico-card p { font-size: 0.9375rem; color: var(--ezen-text-light); line-height: 1.6; }
/* Accordion layout */
.ezen-diag-accordion .ezen-diagnostico-card { cursor: pointer; }
/* List layout */
.ezen-diag-list { display: flex; flex-direction: column; gap: 16px; max-width: 640px; }
.ezen-diag-list .ezen-diagnostico-card { display: flex; gap: 20px; align-items: flex-start; }

/* ─── SOBRE ────────────────────────────────────────────────────────────── */
.ezen-sobre-inner { max-width: 700px; margin: 0 auto; }
/* Keep body text left-aligned for readability even when section is center-aligned */
.ezen-sobre-text { text-align: left; }
.ezen-sobre-text-image .ezen-sobre-inner { max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.ezen-sobre-badge { display: inline-block; padding: 6px 16px; background: rgba(227,102,33,0.08); color: var(--ezen-primary); font-size: 0.8125rem; font-weight: 600; border-radius: 100px; margin-bottom: 16px; }
.ezen-sobre-brand { font-family: 'Open Sans', var(--ezen-font-heading); font-size: clamp(3rem,8vw,6rem); font-weight: 800; color: var(--ezen-primary); letter-spacing: -0.04em; margin-bottom: 32px; }
.ezen-sobre-text { font-size: 1.0625rem; line-height: 1.85; color: var(--ezen-text-light); }
.ezen-sobre-text strong { color: var(--ezen-text); font-weight: 600; }
.ezen-sobre-media img { border-radius: var(--ezen-radius); width: 100%; }

/* ─── SERVICOS ─────────────────────────────────────────────────────────── */
.ezen-servicos-grid { display: grid; gap: 48px; }
/* Keep column content left-aligned even when section is centered */
.ezen-servicos .ezen-section-title { text-align: center; } /* title always centered, table stays left */
.ezen-servicos-grid { max-width: 860px; margin-left: auto; margin-right: auto; } /* center the grid block under the title */
.ezen-servicos-col { text-align: left; }
.ezen-servicos-icon { font-size: 1.5rem; margin-bottom: 12px; }
.ezen-servicos-col-title { font-family: var(--ezen-font-heading); font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ezen-primary); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--ezen-primary); display: inline-block; }
.ezen-servicos-list li { font-size: 1rem; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.05); transition: padding-left 0.3s, color 0.3s; }
.ezen-servicos-list li:hover { padding-left: 8px; color: var(--ezen-primary); }
.ezen-list-checks li::before { content: '✓'; color: var(--ezen-primary); margin-right: 10px; font-weight: 700; }
.ezen-list-bullets li::before { content: '•'; color: var(--ezen-primary); margin-right: 10px; }
.ezen-list-dashes li::before { content: '—'; color: var(--ezen-text-light); margin-right: 10px; }

/* ─── NUMEROS ──────────────────────────────────────────────────────────── */
.ezen-numeros { border-top: 1px solid rgba(0,0,0,0.06); border-bottom: 1px solid rgba(0,0,0,0.06); }

/* Horizontal layout: flex row, each stat takes equal space */
.ezen-numeros-grid {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.ezen-stat {
    flex: 1;
    padding: 0 40px;
    border-right: 1px solid rgba(0,0,0,0.08);
}
.ezen-stat:first-child { padding-left: 0; }
.ezen-stat:last-child  { padding-right: 0; border-right: none; }

/* Vertical layout override */
.ezen-numeros-vertical .ezen-numeros-grid { flex-direction: column; max-width: 500px; }
.ezen-numeros-vertical .ezen-stat { padding: 32px 0; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); }
.ezen-numeros-vertical .ezen-stat:first-child { padding-top: 0; }
.ezen-numeros-vertical .ezen-stat:last-child  { padding-bottom: 0; border-bottom: none; }

/* Stat content: number stacked above unit */
.ezen-stat-value { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.ezen-stat-number {
    font-family: var(--ezen-font-heading);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--ezen-primary);
    letter-spacing: -0.03em;
    line-height: 1;
    white-space: nowrap;
}
.ezen-stat-unit {
    font-family: var(--ezen-font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ezen-text-light);
    white-space: nowrap;
}
.ezen-stat-desc { font-size: 0.9375rem; color: var(--ezen-text-light); line-height: 1.6; }

/* ─── FAQ ──────────────────────────────────────────────────────────────── */
.ezen-faq-list { max-width: 700px; margin: 0 auto; }
.ezen-faq-question { text-align: left; } /* keep question text left regardless of section alignment */
.ezen-faq-item { border-bottom: 1px solid rgba(0,0,0,0.06); }
.ezen-faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 1.0625rem; font-weight: 600; font-family: var(--ezen-font-heading); text-align: left; color: var(--ezen-text); background: none; cursor: pointer; }
.ezen-faq-question svg { transition: transform 0.3s; color: var(--ezen-text-light); flex-shrink: 0; }
.ezen-faq-item.open .ezen-faq-question svg { transform: rotate(180deg); }
.ezen-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); text-align: left; }
.ezen-faq-item.open .ezen-faq-answer { max-height: 500px; }
.ezen-faq-answer p { padding: 0 0 20px; color: var(--ezen-text-light); line-height: 1.7; font-size: 0.9375rem; }

/* ─── CTA BANNER ──────────────────────────────────────────────────────── */
.ezen-cta-banner { background: var(--ezen-surface); }
.ezen-cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.ezen-cta-banner-inner h2 { font-family: var(--ezen-font-heading); font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 700; }
.ezen-align-center .ezen-cta-banner-inner { justify-content: center; flex-direction: column; align-items: center; }
/* When bg is set inline (e.g. brand color), flip text to white */
.ezen-cta-banner[style*="background"] .ezen-cta-banner-inner h2 { color: #fff; }
.ezen-cta-banner[style*="background"] .ezen-cta { background: #fff; color: var(--ezen-primary); }

/* ─── FORMULARIO ──────────────────────────────────────────────────────── */
.ezen-form-wrap { max-width: 560px; background: var(--ezen-bg); border-radius: calc(var(--ezen-radius) * 2); padding: 48px 40px; text-align: left; }
.ezen-form-pos-center { margin: 0 auto; }
.ezen-form-pos-right { margin-left: auto; }
.ezen-form-card-bordered { border: 1px solid rgba(0,0,0,0.06); }
.ezen-form-card-shadow { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }
.ezen-form-card-glass { background: rgba(255,255,255,0.7); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.3); }
.ezen-form-card-none { background: transparent; padding: 0; }

/* Progress */
.ezen-form-progress { margin-bottom: 36px; }
.ezen-form-progress-bar { height: 3px; background: rgba(0,0,0,0.06); border-radius: 100px; overflow: hidden; margin-bottom: 12px; position: relative; }
.ezen-form-progress-bar::after { content: ''; position: absolute; top: 0; left: 0; height: 100%; width: var(--progress, 0%); background: var(--ezen-primary); border-radius: 100px; transition: width 0.5s cubic-bezier(0.16,1,0.3,1); }
.ezen-progress-none { display: none; }
.ezen-progress-dots .ezen-form-progress-bar { display: none; }
.ezen-form-steps-indicator { display: flex; gap: 8px; font-size: 0.8125rem; color: var(--ezen-text-light); }
.ezen-form-steps-indicator .current-step { color: var(--ezen-primary); font-weight: 600; }

/* Steps */
.ezen-form-step { display: none; animation: ezenSlideIn 0.4s cubic-bezier(0.16,1,0.3,1); }
.ezen-form-step.active { display: block; }
@keyframes ezenSlideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes ezenFadeIn { from { opacity: 0; } to { opacity: 1; } }
.ezen-form-step-title { font-family: var(--ezen-font-heading); font-size: 1.25rem; font-weight: 600; margin-bottom: 4px; }
.ezen-form-step-desc { font-size: 0.875rem; color: var(--ezen-text-light); margin-bottom: 28px; }

/* Fields */
.ezen-field { margin-bottom: 20px; }
.ezen-field label { display: block; font-size: 0.8125rem; font-weight: 500; margin-bottom: 6px; }
.ezen-field label .required-mark { color: var(--ezen-primary); margin-left: 2px; }
.ezen-field input[type="text"], .ezen-field input[type="email"], .ezen-field input[type="tel"],
.ezen-field input[type="url"], .ezen-field input[type="number"], .ezen-field select, .ezen-field textarea {
    width: 100%; padding: 12px 16px; border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--ezen-radius);
    font-size: 0.9375rem; color: var(--ezen-text); background: var(--ezen-bg); outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.ezen-field input:focus, .ezen-field select:focus, .ezen-field textarea:focus { border-color: var(--ezen-primary); box-shadow: 0 0 0 3px rgba(227,102,33,0.1); }
.ezen-field input::placeholder, .ezen-field textarea::placeholder { color: rgba(0,0,0,0.25); }
.ezen-field input.error, .ezen-field select.error, .ezen-field textarea.error { border-color: var(--ezen-error); box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }
.ezen-field .field-error { font-size: 0.75rem; color: var(--ezen-error); margin-top: 4px; display: none; }
.ezen-field .field-error.visible { display: block; }
.ezen-field textarea { min-height: 100px; resize: vertical; }
.ezen-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

/* Checkboxes */
.ezen-checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.ezen-checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; padding: 10px 14px; border: 1.5px solid rgba(0,0,0,0.08); border-radius: var(--ezen-radius); transition: all 0.2s; font-size: 0.9375rem; }
.ezen-checkbox-item:hover { border-color: rgba(0,0,0,0.15); }
.ezen-checkbox-item.checked { border-color: var(--ezen-primary); background: rgba(227,102,33,0.04); }
.ezen-checkbox-item input[type="checkbox"] { display: none; }
.ezen-checkbox-mark { width: 20px; height: 20px; border-radius: 4px; border: 1.5px solid rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; }
.ezen-checkbox-item.checked .ezen-checkbox-mark { background: var(--ezen-primary); border-color: var(--ezen-primary); }
.ezen-checkbox-mark svg { opacity: 0; transition: opacity 0.2s; }
.ezen-checkbox-item.checked .ezen-checkbox-mark svg { opacity: 1; }

/* Range slider */
.ezen-range-wrap { display: flex; flex-direction: column; gap: 8px; }
.ezen-range-value { font-size: 1.25rem; font-weight: 700; color: var(--ezen-primary); }
.ezen-range-wrap input[type="range"] { width: 100%; accent-color: var(--ezen-primary); }

/* Form nav */
.ezen-form-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.ezen-form-btn-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.875rem; font-weight: 500; color: var(--ezen-text-light); padding: 12px 20px; border-radius: var(--ezen-btn-radius); transition: color 0.2s; }
.ezen-form-btn-back:hover { color: var(--ezen-text); }
.ezen-form-btn-next { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: 600; color: var(--ezen-btn-text); background: var(--ezen-btn-bg); padding: 14px 32px; border-radius: var(--ezen-btn-radius); transition: all 0.3s; margin-left: auto; }
.ezen-form-btn-next:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(227,102,33,0.3); }
.ezen-form-btn-next:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

/* Success */
.ezen-form-success { text-align: center; padding: 40px 20px; }
.ezen-form-success-icon { margin-bottom: 24px; animation: ezenPulse 2s ease-in-out infinite; }
@keyframes ezenPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.ezen-form-success h3 { font-family: var(--ezen-font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.ezen-form-success p { color: var(--ezen-text-light); font-size: 1rem; }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.ezen-footer { padding: calc(60px * var(--ezen-spacing)) 0; border-top: 1px solid rgba(0,0,0,0.06); }
.ezen-footer-center .ezen-footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 20px; }
.ezen-footer-center .ezen-footer-links { align-items: center; }
.ezen-footer-center .ezen-footer-social { justify-content: center; }
.ezen-footer-2col .ezen-footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.ezen-footer-3col .ezen-footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; }
.ezen-footer-tagline { font-size: 0.875rem; color: var(--ezen-text-light); margin-top: 4px; }
.ezen-footer-links { display: flex; flex-direction: column; gap: 8px; }
.ezen-footer-links a { font-size: 0.875rem; color: var(--ezen-text-light); }
.ezen-footer-links a:hover { color: var(--ezen-primary); }
.ezen-footer-social { display: flex; gap: 16px; }
.ezen-footer-social a { color: var(--ezen-text-light); }
.ezen-footer-social a:hover { color: var(--ezen-primary); }
.ezen-footer-bottom { width: 100%; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.04); }
.ezen-footer-bottom small { font-size: 0.75rem; color: rgba(0,0,0,0.3); }

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────────── */
.ezen-wa-float { position: fixed; bottom: 24px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(0,0,0,0.2); opacity: 0; transform: scale(0.8); transition: all 0.4s cubic-bezier(0.16,1,0.3,1); }
.ezen-wa-float.visible { opacity: 1; transform: scale(1); }
.ezen-wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(0,0,0,0.25); }
.ezen-wa-right { right: 24px; }
.ezen-wa-left { left: 24px; }

/* ─── POPUP ───────────────────────────────────────────────────────────── */
.ezen-popup { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; }
.ezen-popup-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.ezen-popup-content { position: relative; max-width: 480px; width: 90%; border-radius: calc(var(--ezen-radius) * 2); padding: 40px; text-align: center; box-shadow: 0 24px 80px rgba(0,0,0,0.2); animation: ezenPopIn 0.4s cubic-bezier(0.16,1,0.3,1); }
@keyframes ezenPopIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.ezen-popup-close { position: absolute; top: 12px; right: 12px; width: 32px; height: 32px; border-radius: 50%; background: rgba(0,0,0,0.05); font-size: 1.25rem; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.ezen-popup-close:hover { background: rgba(0,0,0,0.1); }
.ezen-popup-img { border-radius: var(--ezen-radius); margin-bottom: 20px; }
.ezen-popup-content h3 { font-family: var(--ezen-font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 8px; }
.ezen-popup-content p { color: var(--ezen-text-light); margin-bottom: 24px; }
.ezen-popup-cta { width: 100%; justify-content: center; }

/* ─── COOKIE CONSENT ──────────────────────────────────────────────────── */
.ezen-cookie { position: fixed; left: 0; right: 0; z-index: 150; background: #1a1a1a; color: white; padding: 16px 24px; animation: ezenSlideUp 0.5s cubic-bezier(0.16,1,0.3,1); }
.ezen-cookie-bottom { bottom: 0; }
.ezen-cookie-top { top: 0; }
@keyframes ezenSlideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
.ezen-cookie-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.ezen-cookie-inner p { font-size: 0.8125rem; color: rgba(255,255,255,0.8); flex: 1; min-width: 240px; margin: 0; }
.ezen-cookie-inner p a { color: white; text-decoration: underline; }
.ezen-cookie-actions { display: flex; gap: 8px; }
.ezen-cookie .ezen-cta { padding: 10px 24px; font-size: 0.8125rem; }
.ezen-cookie-reject { background: transparent; color: rgba(255,255,255,0.5); font-size: 0.8125rem; padding: 10px 16px; cursor: pointer; transition: color 0.2s; }
.ezen-cookie-reject:hover { color: white; }

/* ─── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .ezen-hero { min-height: auto; padding-top: 140px; padding-bottom: 60px; }
    .ezen-section { padding: calc(60px * var(--ezen-spacing)) 0; }
    .ezen-hero-split .ezen-hero-inner { grid-template-columns: 1fr; }
    .ezen-sobre-text-image .ezen-sobre-inner { grid-template-columns: 1fr; }
    .ezen-form-wrap { padding: 32px 24px; }
    .ezen-nav-cta { font-size: 0.8125rem; padding: 8px 18px; }
    .ezen-diagnostico-grid { grid-template-columns: 1fr; }
    .ezen-numeros-grid { flex-direction: column; gap: 0; }
    .ezen-stat { padding: 28px 0 !important; border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.08); }
    .ezen-stat:first-child { padding-top: 0 !important; }
    .ezen-stat:last-child  { border-bottom: none; padding-bottom: 0 !important; }
    .ezen-servicos-grid { grid-template-columns: 1fr !important; gap: 36px; }
    .ezen-footer-2col .ezen-footer-inner,
    .ezen-footer-3col .ezen-footer-inner { grid-template-columns: 1fr; text-align: center; }
    .ezen-cta-banner-inner { flex-direction: column; text-align: center; }
    .ezen-hide-mobile { display: none !important; }
}
@media (min-width: 769px) { .ezen-hide-desktop { display: none !important; } }
@media (max-width: 480px) {
    .ezen-container { padding: 0 16px; }
    .ezen-hero-title { font-size: 2rem; }
    .ezen-form-wrap { padding: 24px 18px; }
}
