/* Mundial Elevadores Fortaleza — CSS puro */
:root {
    --gold: #c0a375;
    --gold-light: #f1c050;
    --gold-soft: #f3c649;
    --green: #0f6932;
    --graphite: #2d2d2d;
    --ink: #1b1b1b;
    --gray: #ececee;
    --gray-2: #f7f6f3;
    --muted: #6b6b6b;
    --white: #fff;
    --radius: 18px;
    --shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.45);
    --max: 1180px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
  }
  
  body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
  }
  
  h1,
  h2,
  h3 {
    font-family: "Sora", "Inter", sans-serif;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0 0 0.6em;
  }
  
  h1 {
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    font-weight: 800;
  }
  h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    font-weight: 700;
  }
  h3 {
    font-size: 1.15rem;
    font-weight: 700;
  }
  p {
    margin: 0 0 1rem;
  }
  img {
    max-width: 100%;
    display: block;
  }
  a {
    color: inherit;
  }
  
  .container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 22px;
  }
  .container.narrow {
    max-width: 840px;
  }
  
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  
  .skip-link {
    position: absolute;
    left: -999px;
  }
  .skip-link:focus {
    left: 12px;
    top: 12px;
    z-index: 99;
    background: var(--white);
    padding: 10px 14px;
    border-radius: 8px;
  }
  
  .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.7rem;
  }
  
  .lead {
    color: var(--muted);
    font-size: 1.05rem;
    max-width: 68ch;
  }
  
  .note {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 1.2rem;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border: 0;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease;
  }
  .btn-primary {
    background: linear-gradient(120deg, var(--gold), var(--gold-light));
    color: var(--ink);
    box-shadow: 0 14px 28px -16px rgba(192, 163, 117, 0.9);
  }
  .btn-primary:hover {
    transform: translateY(-2px);
  }
  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
  }
  .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
  }
  .btn-whats {
    background: var(--green);
    color: var(--white);
  }
  .btn-whats:hover {
    transform: translateY(-2px);
  }
  
  /* Header */
  .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 50;
    background: rgba(27, 27, 27, 0.28);
    backdrop-filter: blur(10px);
    transition:
      background 0.3s ease,
      box-shadow 0.3s ease;
  }
  .site-header.is-solid {
    background: rgba(27, 27, 27, 0.95);
    box-shadow: 0 8px 30px -18px rgba(0, 0, 0, 0.8);
  }
  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 78px;
  }
  .brand {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    text-decoration: none;
    color: var(--white);
  }
  .brand img {
    border-radius: 10px;
    background: var(--white);
    padding: 4px;
  }
  .brand strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.02rem;
    line-height: 1.1;
  }
  .brand small {
    color: var(--gold-light);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .main-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
  }
  .main-nav a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
  }
  .main-nav a:hover,
  .main-nav a.is-current {
    color: var(--white);
    border-color: var(--gold);
  }
  .main-nav a.is-current {
    color: var(--gold-light);
  }
  .main-nav .nav-cta {
    border: 0;
    color: var(--white);
    padding: 0.6rem 1.15rem;
  }
  
  .nav-toggle {
    display: none;
    width: 46px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: transparent;
    position: relative;
    cursor: pointer;
  }
  .nav-toggle-bar,
  .nav-toggle-bar::before,
  .nav-toggle-bar::after {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--white);
    transform: translateX(-50%);
    content: "";
  }
  .nav-toggle-bar {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  .nav-toggle-bar::before {
    top: -6px;
  }
  .nav-toggle-bar::after {
    top: 6px;
  }
  
  /* Hero */
  .hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 150px 0 90px;
    color: var(--white);
    overflow: hidden;
  }
  .hero-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  .hero-single .hero-media {
    opacity: 0.5;
  }
  .hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.06);
    transition:
      opacity 1.2s ease,
      transform 6s linear;
  }
  .hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(20, 20, 20, 0.92) 12%, rgba(20, 20, 20, 0.55) 70%);
  }
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
  }
  .hero-text {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    max-width: 60ch;
  }
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.6rem 0 2.4rem;
  }
  .hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
  }
  .hero-badges li {
    border: 1px solid rgba(241, 192, 80, 0.55);
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    font-size: 0.82rem;
    color: var(--gold-light);
    background: rgba(0, 0, 0, 0.28);
  }
  
  /* Sections */
  .section {
    padding: clamp(64px, 9vw, 110px) 0;
  }
  .section-alt {
    background: var(--gray-2);
  }
  .section-dark {
    background: var(--graphite);
    color: var(--white);
  }
  .section-dark h2,
  .section-dark h3 {
    color: var(--white);
  }
  .section-dark .lead,
  .section-dark p {
    color: rgba(255, 255, 255, 0.82);
  }
  .section-dark .form h3 {
    color: var(--ink);
  }
  .section-dark .form p,
  .section-dark .form-note {
    color: var(--muted);
  }
  .section-head {
    margin-bottom: 2.6rem;
    max-width: 780px;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px, 5vw, 64px);
    align-items: center;
  }
  .split-reverse .split-media {
    order: 2;
  }
  .split-media img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover;
  }

  .stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-top: 1.6rem;
  }
  .stats div {
    min-width: 120px;
  }
  .stats strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.9rem;
    color: var(--green);
  }
  .stats span {
    font-size: 0.85rem;
    color: var(--muted);
  }
  .section-dark .stats span {
    color: rgba(255, 255, 255, 0.72);
  }
  
  /* Cards */
  .cards {
    display: grid;
    gap: 24px;
  }
  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .mini-cards {
    margin-top: 24px;
  }
  .card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 16px 36px -30px rgba(0, 0, 0, 0.6);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px -26px rgba(0, 0, 0, 0.5);
  }
  .card-photo img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  .card-body {
    padding: 1.35rem 1.4rem 1.6rem;
  }
  .card-body p {
    color: var(--muted);
    margin: 0;
    font-size: 0.95rem;
  }
  .card-mini {
    padding: 1.4rem;
    border-top: 3px solid var(--gold);
  }
  .card-mini p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
  }
  
  .feature-strip {
    margin-top: 36px;
    background: var(--graphite);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.8rem;
  }
  .feature-strip ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.9rem 1.8rem;
  }
  .feature-strip li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
  }
  .feature-strip li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--gold-light);
  }
  
  /* Marcas */
  .brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    background: var(--gray-2);
    font-family: "Sora", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    padding: 1rem;
    transition:
      border-color 0.25s ease,
      transform 0.25s ease;
  }
  .brand-item:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
  }
  
  /* Fornecedores */
  .supplier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .supplier {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.6rem;
    border-left: 4px solid var(--gold);
    box-shadow: 0 16px 36px -32px rgba(0, 0, 0, 0.6);
  }
  .supplier h3 {
    margin-bottom: 0.25rem;
  }
  .supplier p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
  }
  .supplier-highlight {
    border-left-color: var(--green);
    background: linear-gradient(160deg, rgba(15, 105, 50, 0.08), rgba(255, 255, 255, 0.9));
  }
  
  /* Galeria */
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gallery-item {
    padding: 0;
    border: 0;
    background: none;
    cursor: zoom-in;
    border-radius: 14px;
    overflow: hidden;
  }
  .gallery-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.07);
  }
  
  .lightbox {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .lightbox[hidden] {
    display: none;
  }
  .lightbox img {
    max-width: min(1000px, 92vw);
    max-height: 86vh;
    border-radius: 12px;
  }
  .lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 2.4rem;
    line-height: 1;
    background: none;
    border: 0;
    color: var(--white);
    cursor: pointer;
  }
  
  /* FAQ */
  .faq details {
    background: var(--white);
    border-radius: 14px;
    padding: 1.05rem 1.3rem;
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.07);
  }
  .faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: "Sora", sans-serif;
    list-style: none;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .faq summary::-webkit-details-marker {
    display: none;
  }
  .faq summary::after {
    content: "+";
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
  }
  .faq details[open] summary::after {
    content: "–";
  }
  .faq details p {
    margin: 0.8rem 0 0;
    color: var(--muted);
  }
  
  /* Contato */
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6rem;
    display: grid;
    gap: 1.1rem;
  }
  .contact-list strong {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 0.25rem;
  }
  .contact-list a {
    text-decoration: none;
  }
  .contact-list a:hover {
    color: var(--green);
  }
  .map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    display: block;
  }
  
  .form {
    background: var(--white);
    border-radius: var(--radius);
    padding: clamp(1.4rem, 3vw, 2.2rem);
    display: grid;
    gap: 0.9rem;
    color: var(--ink);
    box-shadow: var(--shadow);
  }
  .form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
  }
  .form input,
  .form select,
  .form textarea {
    font: inherit;
    font-weight: 400;
    padding: 0.75rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 12px;
    background: var(--white);
  }
  .form input:focus,
  .form select:focus,
  .form textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 1px;
  }
  .form .btn {
    justify-self: start;
  }
  .form-note {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0;
  }
  .form-optional {
    font-weight: 400;
    color: var(--muted);
  }
  
  /* Footer */
  .site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.78);
    padding: 60px 0 24px;
    font-size: 0.92rem;
  }
  .footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 32px;
  }
  .footer-inner img {
    background: var(--white);
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 1rem;
  }
  .site-footer nav {
    display: grid;
    gap: 0.5rem;
    align-content: start;
  }
  .site-footer nav a {
    text-decoration: none;
  }
  .site-footer nav a:hover {
    color: var(--gold-light);
  }
  .copyright {
    margin-top: 40px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.82rem;
  }
  
  .whats-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, 0.6);
  }
  .whats-float:hover {
    transform: translateY(-3px);
  }

  .cookie-banner {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 70;
    max-width: 360px;
    padding: 16px 18px;
    background: var(--white);
    color: var(--ink);
    border-radius: var(--radius);
    box-shadow: var(--shadow), 0 0 0 1px rgba(0, 0, 0, 0.06);
  }
  .cookie-banner p {
    margin: 0 0 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--muted);
  }
  .cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
  }
  .cookie-banner-actions a {
    font-size: 0.78rem;
    color: var(--green);
    text-underline-offset: 2px;
  }
  .cookie-banner .cookie-banner-accept {
    padding: 0.5rem 1.1rem;
    font-size: 0.82rem;
  }
  
  /* Reveal */
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.7s ease,
      transform 0.7s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
  
  @media (max-width: 980px) {
    .cards-3,
    .cards-4,
    .supplier-grid,
    .brand-grid,
    .feature-strip ul {
      grid-template-columns: repeat(2, 1fr);
    }
    .gallery {
      grid-template-columns: repeat(3, 1fr);
    }
    .split {
      grid-template-columns: 1fr;
    }
    .split-reverse .split-media {
      order: 0;
    }
    .footer-inner {
      grid-template-columns: 1fr 1fr;
    }
    .nav-toggle {
      display: block;
    }
    .main-nav {
      position: absolute;
      top: 78px;
      left: 0;
      right: 0;
      background: rgba(20, 20, 20, 0.98);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: 0 22px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .main-nav.is-open {
      max-height: 80vh;
      overflow: auto;
      padding: 12px 22px 22px;
    }
    .main-nav a {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .main-nav .nav-cta {
      margin-top: 14px;
      text-align: center;
    }
  }
  
  @media (max-width: 620px) {
    .cards-3,
    .cards-4,
    .supplier-grid,
    .brand-grid,
    .feature-strip ul,
    .footer-inner {
      grid-template-columns: 1fr;
    }
    .gallery {
      grid-template-columns: repeat(2, 1fr);
    }
    .hero {
      min-height: auto;
      padding: 130px 0 70px;
    }
    .cookie-banner {
      left: 12px;
      right: 86px;
      bottom: 16px;
      max-width: none;
    }
  }
  
  @media (prefers-reduced-motion: reduce) {
    * {
      transition: none !important;
      animation: none !important;
    }
    .reveal {
      opacity: 1;
      transform: none;
    }
  }
  