/* ===== Tokens (clean premium · navy + laranja) ===== */
:root {
  --navy: #1b2e57;
  --navy-2: #142244;
  --navy-3: #284077;
  --orange: #ef7d22;
  --orange-2: #d96a12;
  --bg: #ffffff;
  --bg-soft: #f2f7fd;
  --ink: #18233f;
  --ink-soft: #46506a;
  --line: #e6edf6;
  --maxw: 1180px;
  --gut: clamp(20px, 5vw, 56px);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow: 0 18px 44px -26px rgba(20, 35, 80, .35);
  --shadow-lg: 0 30px 70px -34px rgba(20, 35, 80, .4);
  --grad-navy: linear-gradient(135deg, #284077, #1b2e57);
  --grad-orange: linear-gradient(135deg, #f7912f, #e87016);
  --img-filter: saturate(1.02) contrast(1.02);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-weight: 800; line-height: 1.08; letter-spacing: -.02em; color: var(--ink); }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }

/* ===== Logo ===== */
.brand { display: inline-flex; align-items: center; gap: 12px; }
.logo-img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; display: block; flex: none; box-shadow: 0 5px 14px -5px rgba(20, 35, 80, .45); }
.hero-logo-img { width: 100%; max-width: 400px; aspect-ratio: 1; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto; box-shadow: var(--shadow-lg); }
.logo-mark svg { width: 36px; height: 36px; display: block; }
.logo-word { display: flex; flex-direction: column; line-height: 1; }
.logo-word b { font-size: .98rem; font-weight: 800; color: var(--navy); letter-spacing: -.01em; text-transform: uppercase; }
.logo-word i { font-style: normal; font-size: .66rem; font-weight: 700; color: var(--navy); letter-spacing: .22em; text-transform: uppercase; margin-top: 2px; }
.brand-light .logo-word b, .brand-light .logo-word i { color: #fff; }

/* ===== Label (pill) ===== */
.label {
  display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 700;
  color: var(--navy); background: #e7eefb; padding: 8px 16px; border-radius: 999px; letter-spacing: .01em;
}
.label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* ===== Buttons ===== */
.btn {
  --pad: 15px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: var(--pad); border-radius: 999px; border: 2px solid transparent;
  font-family: inherit; font-weight: 700; font-size: .95rem; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
}
.btn-primary { background: var(--grad-navy); color: #fff; box-shadow: 0 14px 30px -12px rgba(27, 46, 87, .6); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(27, 46, 87, .7); }
.btn-orange { background: var(--grad-orange); color: #fff; box-shadow: 0 14px 30px -12px rgba(239, 125, 34, .6); }
.btn-orange:hover { transform: translateY(-2px); }
.btn-outline { background: #fff; color: var(--navy); border-color: #d4deee; }
.btn-outline:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-lg { --pad: 17px 32px; font-size: 1rem; }
.btn svg { width: 19px; height: 19px; }

/* ===== Header ===== */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; gap: 28px; height: 76px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { position: relative; color: var(--ink-soft); font-weight: 600; font-size: 1.02rem; transition: color .25s ease; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -5px; height: 2px; border-radius: 2px; background: var(--orange); opacity: 0; transform: scaleX(.35); transform-origin: center; transition: opacity .25s ease, transform .25s ease; }
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { opacity: 1; transform: scaleX(1); }
/* Salto (bounce) ao passar o mouse — só em dispositivos com cursor (desktop). */
@media (hover: hover) {
  .nav-links a:hover { animation: nav-jump .45s ease; }
}
@keyframes nav-jump {
  0% { transform: translateY(0); }
  35% { transform: translateY(-7px); }
  65% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}
.nav-cta { margin-left: 6px; }
.nav-cta-mobile { display: none; }
.nav-ig-mobile { display: none; }
.nav-toggle { display: none; background: none; border: 0; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: .3s; }

/* ===== Seletor de idiomas ===== */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 7px 12px; font-family: inherit; font-weight: 700; font-size: .82rem; color: var(--ink); cursor: pointer; transition: border-color .2s; }
.lang-btn:hover { border-color: #c4d2e8; }
.nav-ig { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; color: var(--navy); flex: none; transition: color .2s, background .2s; }
.nav-ig svg { width: 22px; height: 22px; }
.nav-ig:hover { color: #fff; background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 75%, #bc1888); }
.lang-flag { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }
.lang-chev { width: 13px; height: 13px; opacity: .55; transition: transform .25s; }
.lang.open .lang-chev { transform: rotate(180deg); }
.lang-menu { position: absolute; top: calc(100% + 8px); right: 0; min-width: 168px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-lg); padding: 6px; display: none; z-index: 60; }
.lang.open .lang-menu { display: block; }
.lang-menu button { display: flex; align-items: center; gap: 10px; width: 100%; text-align: left; background: none; border: 0; border-radius: 9px; padding: 10px 12px; font-family: inherit; font-size: .94rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.lang-menu button:hover { background: var(--bg-soft); }
.lang-menu button[aria-current="true"] { color: var(--navy); background: #eef4fd; }
.lang-menu button img { width: 22px; height: 16px; border-radius: 3px; object-fit: cover; box-shadow: 0 0 0 1px rgba(0,0,0,.06); }

/* ===== Hero ===== */
.hero { position: relative; display: flex; align-items: center; padding: clamp(36px, 5vw, 64px) 0; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(900px 520px at 88% 6%, #e8f1ff, transparent 60%), linear-gradient(180deg, #f7faff, #fff); }
.hero-grid { width: 100%; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.hero .label { margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.5rem, 5.4vw, 4.3rem); max-width: 14ch; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero .lead { color: var(--ink-soft); font-size: clamp(1.05rem, 1.5vw, 1.2rem); margin: 22px 0 30px; max-width: 46ch; }
.lead-adj { display: block; margin-top: 8px; font-weight: 700; color: var(--navy); }
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
/* Botões do hero (home/primeira tela): zoom + fade-in no hover.
   Só em dispositivos com cursor — no toque os botões ficam normais (sem fade). */
@media (hover: hover) {
  .hero-actions .btn { opacity: .9; transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, opacity .3s ease; }
  .hero-actions .btn:hover { opacity: 1; transform: translateY(-2px) scale(1.05); }
}

.trust { list-style: none; display: flex; gap: 22px; flex-wrap: wrap; margin-top: 30px; }
.trust li { display: inline-flex; align-items: center; gap: 8px; color: var(--ink-soft); font-weight: 600; font-size: .9rem; }
.trust svg { width: 20px; height: 20px; color: var(--orange); flex: none; }

.hero-media-wrap { position: relative; }
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
  padding: clamp(40px, 6vw, 72px) clamp(28px, 4vw, 52px); min-height: clamp(330px, 50vh, 460px); position: relative;
}
.hero-logo-mark svg { width: clamp(76px, 11vw, 112px); height: auto; }
.hero-logo-word { display: flex; flex-direction: column; align-items: center; line-height: 1.02; }
.hero-logo-word b { font-size: clamp(1.7rem, 3.6vw, 2.5rem); font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: -.01em; }
.hero-logo-word i { font-style: normal; font-size: clamp(1.05rem, 2.2vw, 1.5rem); font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .14em; }
.hero-logo-tag { margin-top: 6px; font-size: .92rem; font-weight: 600; color: var(--ink-soft); }
.hero-badge {
  position: absolute; z-index: 3; top: -16px; right: -10px; transform: rotate(6deg);
  font-size: .78rem; line-height: 1.15; text-align: center; color: #fff; font-weight: 600;
  background: var(--grad-orange); border-radius: 16px; padding: 12px 16px; box-shadow: 0 14px 26px -10px rgba(239, 125, 34, .7);
}
.hero-badge b { font-weight: 800; }

/* ===== Sections ===== */
.section { padding: clamp(38px, 4.5vw, 64px) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 640px; margin: 0 auto clamp(34px, 4.5vw, 52px); text-align: center; }
.section-head .label { margin-bottom: 16px; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3rem); }
.section-sub { color: var(--ink-soft); font-size: 1.06rem; margin-top: 14px; }

/* ===== Serviços ===== */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 2.6vw, 30px); }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-frame { overflow: hidden; }
.svc-media { aspect-ratio: 16 / 10; background: var(--bg-soft) center/cover no-repeat; filter: var(--img-filter); transition: transform 1s var(--ease); }
.svc-card:hover .svc-media { transform: scale(1.05); }
.svc-text { padding: clamp(22px, 2.6vw, 30px); }
.svc-num { display: inline-block; font-size: .76rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; }
.svc-card h3 { font-size: clamp(1.3rem, 2.3vw, 1.7rem); margin-bottom: 9px; }
.svc-card p { color: var(--ink-soft); font-size: 1rem; }

.svc-card:last-child:nth-child(odd) { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.svc-card:last-child:nth-child(odd) .svc-media { aspect-ratio: auto; height: 100%; min-height: 230px; }
.svc-card:last-child:nth-child(odd) .svc-text { display: flex; flex-direction: column; justify-content: center; }

/* ===== Destaques (o que fazemos) ===== */
.services-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 26px); max-width: 980px; margin: 0 auto clamp(44px, 6vw, 64px); }
.svc-highlight { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: clamp(20px, 2.4vw, 28px); text-align: center; box-shadow: 0 18px 40px -30px rgba(20, 35, 80, .35); transition: transform .2s, box-shadow .2s; }
.svc-highlight:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(20, 35, 80, .4); }
.svc-highlight-ic { width: 54px; height: 54px; margin: 0 auto 14px; border-radius: 14px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #284077, #1b2e57); }
.svc-highlight-ic svg { width: 28px; height: 28px; }
.svc-highlight:nth-child(2) .svc-highlight-ic { background: linear-gradient(135deg, #f7912f, #e87016); }
.svc-highlight h3 { font-size: 1.18rem; margin-bottom: 6px; color: var(--navy); }
.svc-highlight p { color: var(--ink-soft); font-size: .95rem; line-height: 1.5; }
@media (max-width: 760px) { .services-highlights { grid-template-columns: 1fr; max-width: 460px; } }

/* ===== Serviços com galeria por categoria ===== */
.services-cats { display: grid; gap: clamp(40px, 6vw, 68px); }
.cat-head { max-width: 680px; margin: 0 auto clamp(18px, 2.4vw, 26px); text-align: center; }
.cat-head h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 8px; }
.cat-head p { color: var(--ink-soft); font-size: 1.04rem; }
.cat-gallery { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px, 1.8vw, 20px); }
.cat-gallery .work { flex: 0 1 520px; max-width: 520px; width: 100%; aspect-ratio: 4 / 3; }

/* ===== Banner urgência 24h ===== */
.urg-banner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; max-width: 780px; margin: clamp(34px, 5vw, 52px) auto 0; padding: 18px 24px; background: linear-gradient(135deg, #fff7ed, #ffedd5); border: 1px solid #fed7aa; border-radius: 18px; }
.urg-banner-ic { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, #f7912f, #e87016); color: #fff; flex: none; }
.urg-banner-ic svg { width: 26px; height: 26px; }
.urg-banner-txt { display: flex; flex-direction: column; gap: 4px; }
.urg-banner-txt strong { font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.1; color: #9a3412; }
.urg-banner-txt > span { font-size: .92rem; color: #b45309; }
.urg-phone { font-weight: 800; color: #9a3412; white-space: nowrap; }
.urg-banner .urg-call { flex: none; margin-left: auto; }
.urg-banner-ic { width: 54px; height: 54px; }
.urg-banner-ic svg { width: 30px; height: 30px; }
@media (max-width: 620px) { .urg-banner { flex-direction: column; text-align: center; } .urg-banner-txt { align-items: center; } .urg-banner .urg-call { margin-left: 0; width: 100%; } }

/* ===== Processo (timeline) ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 2vw, 26px); position: relative; }
.steps::before { content: ""; position: absolute; top: 39px; left: 12.5%; right: 12.5%; height: 2px; background: #cbddf3; z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; }
.step-top { position: relative; display: inline-block; margin-bottom: 18px; }
.step-ic { width: 78px; height: 78px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: var(--grad-navy); box-shadow: 0 16px 30px -12px rgba(27, 46, 87, .55); transition: transform .3s var(--ease); }
.step:hover .step-ic { transform: translateY(-4px); }
.step-ic svg { width: 32px; height: 32px; }
.step-no { position: absolute; top: -2px; right: -2px; min-width: 28px; height: 28px; padding: 0 5px; border-radius: 999px; background: var(--grad-orange); color: #fff; font-weight: 800; font-size: .84rem; display: grid; place-items: center; border: 3px solid var(--bg-soft); box-shadow: 0 4px 10px -3px rgba(239, 125, 34, .6); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); font-size: .95rem; max-width: 26ch; margin: 0 auto; }

/* ===== Trabalhos ===== */
.works { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 20px); }
.work { position: relative; aspect-ratio: 4 / 3; border-radius: 18px; overflow: hidden; background: var(--bg-soft) center/cover no-repeat; filter: var(--img-filter); box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.work:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.work::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(20, 30, 60, .8)); opacity: 0; transition: opacity .35s; }
.work figcaption { position: absolute; left: 16px; bottom: 14px; right: 14px; z-index: 1; color: #fff; font-weight: 700; font-size: .96rem; opacity: 0; transform: translateY(6px); transition: all .35s var(--ease); }
.work:hover::after, .work:hover figcaption { opacity: 1; transform: none; }
.work-video iframe, .work-video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; background: #000; z-index: 2; }
.work-video::after { display: none; }
.work-video figcaption { display: none; }

/* ===== Avaliações ===== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.review { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: clamp(24px, 2.8vw, 32px); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.review:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stars { color: var(--orange); font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.review blockquote { font-size: 1.05rem; color: var(--ink); line-height: 1.55; margin-bottom: 16px; }
.review figcaption { color: var(--ink-soft); font-weight: 700; font-size: .92rem; }
.reviews-cta { text-align: center; margin-top: clamp(22px, 3vw, 32px); }

/* ===== Sobre (faixa navy com imagem escura) ===== */
.about-band { position: relative; background: var(--navy) center/cover no-repeat; color: #fff; padding: clamp(54px, 8vw, 90px) 0; isolation: isolate; }
.about-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(11, 20, 44, .94), rgba(20, 35, 80, .82)); }
.about { max-width: 820px; margin: 0 auto; text-align: center; }
.about .label { background: rgba(255, 255, 255, .12); color: #fff; margin-bottom: 22px; }
.about .label::before { background: var(--orange); }
.about-quote { font-size: clamp(1.5rem, 3.4vw, 2.4rem); font-weight: 800; line-height: 1.24; letter-spacing: -.01em; }
.about-quote em { font-style: normal; color: #ffb877; }
.about-by { margin-top: 22px; color: rgba(255, 255, 255, .7); font-weight: 600; }

/* ===== Contacto ===== */
.contact { text-align: center; }
.contact-inner { max-width: 760px; margin: 0 auto; }
.contact .label { margin-bottom: 16px; }
.contact h2 { font-size: clamp(2rem, 5vw, 3rem); }
.contact > .contact-inner > p { color: var(--ink-soft); font-size: 1.1rem; margin: 14px 0 0; }
.contact-cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; max-width: 760px; margin: 34px auto 0; }
.ccard { flex: 1 1 230px; max-width: 352px; display: flex; align-items: center; gap: 16px; text-align: left; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow); padding: 20px 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.ccard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ccard-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; flex: none; color: #fff; background: var(--grad-navy); }
.ccard-wa .ccard-ic { background: linear-gradient(135deg, #2ce06b, #17b34c); }
.ccard-ig .ccard-ic { background: linear-gradient(45deg, #f09433, #e6683c 28%, #dc2743 55%, #cc2366 75%, #bc1888); }
.ccard-ic svg { width: 25px; height: 25px; }
.ccard-body { display: flex; flex-direction: column; gap: 1px; }
.ccard-t { font-weight: 700; font-size: 1.05rem; }
.ccard-s { color: var(--ink-soft); font-size: .9rem; }
.ccard-arw { margin-left: auto; color: var(--orange); font-size: 1.3rem; font-weight: 800; transition: transform .25s var(--ease); }
.ccard:hover .ccard-arw { transform: translateX(5px); }
.contact-note { margin-top: 24px; color: var(--ink-soft); font-size: .9rem; }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #c3cde0; }
.footer-top { display: grid; grid-template-columns: 1.3fr 1.7fr; gap: clamp(34px, 6vw, 76px); padding: clamp(52px, 7vw, 76px) var(--gut) clamp(40px, 5vw, 52px); }
.footer-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: clamp(22px, 3vw, 42px); }
.footer-brand p { color: #93a0bb; font-size: .95rem; margin: 18px 0 24px; max-width: 38ch; }
.footer-social { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 10px; }
.social-ig, .social-wa { display: inline-flex; align-items: center; gap: 9px; color: #c3cde0; font-weight: 600; font-size: .92rem; padding: 9px 16px 9px 12px; border: 1px solid rgba(255, 255, 255, .18); border-radius: 999px; transition: color .2s, border-color .2s, background .2s; }
.social-ig svg, .social-wa svg { width: 22px; height: 22px; }
.social-ig:hover { color: #fff; border-color: transparent; background: linear-gradient(45deg, #f09433, #e6683c 30%, #dc2743 55%, #cc2366 75%, #bc1888); }
.social-wa:hover { color: #fff; border-color: transparent; background: linear-gradient(135deg, #2ce06b, #17b34c); }
.footer-col h4 { font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
.footer-col a { display: block; color: #c3cde0; font-size: .95rem; padding: 6px 0; transition: color .2s, padding-left .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 22px var(--gut); border-top: 1px solid rgba(255, 255, 255, .12); color: #8593b0; font-size: .85rem; }

/* ===== WhatsApp float ===== */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 60px; height: 60px; border-radius: 50%; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #2ce06b, #17b34c); box-shadow: 0 16px 32px -10px rgba(23, 179, 76, .6); transition: transform .3s var(--ease); }
.wa-float span { display: none; }
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: translateY(-3px) scale(1.05); }

/* ===== Instagram ===== */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.ig-item { position: relative; display: block; overflow: hidden; border-radius: 14px; aspect-ratio: 1 / 1; box-shadow: 0 12px 28px -18px rgba(20, 35, 80, .45); }
.ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.ig-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.22)); opacity: 0; transition: opacity .3s; }
.ig-item:hover img { transform: scale(1.06); }
.ig-item:hover::after { opacity: 1; }
@media (max-width: 860px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }

/* ===== Modal (pedir orçamento) ===== */
.modal { position: fixed; inset: 0; z-index: 100; display: none; }
.modal.open { display: block; }
.modal-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, .55); backdrop-filter: blur(2px); }
.modal-box { position: relative; z-index: 1; width: min(520px, 92vw); margin: clamp(36px, 7vh, 84px) auto 40px; background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg); padding: clamp(26px, 4vw, 38px); max-height: 86vh; overflow-y: auto; }
.modal-x { position: absolute; top: 12px; right: 16px; background: none; border: 0; font-size: 1.9rem; line-height: 1; color: var(--ink-soft); cursor: pointer; }
.modal-x:hover { color: var(--ink); }
.modal-box h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 8px; }
.modal-intro { color: var(--ink-soft); font-size: .97rem; margin-bottom: 20px; }
#quoteForm label { display: block; font-weight: 600; font-size: .9rem; margin: 14px 0 6px; }
#quoteForm input, #quoteForm select, #quoteForm textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s; }
#quoteForm input:focus, #quoteForm select:focus, #quoteForm textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(37, 69, 127, .12); }
#quoteForm textarea { resize: vertical; min-height: 96px; }
.modal-submit { width: 100%; margin-top: 22px; }
.modal-choose { display: block; font-weight: 600; font-size: .9rem; margin: 22px 0 8px; color: var(--ink); }
.modal-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.modal-actions .btn { flex: 1 1 180px; }
.modal-note { color: var(--ink-soft); font-size: .82rem; text-align: center; margin-top: 12px; }
#quoteForm label.urg-check { display: flex; align-items: flex-start; gap: 10px; margin: 16px 0 0; font-size: .92rem; font-weight: 600; color: var(--ink); cursor: pointer; }
#quoteForm .urg-check input { width: 18px; height: 18px; min-width: 18px; margin: 1px 0 0; padding: 0; border: 0; border-radius: 0; flex: none; accent-color: var(--orange); cursor: pointer; }
.urg-note { margin-top: 8px; background: #fff7ed; border: 1px solid #fed7aa; color: #9a3412; border-radius: 12px; padding: 11px 13px; font-size: .85rem; line-height: 1.45; }
body.modal-open { overflow: hidden; }

/* Review modal — form fields */
#reviewForm label { display: block; font-weight: 600; font-size: .9rem; margin: 14px 0 6px; }
#reviewForm input[type=text], #reviewForm textarea { width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-family: inherit; font-size: 1rem; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
#reviewForm textarea { resize: vertical; min-height: 96px; }
#reviewForm input[type=text]:focus, #reviewForm textarea:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 3px rgba(37, 69, 127, .12); }

/* Review modal — Google login button */
.rv-login-hint { color: var(--ink-soft); font-size: .93rem; margin-bottom: 18px; text-align: center; }
.btn-google { display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%; padding: 13px 20px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--ink); cursor: pointer; transition: background .2s, box-shadow .2s, border-color .2s; }
.btn-google:hover { background: #f8f9fa; border-color: #d2d5da; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.btn-google:active { background: #eef0f2; }

/* Review modal — NPS 0–10 */
.nps-label { display: block; font-weight: 600; font-size: .9rem; margin: 16px 0 8px; }
.nps-label .nps-opt { font-weight: 400; color: var(--ink-soft); }
.nps-row { display: grid; grid-template-columns: repeat(11, 1fr); gap: 5px; }
.nps-btn { padding: 9px 0; min-width: 0; border: 1px solid var(--line); border-radius: 8px; background: #fff; font-family: inherit; font-weight: 700; font-size: .88rem; color: var(--ink); cursor: pointer; transition: background .15s, color .15s, border-color .15s; }
.nps-btn:hover { border-color: var(--navy); }
.nps-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.nps-ends { display: flex; justify-content: space-between; font-size: .72rem; color: var(--ink-soft); margin: 6px 2px 0; }

/* Review modal — star rating */
.rv-name-hint { color: var(--ink-soft); font-size: .78rem; margin: 4px 0 2px; }
.rv-stars-row { display: flex; gap: 4px; margin-bottom: 4px; }
.rv-star { font-size: 2rem; color: #ddd; cursor: pointer; transition: color .15s, transform .15s; line-height: 1; user-select: none; }
.rv-star.active { color: #f5a623; }
.rv-star:hover { transform: scale(1.18); }

/* Review modal — user info after login */
.rv-user-info { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: #f0f7f0; border-radius: 12px; margin-bottom: 16px; }
.rv-user-info:empty { display: none; }
.rv-user-info img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.rv-user-info .rv-user-name { font-weight: 600; font-size: .95rem; color: var(--ink); }
.rv-user-info .rv-user-email { font-size: .82rem; color: var(--ink-soft); }

/* Review form visibility */
.rv-form-hidden { display: none !important; }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero { min-height: 0; display: block; padding: 34px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media-wrap { order: -1; }
  .hero-card { min-height: 0; padding: 40px 28px; }
  .hero-logo-img { max-width: 270px; }
  .hero h1 { max-width: 100%; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 16px; }
  .steps::before { display: none; }
  .works { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; }
  /* serviços continuam 2 a 2 no mobile p/ encurtar */
  .svc-grid { gap: 14px; }
  .svc-card:last-child:nth-child(odd) { grid-template-columns: 1fr; }
  .svc-card:last-child:nth-child(odd) .svc-media { aspect-ratio: 16 / 10; height: auto; min-height: 0; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
  /* "Como funciona" em 2x2 também no telemóvel */
  .steps { gap: 30px 14px; }
  .step p { font-size: .9rem; }
  .svc-text { padding: 16px; }
  .svc-card h3 { font-size: 1.12rem; }
  .svc-card p { font-size: .9rem; }
  .svc-num { margin-bottom: 6px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta, .nav-ig { display: none; }
  .nav-toggle { display: flex; }
  .lang { margin-left: auto; }
  .lang + .nav-toggle { margin-left: 4px; }
  .site-header.open .nav-links { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 6px 0 14px; }
  .site-header.open .nav-links a { padding: 15px var(--gut); }
  .site-header.open .nav-links a::after { display: none; } /* no toque: sem underline/hover */
  .site-header.open .nav-links .nav-ig-mobile { display: block; }
  .site-header.open .nav-links .nav-cta-mobile { display: block; margin: 10px var(--gut) 0; padding: 13px 20px; text-align: center; color: #fff; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---- Toast notification ---- */
.skh-toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px);
  background: #1b7a3d; color: #fff; padding: 14px 28px; border-radius: 12px;
  font-size: .95rem; font-weight: 600; z-index: 10000;
  box-shadow: 0 8px 32px rgba(0,0,0,.22); opacity: 0;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
  max-width: 90vw; text-align: center; pointer-events: none;
}
.skh-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.skh-toast-err { background: #c0392b; }
