/* ══════════════════════════════════════════
   SEVEN SAÚDE — Design System
   Awwwards-level, GSAP-powered, mobile-first
   ══════════════════════════════════════════ */

/* ═══ TOKENS ═══ */
:root {
  --green: #3AA043;
  --green-dark: #2D8035;
  --green-pale: #E8F5E9;
  --green-glow: rgba(58, 160, 67, 0.25);
  --blue: #004C8D;
  --blue-dark: #003366;
  --dark: #0A1628;
  --dark-soft: #0F2035;
  --text: #1a2332;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-green-soft: #f0f7f1;
  --gradient-brand: linear-gradient(135deg, #3AA043 0%, #004C8D 100%);
  --gradient-dark: linear-gradient(135deg, #003870 0%, #0A1628 45%, #1B4D1E 100%);
  --gradient-glow: radial-gradient(ellipse at 50% 0%, rgba(58,160,67,0.08) 0%, transparent 60%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-green: 0 8px 32px rgba(58,160,67,0.25);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }
body { font-family: 'Sora', sans-serif; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg-white); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ═══ UTILITY ═══ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }
.text-gradient { background: var(--gradient-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.text-gradient-light { background: linear-gradient(135deg, #5DD66B 0%, #66B8FF 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.overline { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 12px; }
.badge { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; }
.badge--green { color: #5DD66B; background: none; border: none; position: relative; padding: 0; }
.badge--green::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #5DD66B; margin-right: 8px; animation: badge-pulse 2s ease-in-out infinite; }
@keyframes badge-pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(58,160,67,0.4); } 50% { opacity: 0.8; box-shadow: 0 0 0 6px rgba(58,160,67,0); } }
.badge--outline { border: 1px solid var(--green); color: var(--green); background: transparent; font-size: 0.7rem; padding: 4px 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; }

/* ═══ BUTTONS ═══ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; font-size: 0.9375rem; font-weight: 700; border-radius: var(--radius-sm); transition: all 0.3s var(--ease-smooth); white-space: nowrap; cursor: pointer; }
.btn--sm { padding: 10px 22px; font-size: 0.875rem; }
.btn--lg { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }
.btn--primary { background: var(--green); color: white; box-shadow: 0 4px 16px var(--green-glow); }
.btn--primary:hover { background: var(--green-dark); box-shadow: 0 8px 32px var(--green-glow); transform: translateY(-2px); }
.btn--glow { animation: btn-glow 2.5s ease-in-out infinite; }
@keyframes btn-glow { 0%,100%{ box-shadow: 0 4px 16px var(--green-glow); } 50%{ box-shadow: 0 4px 32px rgba(58,160,67,0.4), 0 0 0 8px rgba(58,160,67,0.06); } }
.btn--glow:hover { animation: none; }
.btn--outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; padding: 14px 32px; font-size: 0.9375rem; }
.btn--outline:hover { background: var(--blue); color: white; }
.btn--ghost { border: 1.5px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); padding: 12px 24px; border-radius: var(--radius-full); font-size: 0.9375rem; font-weight: 600; }
.btn--ghost:hover { border-color: rgba(255,255,255,0.6); color: white; background: rgba(255,255,255,0.06); }

/* ═══ GLASS ═══ */
.glass { background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.6); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.glass--dark { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08); backdrop-filter: blur(16px); }

/* ═══ FORMS ═══ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8125rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 14px 18px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.9375rem; color: var(--text); background: white; transition: border-color 0.2s, box-shadow 0.2s; outline: none; width: 100%; box-sizing: border-box; font-family: inherit; }
/* Select customizado — appearance: none + seta SVG própria para alinhar igual aos inputs */
.form-group select { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; cursor: pointer; }
/* Forçar opções do dropdown sempre legíveis (texto escuro em fundo branco) */
.form-group select option { color: #1a2332 !important; background: #ffffff !important; }
.form-group select option:disabled, .form-group select option[value=""] { color: #94a3b8 !important; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green); box-shadow: 0 0 0 4px rgba(58,160,67,0.1); }
.form-group textarea { resize: vertical; min-height: 80px; }
.glass--dark .form-group label { color: rgba(255,255,255,0.65); }
.glass--dark .form-group input, .glass--dark .form-group select, .glass--dark .form-group textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: white; }
.glass--dark .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); }
.glass--dark .form-group input::placeholder, .glass--dark .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.glass--dark .form-group input:focus, .glass--dark .form-group select:focus { border-color: rgba(58,160,67,0.5); box-shadow: 0 0 0 4px rgba(58,160,67,0.12); }

/* ═══ HEADER ═══ */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: all 0.4s var(--ease-smooth); box-shadow: 0 1px 0 rgba(0,0,0,0.04); }
.header.scrolled { background: rgba(255,255,255,0.98); box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header__inner { display: flex; align-items: center; justify-content: space-between; max-width: 1400px; margin: 0 auto; padding: 0 48px; height: var(--header-h); }
.header__logo img { height: 40px; width: auto; transition: opacity 0.3s; }
.header__logo:hover img { opacity: 0.8; }
.header__nav { display: flex; gap: 36px; }
.header__link { font-size: 0.9375rem; font-weight: 600; color: var(--text); position: relative; transition: color 0.3s; }
.header__link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--green); border-radius: 2px; transition: width 0.3s var(--ease-spring); }
.header__link:hover { color: var(--green); }
.header__link:hover::after { width: 100%; }
.header__actions { display: flex; align-items: center; gap: 20px; }
.header__phone { display: flex; align-items: center; gap: 6px; font-size: 0.875rem; font-weight: 600; color: var(--text); transition: color 0.3s; }
.header__phone svg { color: var(--green); }
.header__phone:hover { color: var(--green); }
.header__burger { display: none; width: 32px; height: 24px; flex-direction: column; justify-content: space-between; }
.header__burger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ═══ HERO ═══ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: calc(var(--header-h) + 48px) 0 80px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: var(--dark); }
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.hero__video-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(0,56,112,0.7) 50%, rgba(29,77,30,0.6) 100%); }
.hero__gradient { position: absolute; inset: 0; background: radial-gradient(ellipse at 60% 40%, rgba(58,160,67,0.1) 0%, transparent 60%); }
.hero__particles { position: absolute; inset: 0; z-index: 1; }
.hero__shape { position: absolute; border-radius: 50%; opacity: 0.5; filter: blur(100px); }
.hero__shape--1 { top: -20%; right: -10%; width: 600px; height: 600px; background: rgba(58,160,67,0.15); }
.hero__shape--2 { bottom: -10%; left: -5%; width: 400px; height: 400px; background: rgba(0,76,141,0.12); }
.hero__shape--3 { top: 30%; right: 20%; width: 300px; height: 300px; background: rgba(58,160,67,0.08); }
.hero__content { position: relative; z-index: 2; text-align: center; max-width: 820px; margin: 0 auto; }
.hero__badge { margin-bottom: 24px; }
.hero__title { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 800; line-height: 1.08; color: #ffffff; margin-bottom: 24px; letter-spacing: -0.02em; text-shadow: 0 2px 40px rgba(0,0,0,0.15); }
.hero__subtitle { font-size: clamp(1rem, 2vw, 1.125rem); color: rgba(255,255,255,0.7); max-width: 640px; margin: 0 auto 40px; }
.hero__subtitle strong { color: rgba(255,255,255,0.95); }
.hero__form { padding: 24px 32px 32px; max-width: 880px; margin: 0 auto 20px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); text-align: left; border-radius: 24px; }

/* ═══ FORM TABS (tema claro - usado no /orcamento) ═══ */
.form-tabs { display: flex; gap: 0; margin-bottom: 24px; padding: 4px; background: var(--bg-light); border-radius: 12px; border: 1px solid var(--border); }
.form-tab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; font-family: inherit; font-size: 0.9rem; font-weight: 600; color: var(--text-muted); background: transparent; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s var(--ease-smooth); }
.form-tab:hover { color: var(--text); }
.form-tab.is-active { background: var(--green); color: white; box-shadow: 0 4px 16px rgba(58,160,67,0.25); }
.form-tab svg { flex-shrink: 0; }
.form-tab-panel { display: none; animation: fadeInPanel 0.3s var(--ease-smooth); }
.form-tab-panel.is-active { display: block; }
@media (max-width: 480px) {
  .form-tab { font-size: 0.8125rem; padding: 10px 8px; gap: 4px; }
  .form-tab svg { width: 16px; height: 16px; }
}

/* ═══ HERO TABS ═══ */
.hero__tabs { display: flex; gap: 0; margin-bottom: 24px; padding: 4px; background: rgba(0,0,0,0.18); border-radius: 12px; border: 1px solid rgba(255,255,255,0.08); }
.hero__tab { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; font-family: inherit; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.6); background: transparent; border: none; border-radius: 8px; cursor: pointer; transition: all 0.3s var(--ease-smooth); }
.hero__tab:hover { color: rgba(255,255,255,0.85); }
.hero__tab.is-active { background: var(--green); color: white; box-shadow: 0 4px 16px rgba(58,160,67,0.3); }
.hero__tab svg { flex-shrink: 0; opacity: 0.9; }
.hero__tab-panel { display: none; animation: fadeInPanel 0.3s var(--ease-smooth); }
.hero__tab-panel.is-active { display: block; }
@keyframes fadeInPanel { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 480px) {
  .hero__tab { font-size: 0.8125rem; padding: 10px 8px; gap: 4px; }
  .hero__tab svg { width: 14px; height: 14px; }
}

/* Multi-step compacto dentro do hero */
.msform__progress--compact { margin-bottom: 20px; }
.msform__progress--compact .msform__progress-bar { height: 4px; background: rgba(255,255,255,0.12); }
.msform__progress--compact .msform__step-lbl { color: rgba(255,255,255,0.7); font-size: 0.7rem; }
.msform__progress--compact .msform__step-num { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.msform__progress--compact .msform__step-nav.is-active .msform__step-lbl,
.msform__progress--compact .msform__step-nav.is-done .msform__step-lbl { color: white; }
.hero__form .msform__nav { border-top-color: rgba(255,255,255,0.1); }
.hero__form .msform__legend { color: #5DD66B; }
.hero__form .form-group label { color: rgba(255,255,255,0.7); }
.hero__form .form-group input, .hero__form .form-group select, .hero__form .form-group textarea { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.12); color: white; }
.hero__form .form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.hero__form .form-group input::placeholder, .hero__form .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.hero__form .form-group input:focus, .hero__form .form-group select:focus, .hero__form .form-group textarea:focus { border-color: rgba(58,160,67,0.5); box-shadow: 0 0 0 4px rgba(58,160,67,0.12); }
.hero__form .form-hint { color: rgba(255,255,255,0.5); }
.hero__form .btn--ghost { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.2); background: transparent; }
.hero__form .btn--ghost:hover { color: white; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.hero__form .form-group label { color: rgba(255,255,255,0.7); }
.hero__form .form-group input, .hero__form .form-group select { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.hero__form .form-group input::placeholder { color: rgba(255,255,255,0.35); }
.hero__form .form-group input:focus, .hero__form .form-group select:focus { border-color: rgba(58,160,67,0.5); box-shadow: 0 0 0 4px rgba(58,160,67,0.12); }
.hero__form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 20px; }
.hero__form .btn { border-radius: 12px; }
.hero__form-micro { display: flex; justify-content: center; gap: 20px; margin-top: 12px; font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.hero__form-micro span { display: flex; align-items: center; gap: 4px; }
.hero__whatsapp { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: 600; color: #25D366; transition: all 0.3s; }
.hero__whatsapp:hover { gap: 12px; }

/* ═══ COUNTERS ═══ */
.counters { background: var(--gradient-dark); padding: 64px 0; position: relative; overflow: hidden; }
.counters::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(58,160,67,0.12) 0%, transparent 70%); animation: float-slow 12s ease-in-out infinite; }
.counters::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,76,141,0.1) 0%, transparent 70%); animation: float-slow 10s ease-in-out infinite 3s; }
.counters .container { position: relative; z-index: 1; }
.counters__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; text-align: center; }
.counter { padding: 20px; position: relative; }
.counter:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.counter__number { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 800; color: var(--green); display: inline; }
.counter__suffix { font-size: clamp(2rem, 4vw, 2.5rem); font-weight: 800; color: var(--green); }
.counter__label { display: block; font-size: 0.9375rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ═══ SECTIONS ═══ */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section--white { background: var(--bg-white); }
.section--light { background: var(--bg-light); }
.section--green-soft { background: var(--bg-green-soft); }

/* Section decorative backgrounds */
.section::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.4; }
.section--white::before { background: radial-gradient(ellipse at 80% 20%, rgba(58,160,67,0.05) 0%, transparent 50%), radial-gradient(ellipse at 20% 80%, rgba(0,76,141,0.04) 0%, transparent 50%); }
.section--light::before { background: radial-gradient(ellipse at 10% 50%, rgba(58,160,67,0.06) 0%, transparent 40%), radial-gradient(ellipse at 90% 30%, rgba(0,76,141,0.05) 0%, transparent 40%), url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%233AA043' opacity='0.07'/%3E%3C/svg%3E"); }
.section--green-soft::before { background: radial-gradient(ellipse at 70% 10%, rgba(58,160,67,0.08) 0%, transparent 45%), radial-gradient(ellipse at 30% 90%, rgba(0,76,141,0.06) 0%, transparent 45%); }

/* Decorative floating shapes per section */
.section::after { content: ''; position: absolute; pointer-events: none; border-radius: 50%; filter: blur(60px); opacity: 0.25; z-index: 0; }
.section:nth-child(odd)::after { top: -80px; right: -120px; width: 350px; height: 350px; background: rgba(58,160,67,0.12); }
.section:nth-child(even)::after { bottom: -80px; left: -120px; width: 300px; height: 300px; background: rgba(0,76,141,0.1); }
.section > .container { position: relative; z-index: 1; }

/* Dot grid pattern for light sections */
.section--light { background-image: radial-gradient(circle, rgba(58,160,67,0.06) 1px, transparent 1px); background-size: 32px 32px; }

/* Subtle diagonal lines for green sections */
.section--green-soft { background-image: repeating-linear-gradient(135deg, transparent, transparent 40px, rgba(58,160,67,0.03) 40px, rgba(58,160,67,0.03) 41px); }
.section__header { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; color: var(--text); letter-spacing: -0.02em; }
.section__cta { text-align: center; margin-top: 56px; }

/* ═══ CARD GRIDS ═══ */
.cards-grid { display: grid; gap: 24px; }
.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ═══ CARDS ═══ */
.card { border-radius: var(--radius-md); transition: all 0.4s var(--ease-spring); }
.card--problem { background: var(--bg-light); border: 1px solid var(--border); padding: 32px 28px; }
.card--problem:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__icon { font-size: 2rem; margin-bottom: 16px; color: var(--green); display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(58,160,67,0.08) 0%, rgba(0,76,141,0.05) 100%); transition: transform 0.35s ease, box-shadow 0.35s ease; transform: translateZ(0); }
.card:hover .card__icon { transform: translateZ(0) scale(1.08); box-shadow: 0 6px 20px rgba(58,160,67,0.15); }
.card__icon img, .card__icon svg { width: 28px; height: 28px; pointer-events: none; }
.card__title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1.3; display: flex; align-items: center; gap: 10px; }
.card__title-icon { width: 24px !important; height: 24px !important; flex-shrink: 0; pointer-events: none; transform: translateZ(0); backface-visibility: hidden; }
.card__text { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.65; }

.card--diff { background: white; border: 1px solid var(--border); padding: 36px 32px; }
.card--diff:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card--diff-highlight { border-color: transparent; position: relative; background: linear-gradient(135deg, rgba(58,160,67,0.04) 0%, rgba(0,76,141,0.06) 100%); box-shadow: var(--shadow-md), inset 0 0 0 1px rgba(58,160,67,0.15); }
.card--diff-highlight:hover { box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(58,160,67,0.3); }
.card__icon-wrap { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; border-radius: 14px; font-size: 1.5rem; margin-bottom: 20px; transition: transform 0.35s ease, box-shadow 0.35s ease; transform: translateZ(0); }
.card__icon-wrap img { width: 32px; height: 32px; pointer-events: none; }
.card:hover .card__icon-wrap { transform: translateZ(0) scale(1.08); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }
.card__icon-wrap--green { background: linear-gradient(135deg, var(--green-pale) 0%, rgba(58,160,67,0.04) 100%); }
.card__icon-wrap--yellow { background: linear-gradient(135deg, #FFF8E1 0%, #FFF4D1 100%); }
.card__icon-wrap--blue { background: linear-gradient(135deg, #E3EDF8 0%, #D6E4F2 100%); }

.card--service { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.card--service:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card--service:hover .card__img-wrap img { transform: scale(1.06); }
.card__img-wrap { overflow: hidden; height: 220px; }
.card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.card__body { padding: 28px 24px; }
.card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.875rem; font-weight: 700; color: var(--green); margin-top: 12px; transition: gap 0.3s; }
.card__link:hover { gap: 8px; }

.card--testimonial { background: white; border: 1px solid var(--border); padding: 32px; border-radius: var(--radius-md); }
.card--testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__stars { color: #FFC107; font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.card__quote { font-size: 0.9375rem; color: var(--text); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.card__author { display: flex; align-items: center; gap: 12px; }
.card__author-info strong { display: block; font-size: 0.875rem; color: var(--text); }
.card__author-info span { font-size: 0.8125rem; color: var(--text-muted); }

/* ═══ STEPS — animated progress line ═══ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
/* Background track — fica ATRÁS dos números */
.steps::before { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 3px; background: rgba(0, 0, 0, 0.06); border-radius: 2px; z-index: 0; }
/* Animated fill — controlled via JS, scales from 0 to 1 */
.steps::after { content: ''; position: absolute; top: 32px; left: 12%; right: 12%; height: 3px; background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%); border-radius: 2px; transform-origin: left center; transform: scaleX(0); transition: transform 1.6s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 0 12px rgba(58,160,67,0.4); z-index: 0; }
.steps.is-progressed::after { transform: scaleX(1); }
.step { text-align: center; position: relative; z-index: 1; }
/* Anel ao redor do círculo cobre a linha — usa a cor do fundo da section verde-soft */
.step__number { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: var(--gradient-brand); color: white; font-size: 1.25rem; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 2; box-shadow: 0 4px 20px var(--green-glow), 0 0 0 8px var(--bg-green-soft); transition: transform 0.4s var(--ease-spring), box-shadow 0.4s; }
.step:hover .step__number { transform: scale(1.08); box-shadow: 0 8px 32px rgba(58,160,67,0.4), 0 0 0 8px var(--bg-green-soft); }
/* Variação para sections de outras cores */
.section--white .step__number { box-shadow: 0 4px 20px var(--green-glow), 0 0 0 8px var(--bg-white); }
.section--light .step__number { box-shadow: 0 4px 20px var(--green-glow), 0 0 0 8px var(--bg-light); }
.step__line { display: none; }
.step__title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.step__text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ═══ PERFORMANCE HINTS — só onde realmente compensa ═══ */
.hero__video, .hero__bg-img,
.service-row__image img, .about-story__image img, .about-team__image { will-change: transform; }
/* Off-screen sections render lazily — saves GPU/CPU */
.section, .counters, .footer { content-visibility: auto; contain-intrinsic-size: auto 600px; }

/* ═══ FAQ ═══ */
.faq__item { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.faq__item:hover { border-color: rgba(58,160,67,0.3); }
.faq__item[open] { border-color: var(--green); box-shadow: 0 4px 16px rgba(58,160,67,0.08); }
.faq__question { padding: 20px 24px; font-weight: 600; font-size: 1rem; color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: space-between; list-style: none; }
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after { content: '+'; font-size: 1.5rem; font-weight: 300; color: var(--green); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__item[open] .faq__question { color: var(--green); }
.faq__answer { padding: 0 24px 20px; }
.faq__answer p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.7; }

/* ═══ CTA FINAL ═══ */
.cta-final { position: relative; padding: 120px 0; overflow: hidden; }
.cta-final__bg { position: absolute; inset: 0; }
.cta-final__gradient { position: absolute; inset: 0; background: var(--gradient-dark); }
.cta-final__bg::before { content: ''; position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(58,160,67,0.1) 0%, transparent 65%); animation: float-slow 10s ease-in-out infinite; pointer-events: none; }
.cta-final__bg::after { content: ''; position: absolute; bottom: -100px; left: -80px; width: 450px; height: 450px; background: radial-gradient(circle, rgba(0,76,141,0.08) 0%, transparent 65%); animation: float-slow 14s ease-in-out infinite 4s; pointer-events: none; }
.cta-final__content { position: relative; z-index: 1; text-align: center; }
.cta-final__title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: white; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.02em; }
.cta-final__subtitle { font-size: 1.0625rem; color: rgba(255,255,255,0.6); margin-bottom: 48px; }
.cta-final__form { padding: 36px; max-width: 700px; margin: 0 auto 32px; }
.cta-final__form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 16px; }
/* Quando CTA final é só botão (sem form) */
.cta-final__action { display: flex; flex-direction: column; align-items: center; gap: 16px; margin: 24px auto 32px; }
.cta-final__cta { padding: 18px 44px; font-size: 1.0625rem; gap: 12px; box-shadow: 0 8px 32px rgba(58,160,67,0.4); }
.cta-final__cta:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(58,160,67,0.5); }
.cta-final__micro { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; font-size: 0.8125rem; color: rgba(255,255,255,0.6); margin: 0; }
.cta-final__micro span { display: inline-flex; align-items: center; gap: 4px; }
@media (max-width: 600px) { .cta-final__micro { gap: 12px; font-size: 0.75rem; } }
.form-group--full { grid-column: 1 / -1; margin-bottom: 16px; }
.cta-final__alt { margin-top: 32px; }
.cta-final__alt span { display: block; font-size: 0.875rem; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.cta-final__buttons { display: flex; gap: 12px; justify-content: center; }

/* ═══ FOOTER ═══ */
.footer { background: var(--dark); padding: 80px 0 40px; color: rgba(255,255,255,0.55); }
.footer__grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer__brand p { font-size: 0.875rem; line-height: 1.7; margin-top: 20px; }
.footer__brand img { height: 56px; width: auto; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col h4 { color: white; font-size: 0.9375rem; font-weight: 700; margin-bottom: 4px; }
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.3s; }
.footer__col a:hover { color: var(--green); }
.footer__col a strong { color: rgba(255,255,255,0.7); }
.footer__address { font-size: 0.8125rem; line-height: 1.6; margin-top: 8px; }
.footer__seals { display: flex; gap: 14px; margin-top: 16px; flex-wrap: wrap; }
.footer__seals img { width: 64px; height: 64px; object-fit: contain; background: #ffffff; border-radius: 10px; padding: 8px; opacity: 1; transition: transform 0.3s var(--ease-spring), box-shadow 0.3s; }
.footer__seals img:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer__bottom a { color: rgba(255,255,255,0.3); transition: color 0.3s; }
.footer__bottom a:hover { color: var(--green); }

/* ═══ WHATSAPP FLOAT ═══ */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); z-index: 999; transition: transform 0.3s var(--ease-spring); }
.whatsapp-float:hover { transform: scale(1.1); }

/* ═══ CUSTOM CURSOR ═══ */
.cursor { position: fixed; top: 0; left: 0; z-index: 10000; pointer-events: none; mix-blend-mode: difference; }
.cursor__dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); transition: transform 0.15s var(--ease-spring); }
.cursor__ring { position: absolute; top: -16px; left: -16px; width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50%; transform: translate(-50%, -50%) translate(16px, 16px); transition: all 0.25s var(--ease-smooth); }
.cursor.is-hovering .cursor__ring { transform: translate(-50%, -50%) translate(16px, 16px) scale(1.8); border-color: var(--green); background: rgba(58,160,67,0.06); }
.cursor.is-hovering .cursor__dot { transform: translate(-50%, -50%) scale(0.5); background: var(--green); }
.cursor.is-clicking .cursor__ring { transform: translate(-50%, -50%) translate(16px, 16px) scale(0.8); }
.cursor__trail { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
.trail-dot { position: absolute; width: 6px; height: 6px; background: var(--green); border-radius: 50%; opacity: 0; transform: translate(-50%, -50%); }

/* ═══ SCROLL PROGRESS ═══ */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; background: var(--gradient-brand); z-index: 10001; width: 0%; transition: width 0.1s linear; }

/* ═══ MAGNETIC BUTTONS ═══ */
.btn--primary, .btn--outline { transition: all 0.3s var(--ease-smooth), transform 0.2s var(--ease-spring); }

/* ═══ CARD TILT ═══ */
.card { transform-style: preserve-3d; perspective: 1000px; }
.card__body, .card__title, .card__text, .card__icon, .card__icon-wrap { transform: translateZ(20px); }

/* ═══ FLOATING ELEMENTS ═══ */
@keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg); } 33% { transform: translateY(-12px) rotate(1deg); } 66% { transform: translateY(-6px) rotate(-1deg); } }
@keyframes float-slow { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
@keyframes pulse-ring { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.5); opacity: 0; } }
.hero__shape--1 { animation: float-slow 8s ease-in-out infinite; }
.hero__shape--2 { animation: float-slow 10s ease-in-out infinite 2s; }
.hero__shape--3 { animation: float 6s ease-in-out infinite 1s; }
.whatsapp-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid #25D366; animation: pulse-ring 2s ease-out infinite; }

/* ═══ TEXT SPLIT ANIMATIONS ═══ */
.split-line { display: block; overflow: hidden; }
.split-line > span { display: inline-block; transform: translateY(110%); }

/* ═══ SECTION DIVIDERS ═══ */
.section--white + .section--light::before,
.section--light + .section--white::before,
.section--light + .section--green-soft::before { content: ''; display: block; height: 1px; background: linear-gradient(90deg, transparent, rgba(58,160,67,0.15), transparent); max-width: 60%; margin: 0 auto; }

/* ═══ SMOOTH SCROLL BODY ═══ */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* ═══ ANIMATIONS ═══ */
[data-animate] { opacity: 0; transform: translateY(32px); }
[data-animate="fade-down"] { transform: translateY(-20px); }
.is-visible { opacity: 1 !important; transform: translateY(0) !important; }

/* ═══ INTERNAL HERO ═══ */
.hero--internal { min-height: 56vh; padding: 160px 0 100px; display: flex; align-items: center; }
.hero--internal .hero__bg { background: var(--dark); }
.hero--internal .hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; z-index: 0; }
.hero--internal .hero__bg-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(0,56,112,0.85) 0%, rgba(10,22,40,0.78) 50%, rgba(29,77,30,0.7) 100%); z-index: 1; }
.hero--internal .hero__shape { z-index: 2; opacity: 0.35; }
.hero--internal .hero__content { max-width: 760px; position: relative; z-index: 3; }
.hero--internal .hero__title { color: #ffffff; text-shadow: 0 4px 60px rgba(0,0,0,0.4), 0 1px 4px rgba(0,0,0,0.3); }
.hero--internal .hero__subtitle { color: rgba(255,255,255,0.85); }
/* Per-page background images — pure CSS fallback if no <img> in HTML */
.hero--sobre .hero__bg { background-image: url('../img/hero-sobre.jpg'); background-size: cover; background-position: center; }
.hero--servicos .hero__bg { background-image: url('../img/hero-servicos.jpg'); background-size: cover; background-position: center; }
.hero--orcamento .hero__bg { background-image: url('../img/hero-orcamento.jpg'); background-size: cover; background-position: center; }
.hero--contato .hero__bg { background-image: url('../img/hero-contato.jpg'); background-size: cover; background-position: center; }

/* ═══ SERVICE ROWS ═══ */
.service-row { display: flex; align-items: center; gap: 64px; margin-bottom: 80px; }
.service-row--reverse { flex-direction: row-reverse; }
.service-row__content { flex: 1; }
.service-row__image { flex: 0 0 45%; border-radius: var(--radius-md); overflow: hidden; }
.service-row__image img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.service-row:hover .service-row__image img { transform: scale(1.04); }

/* ═══ ICON LIST ═══ */
.icon-list { list-style: none; padding: 0; margin: 20px 0; }
.icon-list li { display: flex; align-items: flex-start; gap: 10px; padding: 6px 0; font-size: 0.9375rem; color: var(--text-muted); }
.icon-list li::before { content: '\2713'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ═══ SEGMENT PILLS ═══ */
.pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.pill { display: inline-flex; align-items: center; gap: 8px; background: white; border: 1px solid var(--border); border-radius: var(--radius-full); padding: 10px 20px; font-size: 0.9rem; font-weight: 600; color: var(--text); transition: all 0.3s; }
.pill:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }

/* ═══ ABOUT STORY (for Sobre page) ═══ */
.about-story { display: flex; align-items: center; gap: 64px; }
.about-story__text { flex: 1; }
.about-story__image { flex: 0 0 45%; border-radius: var(--radius-md); overflow: hidden; }
.about-story__image img { width: 100%; height: 480px; object-fit: cover; }
.about-team { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-team__image { width: 100%; height: 480px; object-fit: cover; object-position: center 20%; }
.about-team__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.3) 40%, transparent 70%); display: flex; align-items: flex-end; padding: 48px; }
.about-team__overlay p { color: rgba(255,255,255,0.85); font-size: 1rem; line-height: 1.7; max-width: 600px; }
.certs { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.cert { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.cert img { width: 80px; height: 80px; object-fit: contain; }
.cert strong { font-size: 1rem; color: var(--text); }
.cert p { font-size: 0.875rem; color: var(--text-muted); max-width: 200px; }

/* ═══ HONEYPOT (anti-bot) — invisível para humanos, capturável por bots ═══ */
.hp { position: absolute !important; left: -9999px !important; top: auto !important; width: 1px !important; height: 1px !important; overflow: hidden !important; opacity: 0 !important; pointer-events: none !important; }

/* ═══ Estados de submit (loading / success / error) ═══ */
.btn.is-loading { opacity: 0.85; cursor: wait; }
.btn.is-success { background: #16a34a !important; }
.btn.is-error   { background: #dc2626 !important; }
.btn-spinner { display: inline-block; width: 14px; height: 14px; border: 2px solid currentColor; border-top-color: transparent; border-radius: 50%; animation: btn-spin 0.7s linear infinite; vertical-align: -2px; margin-right: 6px; }
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ═══ FORM HELPERS ═══ */
.form-group, .form-grid { text-align: left; }
.form-group label { text-align: left; }
.form-grid { display: grid; gap: 16px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-hint { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 6px; line-height: 1.4; }
.form-group + .form-group, .form-grid + .form-group, .form-group + .form-grid, .form-grid + .form-grid { margin-top: 16px; }
.form-group input.is-invalid, .form-group select.is-invalid, .form-group textarea.is-invalid { border-color: #dc2626; box-shadow: 0 0 0 4px rgba(220,38,38,0.08); }
.form-group .form-error { display: none; color: #dc2626; font-size: 0.8125rem; margin-top: 6px; }
.form-group input.is-invalid + .form-error, .form-group select.is-invalid + .form-error, .form-group textarea.is-invalid + .form-error { display: block; }
@media (max-width: 600px) { .form-grid--2 { grid-template-columns: 1fr; } }

/* ═══ HERO FORM 5 campos: 3 colunas em desktop (3 + 2), 2 em tablet, 1 em mobile ═══ */
.hero__form-grid--5 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 900px) { .hero__form-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hero__form-grid--5 { grid-template-columns: 1fr; } }

/* ═══ MULTI-STEP FORM ═══ */
.msform { position: relative; }
.msform__progress { margin-bottom: 28px; }
.msform__progress-bar { width: 100%; height: 6px; background: rgba(0,0,0,0.05); border-radius: 999px; overflow: hidden; margin-bottom: 18px; }
.msform__progress-fill { height: 100%; background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%); border-radius: 999px; transition: width 0.5s var(--ease-smooth); box-shadow: 0 0 12px rgba(58,160,67,0.3); }
.msform__steps-nav { display: flex; justify-content: space-between; list-style: none; padding: 0; margin: 0; gap: 8px; }
.msform__step-nav { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; opacity: 0.45; transition: opacity 0.3s; }
.msform__step-nav.is-active, .msform__step-nav.is-done { opacity: 1; }
.msform__step-num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-light); border: 2px solid var(--border); color: var(--text-muted); font-size: 0.8125rem; font-weight: 700; transition: all 0.3s; }
.msform__step-nav.is-active .msform__step-num { background: var(--green); border-color: var(--green); color: white; box-shadow: 0 0 0 4px rgba(58,160,67,0.15); }
.msform__step-nav.is-done .msform__step-num { background: var(--green); border-color: var(--green); color: white; }
.msform__step-nav.is-done .msform__step-num::after { content: '✓'; font-size: 0.75rem; }
.msform__step-nav.is-done .msform__step-num span { display: none; }
.msform__step-lbl { font-size: 0.75rem; color: var(--text); font-weight: 600; text-align: center; }
@media (max-width: 600px) { .msform__step-lbl { display: none; } }

.msform__step { border: 0; padding: 0; margin: 0; display: none; opacity: 0; transform: translateY(8px); transition: opacity 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth); }
.msform__step.is-active { display: block; opacity: 1; transform: translateY(0); }
.msform__legend { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--green); margin-bottom: 16px; }
.msform__nav { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--border); }
.msform__nav .btn { padding: 12px 22px; font-size: 0.9375rem; }
.msform__nav .btn--ghost { color: var(--text-muted); border: 1.5px solid var(--border); background: transparent; }
.msform__nav .btn--ghost:hover { background: var(--bg-light); color: var(--text); border-color: var(--border); }
.msform__nav button:only-child { margin-left: auto; }
.msform__legal { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 16px; line-height: 1.5; }

/* Submit success state */
.msform.is-submitted .msform__step,
.msform.is-submitted .msform__progress { display: none; }
.msform__success { display: none; text-align: center; padding: 48px 24px; animation: msfadeIn 0.5s var(--ease-smooth); }
.msform.is-submitted .msform__success { display: block; }
.msform__success-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: white; display: inline-flex; align-items: center; justify-content: center; font-size: 2.25rem; margin: 0 auto 20px; box-shadow: 0 0 0 10px rgba(58,160,67,0.15), 0 8px 24px rgba(58,160,67,0.3); }
@keyframes msfadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ═══ ORCAMENTO LAYOUT ═══ */
.orcamento-layout { display: flex; gap: 48px; flex-wrap: wrap; }
.orcamento-layout__form { flex: 0 0 58%; min-width: 300px; }
.orcamento-layout__sidebar { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 24px; }
.orcamento-layout .card { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.orcamento-layout .card h3 { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }

/* ═══ CONTATO LAYOUT ═══ */
.contato-layout { display: flex; gap: 48px; flex-wrap: wrap; }
.contato-layout__info { flex: 0 0 42%; min-width: 300px; }
.contato-layout__form { flex: 1; min-width: 300px; }
.contato-channels { background: white; border: 1px solid var(--border); border-radius: var(--radius-md); padding: 32px; }
.contato-channel { display: flex; align-items: flex-start; gap: 16px; padding: 20px 0; }
.contato-channel:not(:last-child) { border-bottom: 1px solid var(--border); }
.contato-channel__icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contato-channel__icon--green { background: rgba(58,160,67,0.1); }
.contato-channel__icon--blue { background: rgba(0,76,141,0.1); }
.contato-channel__label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px; }
.contato-channel__value { font-size: 1rem; font-weight: 700; color: var(--text); }
.contato-channel__detail { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.hours-bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.hours-indicator { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9375rem; }
.hours-indicator::before { content: ''; width: 10px; height: 10px; border-radius: 50%; background: #25D366; animation: badge-pulse 2s ease-in-out infinite; }

/* ═══ CHECKBOX STYLING ═══ */
.checkbox-group { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 8px 0; }
.checkbox-group label { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--text-muted); cursor: pointer; }
.checkbox-group input[type="checkbox"] { accent-color: var(--green); width: 16px; height: 16px; }

/* ═══ MOBILE NAV OPEN STATE ═══ */
.header__nav.is-open { display: flex; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: white; padding: 24px; gap: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.1); border-top: 1px solid var(--border); }
.header__burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ═══ ACTIVE NAV LINK ═══ */
.header__link--active { color: var(--green) !important; }
.header__link--active::after { width: 100% !important; }

/* ═══ RESPONSIVE — TABLET ═══ */
@media (max-width: 1024px) {
  .header__inner { padding: 0 24px; }
  .header__phone { display: none; }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .footer__grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .hero__form-grid { grid-template-columns: 1fr 1fr; }
  .cta-final__form-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .service-row, .service-row--reverse, .about-story { flex-direction: column; gap: 32px; }
  .service-row__image, .about-story__image { flex: none; width: 100%; }
  .orcamento-layout { flex-direction: column; }
  .orcamento-layout__form { flex: none; width: 100%; }
  .contato-layout { flex-direction: column; }
  .contato-layout__info { flex: none; width: 100%; }
  .hours-bar { flex-direction: column; align-items: flex-start; }
}

/* ═══ RESPONSIVE — MOBILE ═══ */
@media (max-width: 767px) {
  :root { --header-h: 64px; }
  .header__nav { display: none; }
  .header__phone { display: none; }
  .header__burger { display: flex; order: 3; margin-left: auto; }
  .header__actions { gap: 10px; order: 2; }
  .header__actions .btn--sm { padding: 8px 14px; font-size: 0.8125rem; }
  .header__logo { order: 1; }
  .header__inner { padding: 0 16px; gap: 12px; }
  .header__logo img { height: 32px; }

  .hero { padding: 100px 0 48px; min-height: auto; }
  .hero__title { font-size: 1.75rem; }
  .hero__form { padding: 20px; }
  .hero__form-grid { grid-template-columns: 1fr; }
  .hero__form-micro { flex-direction: column; gap: 6px; align-items: center; }

  .counters__grid { grid-template-columns: 1fr; gap: 0; }
  .counter::after { display: none; }
  .counter { padding: 20px 0; }
  .counter:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,0.08); }

  .section { padding: 56px 0; }
  .section__header { margin-bottom: 40px; }
  .section__title { font-size: 1.5rem; }

  .cards-grid--2, .cards-grid--3, .cards-grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }

  .cta-final { padding: 64px 0; }
  .cta-final__form { padding: 20px; }
  .cta-final__form-grid { grid-template-columns: 1fr; }
  .cta-final__buttons { flex-direction: column; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .hero--internal { padding: 120px 0 48px; }
  .service-row__image img, .about-story__image img { height: 260px; }
  .about-team__image { height: 280px; }
  .pills { gap: 8px; }
  .pill { padding: 8px 14px; font-size: 0.8rem; }
  .certs { gap: 24px; }
  .checkbox-group { grid-template-columns: 1fr; }
  .contato-channel { padding: 16px 0; }

  .whatsapp-float { width: 48px; height: 48px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .cursor, .cursor__trail { display: none !important; }
  .scroll-progress { height: 2px; }
}

@media (max-width: 374px) {
  .hero__title { font-size: 1.5rem; }
  .container { padding: 0 16px; }
}

/* ═══ WIDESCREEN ═══ */
@media (min-width: 1440px) {
  .container { max-width: 1340px; }
  .header__inner { max-width: 1500px; padding: 0 64px; }
}
