/* ROOT */
body {
    background: #0b0b0b;
    color: #eee;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
}
/* NAVBAR */
.navbar {
    transition: .3s;
}
.navbar-scrolled {
    background: #000 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    border-bottom: 2px solid #F8C400;
}
/* HERO */
.hero {
    height: 95vh;
    position: relative;
    overflow: hidden;
}
.hero-layer1, .hero-layer2, .hero-layer3 {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.22;
}
.hero-layer1 {
    background-image: url('img/hero-1.jpg');   /* textura aço */
    z-index: -3;
}
.hero-layer2 {
    background-image: url("img/hero-2.jpg");   /* textura metal perfurado */
    z-index: -2;
}
.hero-layer3 {
    background-image: url("img/hero-3.jpg");   /* textura concreto */
    z-index: -1;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: 0;
}
.btn-yellow {
    background: #F8C400;
    color: #000;
    border-radius: 50px;
    font-weight: 700;
    padding: 12px 32px;
    transition: .3s;
}
.btn-yellow:hover {
    background: #d6a600;
}
/* SOBRE NÓS */
.sobre-container {
    background: #fff;
    color: #333;
    padding: 80px 0;
}
.sobre-img {
    border-radius: 40px;
    width: 100%;
    height: auto;
}
.sobre-btn {
    background: #F8C400;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 40px;
    border: none;
}
/* SERVIÇOS */
.servico-item {
    text-align: center;
}
.servico-item img {
    width: 90px;
    margin-bottom: 10px;
}
.servico-item h5 {
    font-weight: 700;
}
.servico-item span {
    display: block;
    width: 30px;
    height: 4px;
    background: #F8C400;
    margin: 4px auto 0;
    border-radius: 5px;
}
/* CATÁLOGO */
.equip-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    color: #000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.equip-card img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}
.equip-card h5 {
    margin-top: 20px;
    font-weight: 700;
}
.equip-card span {
    width: 40px;
    height: 4px;
    background: #F8C400;
    display: block;
    margin: 6px auto;
    border-radius: 5px;
}
/* FORM */
.formulario-container {
    background: #fff;
    color: #333;
    padding: 70px 40px;
    border-radius: 20px;
}
.form-control, .form-select {
    background: #f5f5f5;
    border-radius: 10px;
}
/* CONSULTORA */
.consultora-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.consultora-card img {
    width: 150px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}
/* MARCAS */
.brand-logo {
    width: 150px;
    height: 70px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: .7;
    transition: .3s;
}
.brand-logo:hover {
    opacity: 1;
}
/* WHATSAPP BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: #25D366;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    animation: floatBtn 2s infinite ease-in-out;
}
@keyframes floatBtn {
0% {
transform:translateY(0);
}
50% {
transform:translateY(-8px);
}
100% {
transform:translateY(0);
}
}
footer {
    background: #000;
    padding: 40px 0;
    color: #777;
}
.hero-btn-wrapper {
    display: flex;
    justify-content: center;
}
.btn-hero {
    background: #F8C400;
    color: #000;
    border-radius: 40px;
    font-weight: 700;
    padding: 12px 28px;
    font-size: 1rem;
    width: auto !important;
    min-width: 220px;
    max-width: 260px;
    text-align: center;
    border: none;
    transition: .3s;
}
.btn-hero:hover {
    background: #d6a600;
}
.py-5 {
    padding-top: 9rem !important;
    padding-bottom: 3rem !important;
}
.hero-slideshow {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -3;
}
.hero-slideshow .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}
.hero-slideshow .slide.active {
    opacity: 0.45; /* intensidade da imagem */
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    z-index: -1;
}
.hero-stats {
  max-width: 1000px;
  margin: 0 auto;
}

.hero-stat-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 16px;
  padding: 20px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.hero-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc107; /* amarelo semelhante da imagem */
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 0.95rem;
  color: #f8f9fa;
}

/* LOGO */
.logo-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-card img {
    width: 110px;
 
    object-fit: cover;
}




    .catalog-hero {
      background: #050505;
      padding: 40px 0 30px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .catalog-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #fff;
    }

    .catalog-title span {
      color: #ffc107;
    }

    .catalog-subtitle {
      color: #f1f1f1;
      opacity: .85;
    }

    .catalog-search {
      max-width: 600px;
      margin: 25px auto 0;
    }

    .catalog-search .form-control {
      border-radius: 999px;
      padding-left: 1.1rem;
      padding-right: 1.1rem;
      border: none;
      box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
      background: #111;
      color: #fff;
    }

    .catalog-search .form-control::placeholder {
      color: rgba(255,255,255,0.45);
    }

    .category-bar {
      background: #111111;
      border-radius: 999px;
      padding: 8px;
      display: inline-flex;
      gap: 6px;
      overflow: auto;
      white-space: nowrap;
      max-width: 100%;
    }

    .btn-category {
      border-radius: 999px;
      border: none;
      padding: 6px 14px;
      font-size: .85rem;
      background: transparent;
      color: #f8f9fa;
      opacity: .8;
      transition: all .2s ease;
    }

    .btn-category:hover {
      background: rgba(255,255,255,0.05);
      opacity: 1;
    }

    .btn-category.active {
      background: #ffc107;
      color: #000;
      opacity: 1;
      box-shadow: 0 0 0 1px rgba(0,0,0,0.15);
    }

    .product-card {
      background: #111;
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
      box-shadow: 0 10px 30px rgba(0,0,0,0.55);
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.7);
      border-color: rgba(255,193,7,0.6);
    }

    .product-img-wrapper {
      position: relative;
      height: 170px;
      overflow: hidden;
    }

    .product-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #ffce00;
      color: #000;
      font-size: .75rem;
      font-weight: 700;
      border-radius: 999px;
      padding: 3px 10px;
    }

    .product-status {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #16c172;
      color: #000;
      font-size: .75rem;
      font-weight: 700;
      border-radius: 999px;
      padding: 3px 10px;
    }

    .product-body {
      padding: 16px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex-grow: 1;
    }

    .product-category {
      font-size: .8rem;
      color: #ffc107;
      margin-bottom: 2px;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .product-title {
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
    }

    .product-desc {
      font-size: .85rem;
      color: rgba(255,255,255,0.7);
      flex-grow: 1;
      min-height: 38px;
    }

    .product-prices {
      margin-top: 8px;
      font-size: .85rem;
      color: #f8f9fa;
    }

    .product-prices span {
      display: block;
      line-height: 1.3;
    }

    .product-prices strong {
      color: #ffc107;
    }

    .product-footer {
      padding: 0 16px 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .btn-round {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: none;
      background: #ffc107;
      color: #000;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }

    .btn-round:hover {
      background: #ffda3a;
    }

    .btn-details {
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,0.12);
      background: transparent;
      color: #f8f9fa;
      font-size: .85rem;
      padding: 6px 14px;
    }

    .btn-details:hover {
      background: rgba(255,255,255,0.06);
    }

    /* Modal */
    .modal-content {
      background: #111;
      color: #fff;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.1);
    }

    .modal-header {
      border-bottom-color: rgba(255,255,255,0.08);
    }

    .modal-body img {
      border-radius: 14px;
    }

    .price-tag {
      background: #1b1b1b;
      border-radius: 10px;
      padding: 10px 12px;
      font-size: .9rem;
      margin-bottom: 6px;
    }

    .price-tag strong {
      color: #ffc107;
    }