/* =========================================================
   SIGMA CUSTOM CSS
   Sobrescritas do template Trazan
   Coloque este arquivo DEPOIS do style.css / style.min.css
========================================================= */

:root{
  --sigma-bg: #f5f5f5;
  --sigma-white: #ffffff;
  --sigma-dark: #111218;
  --sigma-dark-2: #0b0d12;
  --sigma-text: #1e1e1e;
  --sigma-muted: #6b7280;
  --sigma-border: #e7e7e7;
  --sigma-orange: #ff7a00;
  --sigma-orange-dark: #e86f00;
  --sigma-yellow: #ffc107;
}

/* =========================================================
   BASE
========================================================= */

body{
  background: var(--sigma-bg);
  color: var(--sigma-text);
}

a{
  color: var(--sigma-orange);
}

a:hover{
  color: var(--sigma-orange-dark);
}

/* =========================================================
   BOTÕES
========================================================= */

.btn-primary,
.theme-btn,
.btn-main{
  background: var(--sigma-orange) !important;
  border-color: var(--sigma-orange) !important;
  color: #111 !important;
}

.btn-primary:hover,
.theme-btn:hover,
.btn-main:hover{
  background: var(--sigma-orange-dark) !important;
  border-color: var(--sigma-orange-dark) !important;
  color: #111 !important;
}

.btn-outline-primary{
  border-color: var(--sigma-orange) !important;
  color: var(--sigma-orange) !important;
}

.btn-outline-primary:hover{
  background: var(--sigma-orange) !important;
  color: #111 !important;
}

.badge.bg-primary,
.bg-primary{
  background: var(--sigma-orange) !important;
}

.text-primary{
  color: var(--sigma-orange) !important;
}

/* botão área do cliente */
.sigma-whats{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 22px;
  min-height: 48px;
  line-height: 1;
  white-space: nowrap;
}

/* =========================================================
   CARDS
========================================================= */

.card,
.service-card,
.blog-card{
  background: var(--sigma-white);
  border: 1px solid var(--sigma-border);
  border-radius: 14px;
}

/* =========================================================
   HEADER / LOGO
========================================================= */

.header-bottom-area-2{
  height: 90px;
  display: flex;
  align-items: center;
}

.sigma-logo-img{
  height: 85px;
  width: auto;
  object-fit: contain;
  display: block;
}

.sigma-social{
  display: flex;
  align-items: center;
  gap: 14px;
}

.sigma-social a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sigma-social i{
  font-size: 20px;
  line-height: 1;
  color: #111218;
}

.sigma-social i:hover{
  color: var(--sigma-orange);
}

/* =========================================================
   HERO
========================================================= */

.hero-section.hero-5{
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  min-height: 760px;
}

/* overlay escuro para leitura */
.hero-section.hero-5::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,.84) 0%,
    rgba(0,0,0,.68) 24%,
    rgba(0,0,0,.38) 46%,
    rgba(0,0,0,.14) 68%,
    rgba(0,0,0,0) 100%
  );
  z-index: 1;
}

/* conteúdo acima do overlay */
.hero-section.hero-5 .container,
.hero-section.hero-5 .service-5{
  position: relative;
  z-index: 2;
}

.hero-content-3{
  position: relative;
  z-index: 3;
}

.hero-title{
  text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

.hero-content-3 .section-text{
  max-width: 640px;
  text-shadow: 0 2px 14px rgba(0,0,0,.28);
}

/* =========================================================
   IMAGEM DOS VEÍCULOS
========================================================= */

.hero-image{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
}

.hero-image img{
  display: block;
  width: 100%;
  max-width: 880px !important; /* dobro aproximado do que estava */
  height: auto !important;
  filter: drop-shadow(0 32px 55px rgba(0,0,0,.34));
}

/* =========================================================
   AJUSTES DESKTOP GRANDE
========================================================= */

@media (min-width: 1600px){
  .hero-section.hero-5{
    background-position: center center !important;
    min-height: 820px;
  }

  .hero-image img{
    max-width: 980px !important;
  }
}

/* =========================================================
   NOTEBOOK / DESKTOP MÉDIO
========================================================= */

@media (max-width: 1400px){
  .hero-section.hero-5{
    min-height: 720px;
    background-position: 56% center !important;
  }

  .hero-image img{
    max-width: 760px !important;
  }

  .sigma-logo-img{
    height: 78px;
  }
}

@media (max-width: 1200px){
  .hero-section.hero-5{
    min-height: 680px;
    background-position: 60% center !important;
  }

  .hero-image img{
    max-width: 660px !important;
  }

  .sigma-logo-img{
    height: 72px;
  }

  .header-bottom-area-2{
    height: 86px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px){
  .header-bottom-area-2{
    height: 78px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .sigma-logo-img{
    height: 58px;
  }

  .sigma-whats{
    min-height: 42px;
    padding: 8px 16px;
    font-size: 14px;
  }

  .sigma-social{
    gap: 10px;
  }

  .sigma-social i{
    font-size: 18px;
  }

  .hero-section.hero-5{
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 34px;
    background-position: 64% center !important;
  }

  .hero-content-3{
    text-align: left;
  }

  .hero-title{
    font-size: 44px;
    line-height: 1.08;
  }

  .hero-content-3 .section-text{
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px !important;
    max-width: 100%;
  }

  .hero-button{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .hero-image{
    justify-content: center;
    margin-top: 28px;
  }

  .hero-image img{
    max-width: 560px !important;
  }
}

/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 767px){
  .header-bottom-area-2{
    height: 72px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .sigma-logo-img{
    height: 52px;
  }

  .sigma-whats{
    min-height: 38px;
    padding: 7px 14px;
    font-size: 13px;
    border-radius: 999px;
  }

  .sigma-social{
    gap: 8px;
  }

  .sigma-social i{
    font-size: 17px;
  }

  .hero-section.hero-5{
    padding-top: 42px;
    padding-bottom: 26px;
    min-height: auto;
    background-position: 68% center !important;
  }

  .hero-section.hero-5::before{
    background: linear-gradient(
      180deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.56) 38%,
      rgba(0,0,0,.24) 72%,
      rgba(0,0,0,.08) 100%
    );
  }

  .hero-title{
    font-size: 34px;
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero-content-3 .section-text{
    font-size: 15px;
    line-height: 1.55;
  }

  .hero-button{
    gap: 14px;
  }

  .hero-image{
    justify-content: center;
    margin-top: 22px;
  }

  .hero-image img{
    max-width: 420px !important;
  }

  .service-5{
    margin-top: 24px;
  }
}

/* =========================================================
   CELULAR PEQUENO
========================================================= */

@media (max-width: 480px){
  .sigma-logo-img{
    height: 46px;
  }

  .hero-title{
    font-size: 30px;
  }

  .hero-content-3 .section-text{
    font-size: 14px;
  }

  .hero-image img{
    max-width: 360px !important;
  }

  .sigma-whats{
    padding: 7px 12px;
    font-size: 12px;
  }
}

/* =========================
ICONS SERVIÇOS SIGMA
========================= */

.service-box-5 .icon{
    width: 90px;
    height: 90px;
    background: #ff7a00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-box-5 .icon i{
    font-size: 36px;
    color: #fff;
}

/* =========================
WHATSAPP ICON
========================= */

.sigma-whatsapp-icon{
    font-size: 36px;
    color: #ff7a00;
    margin-right: 10px;
}

.client-info{
    display: flex;
    align-items: center;
    gap: 12px;
}

.client-info h6{
    margin: 0;
    font-weight: 600;
}
.sigma-whatsapp-icon{
    width: 50px;
    height: 50px;
    background: #ff7a00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* =========================
QUEM SOMOS - MOBILE CLEAN
========================= */

/* desktop mantém normal */
@media (max-width: 991.98px) {
    .about-section-5 .about-image-items {
        display: none !important;
    }

    .about-section-5 .about-content {
        padding-top: 0 !important;
    }

    .about-section-5 .section-content-block {
        margin-bottom: 18px;
    }

    .about-section-5 .about-text,
    .about-section-5 p {
        font-size: 16px;
        line-height: 1.7;
    }

    .about-section-5 .icon-items-area {
        display: flex;
        flex-direction: column;
        gap: 18px;
        margin-top: 22px !important;
    }

    .about-section-5 .icon-items {
        align-items: flex-start;
        gap: 12px;
    }

    .about-section-5 .icon-items h5 {
        font-size: 18px;
        line-height: 1.4;
        margin: 0;
    }

    .about-section-5 .about-us-button {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 24px;
    }

    .about-section-5 .client-info {
        display: none !important;
    }
}

.pricing-setup{
    display:block;
    font-size:14px;
    color:#777;
    margin-top:-5px;
    margin-bottom:10px;
}

/* Quando o card estiver ativo (laranja) */
.pricing-item-block.active-2 .pricing-setup{
    color:#fff;
}
.pricing-badge{
    display:inline-block;
    background:#fff;
    color:#ff6600;
    font-size:12px;
    font-weight:600;
    padding:4px 10px;
    border-radius:20px;
    margin-bottom:8px;
}

/* CARD */
.news-card-items-5{
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
    transition:all .3s ease;
}

.news-card-items-5:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

/* IMAGEM */
.news-card-items-5 .news-image{
    position:relative;
}

.news-card-items-5 .news-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
}

/* DATA (01 DICA) */
.news-card-items-5 .post-date{
    position:absolute;
    top:20px;
    left:20px;
    background:#fff;
    border-radius:10px;
    padding:10px 14px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.news-card-items-5 .post-date h2{
    margin:0;
    font-size:20px;
}

.news-card-items-5 .post-date p{
    margin:0;
    font-size:12px;
}

/* TEXTO */
.news-card-items-5 .news-content{
    position:relative !important;
    background:#fff;
    padding:25px;
}

.news-card-items-5 .news-content h3{
    font-size:20px;
    margin:10px 0;
}

.news-card-items-5 .news-content h3 a{
    color:#1a1a1a;
    text-decoration:none;
}

/* TAG (Segurança, Relatórios etc) */
.news-meta li{
    background:#ff7a00;
    color:#fff;
    font-size:12px;
    padding:4px 10px;
    border-radius:6px;
    display:inline-block;
}

/* LINK */
.link-btn{
    color:#ff7a00;
    font-weight:600;
}

/* ===== CORRIGIR TEXTO DOS CARDS DE DICAS ===== */

.news-card-items-5 .news-content{
    color:#1a1a1a !important;
}

.news-card-items-5 .news-content h3{
    color:#1a1a1a !important;
}

.news-card-items-5 .news-content h3 a{
    color:#1a1a1a !important;
}

.news-card-items-5 .news-content p{
    color:#555 !important;
}

.news-card-items-5 .link-btn{
    color:#ff7a00 !important;
}

.section-content-block {
    margin-bottom: 50px;
}