/* Estilos da página institucional da Nuno Constrular */
:root {
      --red: #d71920;
      --red-dark: #aa1016;
      --red-soft: #fff0f1;
      --ink: #1d2025;
      --muted: #626974;
      --line: #e4e6e9;
      --surface: #f4f5f6;
      --white: #fff;
      --dark: #16181b;
      --whatsapp: #25d366;
      --container: 1180px;
      --radius: 18px;
      --shadow: 0 14px 35px rgba(21, 23, 26, 0.10);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 92px; }
    body {
      min-width: 320px;
      margin: 0;
      color: var(--ink);
      background: var(--white);
      font-family: "Inter", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { font: inherit; }
    :focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: 12px;
      left: 50%;
      padding: 10px 14px;
      color: var(--white);
      background: var(--ink);
      border-radius: 8px;
      transform: translate(-50%, -170%);
      transition: transform 180ms ease;
    }
    .skip-link:focus { transform: translate(-50%, 0); }

    .container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
    .section { padding: 104px 0; }
    .section-soft { background: var(--surface); }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin: 0 0 13px;
      color: var(--red);
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.13em;
      line-height: 1.3;
      text-transform: uppercase;
    }
    .eyebrow::before { width: 23px; height: 3px; content: ""; background: currentColor; border-radius: 999px; }

    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { font-family: "Poppins", Arial, sans-serif; letter-spacing: -0.04em; line-height: 1.16; }
    h1 { max-width: 760px; margin-bottom: 20px; color: var(--white); font-size: clamp(2.65rem, 5.4vw, 5.2rem); font-weight: 800; }
    h2 { margin-bottom: 16px; color: var(--ink); font-size: clamp(2rem, 3.5vw, 3.15rem); font-weight: 700; }
    h3 { margin-bottom: 9px; font-size: 1.2rem; font-weight: 700; }

    .section-heading { max-width: 700px; margin: 0 auto 46px; text-align: center; }
    .section-heading > p:last-child, .copy-muted { color: var(--muted); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 52px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: 10px;
      font-size: 0.93rem;
      font-weight: 800;
      line-height: 1.2;
      text-align: center;
      transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
    }
    .btn:hover { transform: translateY(-3px); }
    .btn-primary { color: var(--white); background: var(--red); box-shadow: 0 12px 24px rgba(215, 25, 32, 0.25); }
    .btn-primary:hover { background: var(--red-dark); }
    .btn-light { color: var(--red); background: var(--white); box-shadow: 0 12px 24px rgba(60, 0, 3, 0.18); }
    .btn-light:hover { background: #f6f6f6; }

    /* Cabeçalho */
    .site-header {
      position: fixed;
      z-index: 100;
      inset: 0 0 auto;
      border-bottom: 1px solid transparent;
      transition: background-color 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    }
    .site-header.is-scrolled { background: rgba(255, 255, 255, 0.97); border-color: var(--line); box-shadow: 0 6px 26px rgba(21, 23, 26, 0.07); backdrop-filter: blur(12px); }
    .nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 76px; gap: 20px; }
    .brand { display: inline-flex; align-items: center; gap: 11px; color: var(--white); font-family: "Poppins", Arial, sans-serif; font-size: 1.14rem; font-weight: 800; letter-spacing: -0.04em; white-space: nowrap; transition: color 180ms ease; }
    .brand-mark { display: grid; width: 34px; height: 34px; place-items: center; color: var(--white); background: var(--red); border-radius: 9px; font-size: 0.93rem; box-shadow: 0 8px 16px rgba(215, 25, 32, 0.25); }
    .site-header.is-scrolled .brand { color: var(--ink); }

    .main-nav { display: flex; align-items: center; gap: clamp(12px, 1.65vw, 23px); color: rgba(255, 255, 255, 0.92); font-size: 0.82rem; font-weight: 700; transition: color 180ms ease; }
    .site-header.is-scrolled .main-nav { color: #3e444c; }
    .main-nav > a:not(.nav-contact) { position: relative; padding: 7px 0; }
    .main-nav > a:not(.nav-contact)::after { position: absolute; right: 0; bottom: 0; left: 0; height: 2px; content: ""; background: currentColor; border-radius: 10px; transform: scaleX(0); transform-origin: left; transition: transform 180ms ease; }
    .main-nav > a:not(.nav-contact):hover::after, .main-nav > a:not(.nav-contact):focus-visible::after { transform: scaleX(1); }
    .nav-contact { padding: 9px 13px; color: var(--white) !important; background: var(--red); border-radius: 8px; box-shadow: 0 8px 17px rgba(215, 25, 32, 0.22); transition: background-color 180ms ease, transform 180ms ease; }
    .nav-contact:hover { background: var(--red-dark); transform: translateY(-2px); }
    .menu-toggle { display: none; width: 44px; height: 44px; padding: 0; color: var(--white); background: transparent; border: 1px solid rgba(255, 255, 255, 0.45); border-radius: 8px; cursor: pointer; }
    .site-header.is-scrolled .menu-toggle { color: var(--ink); border-color: var(--line); }

    /* Hero */
    .hero { position: relative; display: grid; min-height: min(820px, 100svh); overflow: hidden; align-items: center; color: var(--white); background: var(--dark); isolation: isolate; }
    .hero::before { position: absolute; z-index: -1; inset: 0; content: ""; background: linear-gradient(90deg, rgba(15, 17, 19, 0.88), rgba(15, 17, 19, 0.68) 48%, rgba(15, 17, 19, 0.4)), linear-gradient(0deg, rgba(15, 17, 19, 0.34), transparent 53%); }
    .hero-bg { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
    .hero-content { padding: 110px 0 108px; }
    .hero .eyebrow { color: #ffdcde; }
    .hero .eyebrow::before { background: var(--red); }
    .hero-lead { max-width: 640px; margin-bottom: 30px; color: rgba(255, 255, 255, 0.89); font-size: clamp(1rem, 1.7vw, 1.18rem); line-height: 1.72; }
    .hero-support { display: flex; align-items: center; gap: 8px; margin: 17px 0 0; color: rgba(255, 255, 255, 0.75); font-size: 0.82rem; }
    .hero-support i { color: #ffdbdc; }
    .scroll-cue { position: absolute; right: max(20px, calc((100% - var(--container)) / 2)); bottom: 31px; display: inline-flex; align-items: center; gap: 10px; color: rgba(255, 255, 255, 0.75); font-size: 0.71rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
    .scroll-cue span { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid rgba(255, 255, 255, 0.48); border-radius: 50%; animation: cue 1.8s ease-in-out infinite; }
    @keyframes cue { 50% { transform: translateY(5px); } }

    /* Ambientes */
    .category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
    .category-card { position: relative; min-height: 305px; overflow: hidden; border-radius: var(--radius); background: var(--ink); isolation: isolate; }
    .category-card::before { position: absolute; z-index: 1; inset: 0; content: ""; background: linear-gradient(0deg, rgba(16, 18, 20, 0.84), rgba(16, 18, 20, 0.06) 65%); }
    .category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
    .category-card:hover img { transform: scale(1.07); }
    .category-label { position: absolute; z-index: 2; right: 23px; bottom: 21px; left: 23px; color: var(--white); }
    .category-label span { display: block; margin-bottom: 2px; color: rgba(255, 255, 255, 0.7); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
    .category-label h3 { margin: 0; color: var(--white); font-size: 1.32rem; }

    /* Diferenciais */
    .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; }
    .feature-card { min-height: 241px; padding: 29px 24px 25px; background: var(--white); border: 1px solid transparent; border-radius: var(--radius); box-shadow: 0 5px 18px rgba(21, 23, 26, 0.035); transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease; }
    .feature-card:hover { border-color: rgba(215, 25, 32, 0.15); box-shadow: var(--shadow); transform: translateY(-6px); }
    .feature-icon { display: grid; width: 50px; height: 50px; margin-bottom: 22px; place-items: center; color: var(--red); background: var(--red-soft); border-radius: 13px; font-size: 1.18rem; }
    .feature-card p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }

    /* Sobre */
    .about-grid { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr); align-items: center; gap: clamp(44px, 7vw, 100px); }
    .about-copy h2, .about-copy > p:not(.eyebrow) { max-width: 520px; }
    .about-copy > p:not(.eyebrow) { color: var(--muted); }
    .about-copy .btn { margin-top: 13px; }
    .image-mosaic { display: grid; grid-template-columns: 1fr 0.78fr; grid-template-rows: 190px 190px; gap: 15px; }
    .mosaic-image { min-height: 0; overflow: hidden; background: var(--surface); border-radius: 14px; box-shadow: var(--shadow); }
    .mosaic-image:first-child { grid-row: span 2; }
    .mosaic-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
    .mosaic-image:hover img { transform: scale(1.06); }

    /* Depoimentos reais */
    .testimonial-marquee { position: relative; display: grid; gap: 17px; overflow: hidden; padding: 5px 0; }
    .marquee-row { overflow: hidden; }
    .marquee-track { display: flex; width: max-content; gap: 17px; padding-right: 17px; animation: marquee 43s linear infinite; }
    .marquee-row--reverse .marquee-track { animation-direction: reverse; animation-delay: -13s; }
    .marquee-row:hover .marquee-track { animation-play-state: paused; }
    .review-card { width: min(335px, calc(100vw - 64px)); min-height: 208px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 6px 18px rgba(21, 23, 26, 0.045); }
    .review-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
    .review-avatar { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; color: var(--red); background: var(--red-soft); border-radius: 50%; font-size: 0.82rem; }
    .review-meta strong { display: block; color: var(--ink); font-size: 0.85rem; line-height: 1.2; }
    .review-meta small { display: block; margin-top: 2px; color: var(--muted); font-size: 0.73rem; }
    .review-card blockquote { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.65; }
    .review-card blockquote::before { content: "“"; color: var(--red); font-family: Georgia, serif; font-size: 1.75rem; font-weight: 700; line-height: 0; vertical-align: -0.38em; }
    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* Localização */
    .location-grid { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr); align-items: center; gap: clamp(44px, 7vw, 100px); }
    .location-copy h2, .location-copy > p:not(.eyebrow) { max-width: 510px; }
    .location-copy > p:not(.eyebrow) { color: var(--muted); }
    .location-place { display: flex; align-items: flex-start; gap: 12px; margin: 25px 0 28px !important; color: var(--ink) !important; font-size: 0.95rem; font-weight: 800; }
    .location-place i { margin-top: 5px; color: var(--red); }
    .map-wrap { min-height: 385px; overflow: hidden; background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }
    .map-wrap iframe { display: block; width: 100%; height: 385px; border: 0; }

    /* CTA e rodapé */
    .final-cta { position: relative; overflow: hidden; padding: 95px 0; color: var(--white); background: var(--red); isolation: isolate; }
    .final-cta::before, .final-cta::after { position: absolute; z-index: -1; width: 340px; height: 340px; content: ""; border: 36px solid rgba(255, 255, 255, 0.1); border-radius: 50%; }
    .final-cta::before { top: -175px; left: -110px; }
    .final-cta::after { right: -120px; bottom: -220px; }
    .cta-inner { max-width: 800px; margin: 0 auto; text-align: center; }
    .cta-inner .eyebrow { color: #ffe7e8; }
    .cta-inner h2 { margin-bottom: 15px; color: var(--white); }
    .cta-inner p:not(.eyebrow) { max-width: 650px; margin: 0 auto 29px; color: rgba(255, 255, 255, 0.88); }

    .site-footer { padding: 68px 0 23px; color: rgba(255, 255, 255, 0.72); background: var(--dark); }
    .footer-grid { display: grid; grid-template-columns: 1.7fr 0.8fr 0.8fr; gap: 48px; padding-bottom: 52px; }
    .footer-brand { margin-bottom: 15px; color: var(--white); }
    .footer-copy { max-width: 365px; margin: 0; color: rgba(255, 255, 255, 0.62); font-size: 0.87rem; }
    .footer-title { margin: 0 0 14px; color: var(--white); font-family: "Poppins", Arial, sans-serif; font-size: 0.9rem; font-weight: 700; }
    .footer-links { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; font-size: 0.85rem; }
    .footer-links a:hover { color: var(--white); }
    .socials { display: flex; gap: 10px; }
    .social-link { display: grid; width: 38px; height: 38px; place-items: center; color: var(--white); background: rgba(255, 255, 255, 0.1); border-radius: 50%; transition: background-color 180ms ease, transform 180ms ease; }
    .social-link:hover { background: var(--red); transform: translateY(-3px); }
    .footer-bottom { padding-top: 21px; border-top: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.48); font-size: 0.78rem; text-align: center; }

    .whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; min-height: 53px; padding: 11px 15px; color: var(--white); background: var(--whatsapp); border: 2px solid var(--white); border-radius: 99px; box-shadow: 0 12px 28px rgba(16, 90, 43, 0.30); font-size: 0.82rem; font-weight: 800; transition: transform 180ms ease, background-color 180ms ease; animation: whatsapp-pulse 2.5s ease-out infinite; }
    .whatsapp-float:hover { background: #1caf57; transform: translateY(-4px); }
    .whatsapp-float i { font-size: 1.36rem; }
    @keyframes whatsapp-pulse { 0%, 70%, 100% { box-shadow: 0 12px 28px rgba(16, 90, 43, 0.30), 0 0 0 0 rgba(37, 211, 102, 0.36); } 35% { box-shadow: 0 12px 28px rgba(16, 90, 43, 0.30), 0 0 0 12px rgba(37, 211, 102, 0); } }

    /* Pré-atendimento antes do WhatsApp */
    body.modal-open { overflow: hidden; }
    .lead-modal { position: fixed; z-index: 200; inset: 0; display: grid; place-items: center; padding: 20px; visibility: hidden; opacity: 0; pointer-events: none; transition: opacity 200ms ease, visibility 200ms ease; }
    .lead-modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
    .lead-modal__backdrop { position: absolute; inset: 0; background: rgba(16, 18, 21, 0.7); backdrop-filter: blur(5px); }
    .lead-dialog { position: relative; width: min(100%, 470px); max-height: min(760px, calc(100svh - 40px)); padding: 2px; overflow: hidden; background: #8e0b10; border-radius: 24px; box-shadow: 0 0 0 1px rgba(255, 74, 81, 0.55), 0 0 38px rgba(215, 25, 32, 0.42), 0 25px 70px rgba(0, 0, 0, 0.36); isolation: isolate; }
    .lead-dialog::before { position: absolute; z-index: 0; top: 50%; left: 50%; width: 185%; aspect-ratio: 1; content: ""; background: conic-gradient(transparent 0deg 255deg, #8e090f 272deg, #ff1d27 290deg, #ffd7d9 310deg, #ff202a 328deg, #8e090f 345deg, transparent 360deg); transform: translate(-50%, -50%); animation: shine-rotate 4s linear infinite; }
    @keyframes shine-rotate { from { transform: translate(-50%, -50%) rotate(0turn); } to { transform: translate(-50%, -50%) rotate(1turn); } }
    .lead-dialog__content { position: relative; z-index: 1; max-height: calc(min(760px, 100svh - 40px) - 4px); padding: 31px; overflow-y: auto; background: var(--white); border-radius: 22px; }
    .lead-close { position: absolute; z-index: 2; top: 13px; right: 13px; display: grid; width: 44px; height: 44px; place-items: center; color: var(--muted); background: var(--surface); border: 0; border-radius: 50%; cursor: pointer; transition: background-color 180ms ease, color 180ms ease, transform 180ms ease; }
    .lead-close:hover { color: var(--red); background: var(--red-soft); transform: rotate(90deg); }
    .lead-icon { display: grid; width: 51px; height: 51px; margin-bottom: 18px; place-items: center; color: var(--red); background: var(--red-soft); border-radius: 14px; font-size: 1.25rem; }
    .lead-dialog h2 { max-width: 340px; margin-bottom: 9px; font-size: clamp(1.65rem, 5vw, 2.1rem); }
    .lead-intro { max-width: 385px; margin-bottom: 23px; color: var(--muted); font-size: 0.92rem; line-height: 1.65; }
    .lead-form { display: grid; gap: 16px; }
    .field-group { display: grid; gap: 7px; }
    .field-group label { color: var(--ink); font-size: 0.84rem; font-weight: 800; }
    .field-group input[type="text"], .field-group input[type="tel"] { width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: var(--white); border: 1px solid #d8dce0; border-radius: 10px; font: inherit; font-size: 0.94rem; transition: border-color 180ms ease, box-shadow 180ms ease; }
    .field-group input::placeholder { color: #9298a1; }
    .field-group input:hover { border-color: #b7bdc5; }
    .field-group input:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12); outline: none; }
    .field-group input[aria-invalid="true"] { border-color: var(--red); box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12); }
    .consent-row { display: grid; grid-template-columns: 18px 1fr; align-items: start; gap: 10px; margin-top: 2px; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }
    .consent-row input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
    .lead-feedback { min-height: 1.4em; margin: 0; color: var(--red-dark); font-size: 0.8rem; font-weight: 700; line-height: 1.45; }
    .lead-submit { width: 100%; margin-top: 1px; border: 0; cursor: pointer; }
    .lead-privacy { margin: 0; color: var(--muted); font-size: 0.72rem; line-height: 1.5; text-align: center; }

    /* Cursores de interação — exibidos somente em dispositivos com mouse */
    .interaction-cursor { display: none; }

    @media (hover: hover) and (pointer: fine) {
      .interaction-cursor { position: fixed; z-index: 400; top: 0; left: 0; display: grid; width: 44px; height: 44px; place-items: center; pointer-events: none; opacity: 0; transform: translate3d(-100px, -100px, 0) translate(-50%, -50%); transition: opacity 110ms ease; will-change: transform, opacity; }
      .interaction-cursor.is-visible { opacity: 1; }
      .cursor-symbol { position: absolute; display: none; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; font-size: 2rem; line-height: 1; text-rendering: geometricPrecision; transform-origin: center; }
      .interaction-cursor[data-mode="heart"] .cursor-heart { display: block; animation: heart-cursor 850ms ease-in-out infinite; }
      .interaction-cursor[data-mode="hand"] .cursor-hand { display: block; animation: hand-cursor 1.3s ease-in-out infinite; }
      .custom-cursor-target { cursor: none !important; }
    }

    @keyframes heart-cursor { 50% { transform: scale(1.14); } }
    @keyframes hand-cursor { 50% { transform: scale(1.07) rotate(4deg); } }

    .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity 620ms ease, transform 620ms ease; }
    .js .reveal.reveal-visible { opacity: 1; transform: none; }
    .js .reveal:nth-child(2) { transition-delay: 80ms; }
    .js .reveal:nth-child(3) { transition-delay: 140ms; }
    .js .reveal:nth-child(4) { transition-delay: 200ms; }

    @media (max-width: 980px) {
      .category-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
      .category-card { min-height: 290px; }
      .feature-card { min-height: 0; }
      .about-grid, .location-grid { grid-template-columns: 1fr 1fr; gap: 42px; }
      .image-mosaic { grid-template-rows: 162px 162px; }
    }

    @media (max-width: 850px) {
      .nav-wrap { min-height: 70px; }
      .menu-toggle { display: inline-grid; place-items: center; }
      .main-nav { position: absolute; top: calc(100% + 8px); right: 20px; left: 20px; display: grid; gap: 0; padding: 10px; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 13px; box-shadow: 0 24px 60px rgba(14, 16, 19, 0.20); opacity: 0; pointer-events: none; transform: translateY(-9px); transition: opacity 180ms ease, transform 180ms ease; }
      .main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
      .main-nav > a:not(.nav-contact) { padding: 12px; border-radius: 7px; }
      .main-nav > a:not(.nav-contact):hover { background: var(--surface); }
      .main-nav > a:not(.nav-contact)::after { display: none; }
      .nav-contact { margin: 6px 4px 4px; text-align: center; }
      .about-grid, .location-grid { grid-template-columns: 1fr; }
      .about-copy, .location-copy, .image-mosaic { max-width: 650px; }
      .location-grid { gap: 37px; }
      .map-wrap, .map-wrap iframe { min-height: 355px; height: 355px; }
      .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 30px; }
    }

    @media (max-width: 600px) {
      .container { width: min(calc(100% - 32px), var(--container)); }
      .section { padding: 75px 0; }
      .section-heading { margin-bottom: 32px; }
      h1 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
      h2 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
      .hero { min-height: 720px; }
      .hero::before { background: linear-gradient(90deg, rgba(15, 17, 19, 0.86), rgba(15, 17, 19, 0.62)), linear-gradient(0deg, rgba(15, 17, 19, 0.46), transparent 55%); }
      .hero-content { padding: 94px 0 90px; }
      .hero-lead { font-size: 0.99rem; }
      .hero .btn { width: 100%; }
      .scroll-cue { right: 16px; bottom: 18px; font-size: 0; }
      .scroll-cue span { width: 32px; height: 32px; font-size: 0.8rem; }
      .category-grid, .features-grid { grid-template-columns: 1fr; }
      .category-card { min-height: 260px; }
      .feature-card { padding: 25px 22px; }
      .image-mosaic { grid-template-rows: 150px 150px; gap: 10px; }
      .review-card { width: min(300px, calc(100vw - 52px)); min-height: 0; }
      .final-cta { padding: 75px 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 29px; padding-bottom: 39px; }
      .whatsapp-float { right: 14px; bottom: 14px; min-width: 53px; padding: 11px; justify-content: center; }
      .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; }
      .lead-modal { padding: 16px; }
      .lead-dialog__content { padding: 28px 22px 23px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
      .js .reveal { opacity: 1; transform: none; }
      .marquee-track { width: auto; flex-wrap: wrap; animation: none; }
      .marquee-track > [aria-hidden="true"] { display: none; }
      .lead-dialog::before { animation: none; }
      .interaction-cursor, .cursor-symbol { animation: none !important; transition: none !important; }
    }

