  :root {
    --accent: #0020b1;
    --accent-dark: #071a66;
    --accent-soft: #edf2ff;
    --whatsapp: #25D366;
    --surface: #ffffff;
    --bg: #f4f6fb;
    --muted: #6b7280;
    --dark: #1f2933;
    --container: 1300px;
    --radius: 12px;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  body {
    margin: 0;
    font-family: 'Poppins', system-ui, Arial;
    color: var(--dark);
    background: #f5f7fb;
    line-height: 1.45;
    /* espaço para compensar header fixo */
    padding-top: 68px;
    width: 100%;
    overflow-x: hidden;
  }

  body.menu-open {
    overflow: hidden;
  }

  html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
  }

  button,
  a {
    transition: all .25s ease;
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  img,
  video {
    max-width: 100%;
    height: auto;
  }

  .container {
    max-width: var(--container);
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
  }

  /* =====================================================
    HEADER
  ===================================================== */
  header {
    background: linear-gradient(90deg, var(--accent), #2b50ff);
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    box-shadow: 0 6px 25px rgba(0, 0, 0, .08);
    backdrop-filter: blur(6px);
    transition: transform .3s ease;
  }

  header.scrolled {
    background: linear-gradient(90deg, var(--accent), #2b50ff);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
  }

  header.hide {
    transform: translateY(-100%);
  }


  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
  }


  /*===============TRUST=====================*/

  .trust {
    text-align: center;
    padding: 50px 0;
  }

  .trust h2 {
    color: #1f2933;
    margin-bottom: 25px;
  }

  .trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }

  .trust-grid div {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    font-weight: 600;
    transition: .25s;
  }

  .trust-grid div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  }

  /* =========================
   FAQ
========================= */

  .faq {
    padding: 72px 1rem;
    max-width: 900px;
    margin: auto;
  }

  .faq h2 {
    text-align: center;
    color: #1f2933;
    margin-bottom: 30px;
  }

  .faq .section-kicker {
    display: block;
    text-align: center;
  }

  .faq-item {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
    margin-bottom: 12px;
    overflow: hidden;
  }

  .faq-item summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
    padding: 18px 52px 18px 20px;
    position: relative;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 50%;
    color: var(--accent);
    content: "+";
    display: flex;
    font-size: 1.15rem;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
  }

  .faq-item[open] summary::after {
    content: "-";
  }

  .faq-item p {
    color: var(--muted);
    margin: 0;
    padding: 0 20px 20px;
  }

  /* =====================================================
   BRAND
  ===================================================== */
  .brand {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    color: #fff;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: #fff;
    padding: 1px;

  }

  .brand span {
    font-size: 1rem;
    line-height: 1.1;
    font-weight: 500;
  }

  /* =====================================================
    MENU DE NAVEGAÇÃO
  ===================================================== */
  nav {
    display: flex;
    align-items: center;
    gap: 1.0rem;
    margin-left: auto;
  }

  /* links principais */
  .nav-links {
    display: flex;
    gap: 1.0rem;
  }

  .nav-links a {
    font-weight: 500;
    position: relative;

  }

  .nav-links a {

    font-size: 1.1rem;
  }

  .nav-links a:hover {
    opacity: .8;

  }

  .nav-links a.is-active {
    font-weight: 700;
  }

  .nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #fff;
    transition: .3s;
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  .nav-links a.is-active::after {
    width: 100%;
  }

  /*=====================
    Dropdown
  =======================*/

  .dropdown-menu {
    position: relative;
  }


  .dropdown-btn {
    background: scroll;
    border: none;
    color: white;
    font-family: inherit;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: 500;
    padding: 0;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    background: #fff;
    min-width: 210px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .18);
    z-index: 9999;
  }

  .dropdown-content a {
    display: block;
    padding: 13px 16px;
    color: var(--dark) !important;
    position: static;
  }

  .dropdown-content a:hover {
    background: var(--accent-soft);
    color: var(--accent) !important;
  }

  .dropdown-menu.active .dropdown-content {
    display: block;

  }


  .dropdown-btn:hover {
    opacity: .8;
  }

  .dropdown-content a {
    display: block;
    padding: 13px 16px;
    color: var(--dark) !important;
  }

  .dropdown-content a::before,
  .dropdown-content a::after {
    content: none !important;
    display: none !important;
  }

  .dropdown-content a:hover {
    background: var(--accent-soft);
    color: var(--accent) !important;
  }

  /*==========================
  HERO
  =============================*/

  .hero {
    min-height: 76vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 88px 20px 116px;

    background:
      linear-gradient(90deg, rgba(5, 18, 64, .86), rgba(0, 32, 177, .68)),
      url("../../imagens/imagem-12.jpg");

    background-size: cover;
    background-position: center;

    color: white;
  }

  .hero-content {
    max-width: 840px;
  }

  .hero h1 {
    font-size: 3.15rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero p {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .hero-buttons .btn-secondary {

    background-color: #0020b1;

  }

  .hero-badge {

    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: .9rem;
  }

  .hero-contact-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .88);
    font-size: .95rem;
    font-weight: 600;
  }

  .hero-contact-links a {
    border-bottom: 1px solid rgba(255, 255, 255, .5);
  }

  /* =====================================================
    Telefone Header
  ===================================================== */
  .telefone-img {

    width: 22px;
    height: 22px;

  }

  .contact-phone {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .9rem;
    color: #fff;
  }

  /* =====================================================
    ÍCONE DO INSTAGRAM
  ===================================================== */


  .social-img-link:hover {
    background: rgba(255, 255, 255, .35);
    transform: translateY(-2px);
  }

  .social-img {
    width: 23px;
    height: 23px;

  }

  /* =====================================================
    MENU MOBILE
  ===================================================== */
  .hamburger {
    display: none;
    font-size: 22px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 2100;
  }

  .btn-primary {
    background: #25D366;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .btn-primary:hover {
    transform: translateY(-3px);
  }


  .btn-secondary {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .06);
    padding: .6rem 1.1rem;
    border-radius: 8px;
    font-weight: 600;
    transition: .25s;
    display: inline-block;
    width: auto;
    max-width: 100%;
    cursor: pointer;
  }


  .btn-secondary:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
    transform: translateY(-2px);
  }


  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all .6s ease;
  }

  .reveal.show {
    opacity: 1;
    transform: translateY(0);
  }

  .section-kicker {
    color: var(--accent);
    display: inline-block;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  .quick-contact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: -58px;
    position: relative;
    z-index: 2;
  }

  .quick-contact a {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .12);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 104px;
    padding: 22px;
  }

  .quick-contact strong {
    color: var(--accent-dark);
    font-size: 1.05rem;
  }

  .quick-contact span {
    color: var(--muted);
    font-size: .93rem;
  }

  .quick-contact a:hover {
    border-color: rgba(0, 32, 177, .24);
    transform: translateY(-3px);
  }

  /* =====================================================
   SPLIT
  ===================================================== */
  .split {
    background: #fff;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;

    padding: 48px 2rem;

    max-width: 1200px;
    margin: 0 auto;

    border-radius: 8px;
    box-shadow: 0 18px 55px rgba(15, 23, 42, .08);
  }

  .split img {
    width: 100%;
    height: 100%;
    max-height: 460px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(17, 24, 39, .12);
  }

  .split h2 {
    margin-top: 0;
    color: var(--dark);
    font-size: 1.6rem;
  }

  .split p {
    color: #4b5563;
  }


  /* =====================================================
    SERVIÇOS
  ===================================================== */
  .services {
    padding: 56px 0;
    text-align: center;
  }

  .services h2 {
    color: #1f2933;
    font-size: 1.65rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
  }


  .card {
    background: #fff;
    border-radius: 12px;
    padding: 1.4rem;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform .25s ease, box-shadow .25s ease;
  }

  .card::before {
    content: "";
    position: relative;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #1f2933;
  }

  .card .icon {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(49, 88, 248, .06), rgba(49, 88, 248, .02));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .75rem;
  }

  .card h3 {
    font-size: 1.05rem;
    margin: .1rem 0 .6rem;
  }

  .card p {
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
  }

  .card:hover {

    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
    transform: translateY(-8px);
  }

  .card-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* =====================================================
    CATALOGO DE PRODUTOS
  ===================================================== */

  .product-page {
    background: #f6f8fb;
  }

  .products-hero {
    background:
      linear-gradient(90deg, rgba(5, 18, 64, .9), rgba(0, 32, 177, .72)),
      url("../../imagens/imagem-12.jpg");
    background-position: center;
    background-size: cover;
    color: #fff;
    padding: 88px 0 70px;
  }

  .products-hero-inner {
    align-items: end;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  }

  .products-hero-copy h1 {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    margin: 0 0 18px;
    max-width: 780px;
  }

  .products-hero-copy p {
    color: rgba(255, 255, 255, .86);
    font-size: 1.04rem;
    margin: 0;
    max-width: 690px;
  }

  .products-hero .section-kicker {
    color: rgba(255, 255, 255, .8);
  }

  .products-hero .btn-secondary {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .32);
    color: #fff;
  }

  .products-hero .btn-secondary:hover {
    background: #fff;
    border-color: #fff;
    color: var(--accent-dark);
  }

  .products-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
  }

  .products-hero-highlights {
    align-content: end;
    display: grid;
    gap: 10px;
  }

  .products-hero-highlights span {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    padding: 16px 18px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .12);
  }

  .home-products {
    background: #fff;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    border-top: 1px solid rgba(15, 23, 42, .08);
    padding: 64px 0;
  }

  .home-products .catalog-heading {
    margin-bottom: 24px;
  }

  .home-product-grid {
    margin-top: 0;
  }

  .home-products-empty {
    align-items: center;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    padding: 22px;
  }

  .home-products-empty p {
    color: var(--muted);
    margin: 0;
  }

  .product-catalog {
    padding-bottom: 76px;
    padding-top: 42px;
  }

  .catalog-heading {
    align-items: end;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 18px;
  }

  .catalog-heading h2 {
    font-size: 1.9rem;
    margin: 0;
  }

  .catalog-heading p {
    color: var(--muted);
    font-weight: 700;
    margin: 0;
  }

  .product-filters {
    align-items: end;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(220px, 1.35fr) minmax(150px, .75fr) minmax(150px, .75fr) auto;
    margin-bottom: 28px;
    padding: 18px;
  }

  .product-filters label {
    display: grid;
    gap: 7px;
  }

  .product-filters span {
    color: var(--dark);
    font-size: .82rem;
    font-weight: 700;
  }

  .product-filters input,
  .product-filters select {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .12);
    border-radius: 8px;
    color: var(--dark);
    font: inherit;
    min-height: 46px;
    outline: none;
    padding: 0 13px;
    width: 100%;
  }

  .product-filters input:focus,
  .product-filters select:focus {
    background: #fff;
    border-color: rgba(0, 32, 177, .45);
    box-shadow: 0 0 0 4px rgba(0, 32, 177, .1);
  }

  .product-filter-actions {
    align-items: center;
    display: flex;
    gap: 12px;
  }

  .product-filter-actions .btn-secondary {
    min-height: 46px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .filter-clear {
    color: var(--muted);
    font-size: .92rem;
    font-weight: 700;
  }

  .filter-clear:hover {
    color: var(--accent);
  }

  .product-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  }

  .product-card:hover {
    border-color: rgba(0, 32, 177, .18);
    box-shadow: 0 20px 42px rgba(15, 23, 42, .11);
    transform: translateY(-4px);
  }

  .product-card-media {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f8fafc, #eef4ff);
    display: flex;
    justify-content: center;
    overflow: hidden;
    padding: 18px;
  }

  .product-card-media img {
    height: 100%;
    object-fit: contain;
    width: 100%;
  }

  .product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 18px;
  }

  .product-card-topline {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: .82rem;
    font-weight: 700;
    gap: 10px;
    justify-content: space-between;
  }

  .product-status {
    border-radius: 999px;
    display: inline-flex;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1;
    padding: 8px 10px;
  }

  .product-status,
  .product-status.is-available {
    background: rgba(37, 211, 102, .12);
    border: 1px solid rgba(37, 211, 102, .26);
    color: #08733a;
  }

  .product-status.is-unavailable {
    background: #fef2f2;
    border: 1px solid rgba(220, 38, 38, .18);
    color: #991b1b;
  }

  .product-status.is-hidden {
    background: #f1f5f9;
    border: 1px solid rgba(100, 116, 139, .18);
    color: #475569;
  }

  .product-card h3 {
    color: var(--dark);
    font-size: 1.04rem;
    line-height: 1.25;
    margin: 0;
  }

  .product-card h3 a:hover {
    color: var(--accent);
  }

  .product-card-description {
    color: #5f6b7a;
    font-size: .93rem;
    margin: 0;
  }

  .product-card-footer {
    display: grid;
    gap: 14px;
    margin-top: auto;
  }

  .product-price {
    color: var(--accent-dark);
    font-size: 1.35rem;
  }

  .product-card-actions {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr;
  }

  .product-card-actions .btn-primary,
  .product-card-actions .btn-secondary {
    min-height: 44px;
    padding: 10px 14px;
    text-align: center;
    width: 100%;
  }

  .product-empty {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    margin: 28px auto 0;
    max-width: 720px;
    padding: 34px;
    text-align: center;
  }

  .product-empty h1,
  .product-empty h3 {
    margin: 0 0 10px;
  }

  .product-empty p {
    color: var(--muted);
    margin: 0 0 20px;
  }

  .product-detail {
    padding-bottom: 82px;
    padding-top: 46px;
  }

  .product-back {
    color: var(--accent);
    display: inline-flex;
    font-size: .94rem;
    font-weight: 700;
    margin-bottom: 18px;
  }

  .product-back:hover {
    color: var(--accent-dark);
  }

  .product-detail-grid {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  }

  .product-detail-media {
    align-items: center;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    min-height: 520px;
    overflow: hidden;
    padding: 26px;
  }

  .product-detail-media img {
    max-height: 520px;
    object-fit: contain;
    width: 100%;
  }

  .product-detail-info {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .08);
    padding: 28px;
    position: sticky;
    top: 88px;
  }

  .product-detail-info h1 {
    font-size: clamp(1.8rem, 3vw, 2.55rem);
    line-height: 1.12;
    margin: 14px 0 18px;
  }

  .product-detail-specs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 18px;
  }

  .product-detail-specs div {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    padding: 13px;
  }

  .product-detail-specs span {
    color: var(--muted);
    display: block;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 4px;
  }

  .product-detail-specs strong {
    color: var(--dark);
    font-size: .95rem;
  }

  .product-detail-price {
    color: var(--accent-dark);
    font-size: 2rem;
    font-weight: 700;
    margin: 8px 0 18px;
  }

  .product-description {
    color: #4b5563;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .product-detail-actions .btn-primary,
  .product-detail-actions .btn-secondary {
    min-height: 48px;
  }

  .product-service-note {
    background: #f8fafc;
    border-left: 4px solid var(--accent);
    border-radius: 8px;
    padding: 16px;
  }

  .product-service-note strong {
    display: block;
    margin-bottom: 6px;
  }

  .product-service-note p {
    color: var(--muted);
    margin: 0;
  }

  .cta-band {
    background: linear-gradient(90deg, var(--accent-dark), var(--accent));
    color: #fff;
    margin: 26px 0;
    padding: 42px 0;
  }

  .cta-band-inner {
    align-items: center;
    display: flex;
    gap: 26px;
    justify-content: space-between;
  }

  .cta-band h2 {
    margin: 0 0 8px;
  }

  .cta-band p {
    color: rgba(255, 255, 255, .82);
    margin: 0;
  }

  .cta-band .section-kicker {
    color: rgba(255, 255, 255, .76);
  }

  .cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .cta-band .btn-secondary {
    color: var(--accent-dark);
  }

  /* =====================================================
    GALERIA
  ===================================================== */
  .gallery {
    padding: 30px 0;
    text-align: center;
  }

  .gallery h2 {
    color: #1f2933;
    margin-bottom: 24px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
  }

  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 2 / 2;
    cursor: zoom-in;
    outline: none;
  }

  .gallery-item img {
    transition: transform .35s ease;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .gallery-item:hover img {
    transform: scale(1.07);
  }

  .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .15);
    opacity: 0;
    transition: .3s;
  }

  .gallery-item:hover::after {
    opacity: 1;
  }

  .gallery-item:focus-visible {
    box-shadow: 0 0 0 4px rgba(43, 80, 255, .25);
  }


  /* =====================================================
    FORMULÁRIO DE CONTATO
  ===================================================== */
  .contact-section {
    padding: 56px 0;
  }

  section {
    scroll-margin-top: 90px;

  }

  .contact-section {
    background: #eef3ff;
    padding: 64px 0;
  }

  .contact-card {
    display: grid;
    gap: 30px;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    max-width: 1100px;
    margin: auto;
    padding: 0 1rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .contact-copy p {
    color: #4b5563;
    max-width: 56ch;
  }

  .contact-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-option {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
    display: flex;
    flex-direction: column;
    gap: 9px;
    min-height: 180px;
    padding: 20px;
  }

  .contact-option:hover {
    border-color: rgba(0, 32, 177, .24);
    transform: translateY(-3px);
  }

  .contact-icon {
    align-items: center;
    background: var(--accent-soft);
    border-radius: 8px;
    color: var(--accent);
    display: flex;
    font-weight: 700;
    height: 42px;
    justify-content: center;
    width: 42px;
  }

  .contact-whatsapp .contact-icon {
    background: rgba(37, 211, 102, .14);
    color: #128c45;
  }

  .contact-option strong {
    color: var(--dark);
  }

  .contact-option span:last-child {
    color: var(--muted);
    font-size: .93rem;
  }

  /* =====================================================
    HORÁRIO
  ===================================================== */
  .hours {
    padding: 40px 0;
    text-align: center;
  }

  .hours h3 {
    font-size: 1.25rem;
  }

  .hours p {
    color: var(--muted);
  }

  /* =====================================================
    FOOTER
  ===================================================== */
  footer {
    background: #171b24;
    color: #dfe6ee;
    padding: 0 0 34px;
    margin-top: 0;
  }

  footer>p {
    text-align: center;
    margin: 30px 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 20px;
  }

  .footer-cta {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    gap: 24px;
    justify-content: space-between;
    margin-bottom: 34px;
    padding-bottom: 34px;
    padding-top: 40px;
  }

  .footer-cta h2 {
    color: #fff;
    margin: 0 0 8px;
  }

  .footer-cta p {
    color: #b9c3d1;
    margin: 0;
  }

  .footer-cta .section-kicker {
    color: rgba(255, 255, 255, .68);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr .8fr .9fr;
    gap: 1.5rem;
    margin: 0 auto;
    max-width: var(--container);
    padding: 0 1rem;
  }

  .footer-grid img {
    width: 70px;
    border-radius: 8px;
  }

  .footer-grid h4 {
    color: #fff;
    margin-bottom: 10px;
  }

  .footer-grid p {
    color: #d0d6dd;
    font-size: .95rem;
    margin: 6px 0;
  }

  .footer-grid a {
    color: #d0d6dd;
    font-size: .95rem;
  }

  .footer-grid a:hover {
    color: #fff;
  }

  /*=======================WHATSAPP==========================*/

  .whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
    z-index: 999;
    animation: pulseWhats 2s infinite;
  }

  .whatsapp-float img {
    width: 28px;
  }

  @keyframes pulseWhats {

    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, .7);
    }

    70% {
      box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }

  }

  /* =====================================================
    LIGHTBOX DA GALERIA
  ===================================================== */
  .lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 24, .88);
    align-items: center;
    justify-content: center;
    z-index: 5000;
    padding: 72px 88px 44px;
    touch-action: pan-y;
  }

  body.lightbox-open {
    overflow: hidden;
  }

  .lightbox.active {
    display: flex;
  }

  .lightbox-content {
    margin: 0;
    width: min(100%, 1080px);
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    touch-action: pan-y;
    user-select: none;
  }

  .lightbox-image {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 150px);
    border-radius: 8px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .45);
    object-fit: contain;
  }

  .lightbox-counter {
    color: rgba(255, 255, 255, .86);
    font-size: .95rem;
    font-weight: 600;
  }

  .lightbox-close,
  .lightbox-nav {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .14);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .25);
  }

  .lightbox-close:hover,
  .lightbox-nav:hover,
  .lightbox-close:focus-visible,
  .lightbox-nav:focus-visible {
    background: #fff;
    color: var(--accent);
    outline: none;
    transform: translateY(-1px);
  }

  .lightbox-close {
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    font-size: 2rem;
    line-height: 1;
  }

  .lightbox-nav {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 3rem;
    line-height: 1;
    transform: translateY(-50%);
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: translateY(-50%) scale(1.04);
  }

  .lightbox-prev {
    left: 22px;
  }

  .lightbox-next {
    right: 22px;
  }

  /* =====================================================
    RESPONSIVIDADE
  ===================================================== */

  /* MENU MOBILE */
  @media(max-width:1024px) {

    .hamburger {
      display: block;
      position: relative;
      z-index: 3000;
    }

    .nav-links {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;

      background: linear-gradient(90deg, var(--accent), #2b50ff);

      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 2rem;

      transform: translateY(-100%);
      transition: transform .3s ease;

      z-index: 2500;
    }

    .nav-links.active {
      transform: translateY(0);
    }

    .dropdown-content {
      position: static;
      display: none;
      width: 100%;
      background: rgba(255, 255, 255, .1);
      box-shadow: none;
    }

    .dropdown-menu.active .dropdown-content {
      display: block;
    }

    .dropdown-content a {
      color: white !important;
    }

    .dropdown-content a:hover {
      background: rgba(255, 255, 255, .14);
      color: #fff !important;
    }

    .products-hero-inner,
    .product-detail-grid {
      grid-template-columns: 1fr;
    }

    .products-hero-highlights {
      grid-template-columns: repeat(3, 1fr);
    }

    .product-filters {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-filter-actions {
      align-self: stretch;
    }

    .product-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-detail-info {
      position: static;
    }

    .contact-card {
      grid-template-columns: 1fr;
    }

    .cta-band-inner {
      align-items: flex-start;
      flex-direction: column;
    }

    .footer-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-cta {
      align-items: flex-start;
      flex-direction: column;
    }

  }

  /* MOBILE */
  @media(max-width:720px) {


    .hero {
      min-height: 60vh;
    }

    .hero h1 {
      font-size: 2rem;
    }

    .hero p {
      font-size: 1rem;
    }

    .hero {
      padding-bottom: 92px;
    }

    .hero-buttons,
    .cta-band-actions {
      flex-direction: column;
      width: 100%;
    }

    .hero-buttons a,
    .cta-band-actions a {
      width: 100%;
    }

    .hero-contact-links {
      gap: 8px 14px;
    }

    .products-hero {
      padding: 48px 0 38px;
    }

    .home-products {
      padding: 48px 0;
    }

    .home-products-empty {
      align-items: stretch;
      flex-direction: column;
      text-align: center;
    }

    .products-hero-copy h1 {
      font-size: 2rem;
    }

    .products-hero-actions,
    .product-detail-actions {
      flex-direction: column;
      width: 100%;
    }

    .products-hero-actions a,
    .product-detail-actions a {
      width: 100%;
    }

    .products-hero-highlights,
    .product-filters,
    .product-grid,
    .product-detail-specs {
      grid-template-columns: 1fr;
    }

    .catalog-heading {
      align-items: flex-start;
      flex-direction: column;
      gap: 8px;
    }

    .catalog-heading h2 {
      font-size: 1.5rem;
    }

    .product-filter-actions {
      align-items: stretch;
      flex-direction: column;
    }

    .product-filter-actions .btn-secondary,
    .filter-clear {
      text-align: center;
      width: 100%;
    }

    .product-card-actions {
      grid-template-columns: 1fr;
    }

    .product-detail {
      padding-top: 30px;
    }

    .product-detail-media {
      min-height: 320px;
      padding: 18px;
    }

    .product-detail-info {
      padding: 22px;
    }

    .product-detail-price {
      font-size: 1.65rem;
    }

    .quick-contact {
      grid-template-columns: 1fr;
      margin-top: -42px;
    }

    .split {

      background: linear-gradient(180deg, #f7f9ff, #eef2ff);
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;

      margin: 1.5rem auto;
      padding: 0 1.5rem;

      max-width: 1000px;
    }

    .contact-grid {
      grid-template-columns: 1fr;
    }

    .contact-option {
      min-height: auto;
    }

    .gallery-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
      grid-template-columns: 1fr;
      margin-left: auto;
      margin-right: auto;
    }

    .footer-grid {
      grid-template-columns: 1fr;
    }

    .footer-cta .btn-primary {
      width: 100%;
    }

    .faq {
      padding-top: 54px;
      padding-bottom: 54px;
    }

    .faq h2 {
      font-size: 1.55rem;
    }

    .contact-phone {
      display: flex;
      font-size: .7rem;
    }

    .contact-phone a {
      display: none;
      /* mostra só o ícone */
    }

    .services {
      padding-left: 10px;
      padding-right: 10px;
    }

    .card {
      padding: 1.6rem;
    }

    /* ajustes header mobile */

    .brand span {
      font-size: .9rem;
    }

    .brand img {
      width: 36px;
      height: 36px;
    }

    nav {
      gap: 0.6rem;
    }


    .social-img-link {
      display: flex;
    }


    .lightbox {
      padding: 72px 14px 86px;
    }

    .lightbox-image {
      max-height: calc(100vh - 180px);
    }

    .lightbox-close {
      top: 14px;
      right: 14px;
      width: 42px;
      height: 42px;
    }

    .lightbox-nav {
      top: auto;
      bottom: 18px;
      width: 46px;
      height: 46px;
      font-size: 2.5rem;
      transform: none;
    }

    .lightbox-nav:hover,
    .lightbox-nav:focus-visible {
      transform: scale(1.04);
    }

    .lightbox-prev {
      left: calc(50% - 58px);
    }

    .lightbox-next {
      right: calc(50% - 58px);
    }



  }
