/* Header com IMAGEM DE FUNDO */
/* ===== CONTATO ===== */
.menu-btn {
    display: none;
  }

@media (max-width: 768px) {
    .stats {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
    }
  }
  /* Estilo normal (desktop) */
  .menu-btn {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    -webkit-tap-highlight-color: transparent !important;
    user-select: none;
    -webkit-user-select: none;
  }
  
  .menu-btn:focus,
  .menu-btn:active {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
  }
  
  
  /* Mobile */
  @media (max-width: 768px) {
    .menu-btn {
      display: block;
    }
  
    .nav {
      display: none;
      flex-direction: column;
      background: #ff8585; /* coloque sua cor */
      position: absolute;
      top: 60px;
      right: 20px;
      padding: 15px;
      border-radius: 10px;
    }
  
    .nav.show {
      display: flex;
    }
  
    .nav li {
      margin: 10px 0;
    }
  }
  
  
.contact-section {
    width: 100%;
    padding: 70px 20px;
    background: #111; 
    color: #fff;
    text-align: center;
  }
  
  .contact-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
  }
  
  .contact-text {
    font-size: 1rem;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 25px auto;
    line-height: 1.5;
  }
  
  /* ===== BOTÃO WHATSAPP ===== */
  
  .whatsapp-contact {
    display: inline-block;
    padding: 14px 30px;
    background-color: #25d366;
    color: #000;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
    border: 2px solid transparent;
  }
  
  .whatsapp-contact:hover {
    background-color: #1ebe5c;
    border-color: #0a0a0a;
    transform: scale(1.05);
  }
  
  

.topbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:22px 48px;
    position:sticky;
    top:0;
    z-index:100;
    
    background: 
      linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
      url('SUA-IMAGEM-AQUI.jpg') center/cover no-repeat;
  
    backdrop-filter:blur(6px);
  }
  

  .btn-primary {
    text-decoration: none !important;
  }

  .buttonfunc :hover {
    background-color: bl;
  } 

  .services-wrap {
    padding: 80px 20px;
    background-image:
      linear-gradient(180deg, rgba(0,0,0,0.75), rgba(0,0,0,0.88)),
      url('/mnt/data/reboque1.jpg');
    background-size: cover;
    background-position: center right;
    backdrop-filter: blur(4px);
  }
  
  .services-container {
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .section-head {
    text-align: center;
    margin-bottom: 35px;
  }
  
  .services-sub {
    color: var(--muted);
    max-width: 750px;
    margin: 8px auto 0;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  
  /* CARD */
  .service-card {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    color: #ff0000;
    box-shadow: 0 8px 22px rgba(0,0,0,0.45);
    transition: .35s ease;
    transform: translateZ(0);
  }
  
  .service-card:hover {
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 22px 40px rgba(0,0,0,0.65);
    border-color: rgba(255,255,255,0.12);
  }

  .btn-black {
    background: #000;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 26px;
    font-weight: 700;
    border-radius: 8px;
    transition: .25s ease;
    background-color: rgb(241, 97, 97);
  }
  
  .btn-black:hover {
    background: #111;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.6);
  }
  
  
  /* ÍCONE */
  .icon-wrap {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--accent);
    font-size: 24px;
  }
  
  .icon-wrap svg {
    width: 32px;
    height: 32px;
  }
  
  /* Textos */
  .service-card h4 {
    margin: 0 0 6px 0;
    font-size: 19px;
    font-weight: 800;
  }
  
  .service-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.45;
    font-size: 14px;
  }
  
  /* Efeito de entrada */
  .service-card.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all .7s cubic-bezier(.16,.8,.3,1);
  }
  
  .service-card.reveal.visible {
    opacity: 1;
    transform: none;
  }
  
  /* Responsive */
  @media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2,1fr); }
  }
  
  @media (max-width: 700px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-wrap { padding: 60px 15px; }
    .icon-wrap { width: 58px; height: 58px; }
  }
  

  .about-wrap {
    padding: 80px 20px;
    background: #000;
  }
  
  .about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  /* imagem */
  .about-image img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
    object-fit: cover;
  }
  
  /* textos */
  .about-badge {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
  }
  
  .about-title {
    color: #fff;
    font-size: 32px;
    margin: 10px 0 20px 0;
    font-weight: 800;
  }
  
  .about-desc {
    color: var(--muted);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 25px;
  }
  
  /* botão */
  .btn-about {
    background: #d92b2b;
    color: #fff;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: .25s ease;
  }
  
  .btn-about:hover {
    background: #b42222;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217,43,43,0.4);
  }
  
  /* responsivo */
  @media(max-width: 900px){
    .about-container {
      grid-template-columns: 1fr;
    }
  }
  

  .service-card {
    transition: 
      transform .35s cubic-bezier(.2, .75, .3, 1),
      box-shadow .35s ease,
      border-color .35s ease,
      filter .35s ease;
  }
  
  /* efeito ao passar o mouse */
  .service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.55);
    border-color: rgba(255,255,255,0.18);
    filter: brightness(1.05) saturate(1.2);
  }
  
  /* Efeito no ícone também */
  .service-card:hover .icon-wrap {
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(217,43,43,0.18));
    transform: scale(1.12);
    transition: all .35s ease;
  }


  /* ======================= */
/*        PORTFÓLIO        */
/* ======================= */

.portfolio-section {
    padding: 80px 20px;
    background: #0e0e0e;
  }
  
  .portfolio-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .portfolio-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
  }
  
  .portfolio-sub {
    color: var(--muted);
    margin-bottom: 35px;
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  
  .portfolio-item {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.35s;
  }
  
  .portfolio-item img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    transition: 0.4s;
  }
  
  /* efeito hover */
  .portfolio-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.15);
  }
  .portfolio-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.55);
  }
  
  /* responsivo */
  @media (max-width:900px){
    .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width:550px){
    .portfolio-grid { grid-template-columns: 1fr; }
  }
  
  
  /* ======================= */
  /*        AVALIAÇÕES       */
  /* ======================= */
  
  .reviews-section {
    padding: 80px 20px;
    background: #111;
    border-top: 1px solid rgba(255,255,255,0.03);
  }
  
  .reviews-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .reviews-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
  }
  
  .reviews-sub {
    color: var(--muted);
    margin-bottom: 40px;
  }
  
  .reviews-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .review-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(6px);
    transition: .35s;
    text-align: left;
  }
  
  /* hover */
  .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.55);
  }
  
  .review-header {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .review-img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .review-text {
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.4;
  }
  
  /* responsivo */
  @media (max-width:900px){
    .reviews-grid { grid-template-columns: repeat(2,1fr); }
  }
  @media (max-width:600px){
    .reviews-grid { grid-template-columns: 1fr; }
  }

  /* ========================= */
/*       CONTATO             */
/* ========================= */

.contact-section {
    padding: 80px 25px;
    background: #0e0e0e;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  
  .contact-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .contact-info h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
  }
  
  .contact-info p {
    color: var(--muted);
    margin: 10px 0 20px;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
  }
  
  .contact-list li {
    margin-bottom: 8px;
    color: #ddd;
    font-size: 15px;
  }
  
  .contact-btn {
    display: inline-block;
    background: var(--accent);
    padding: 12px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
  }
  
  .contact-btn:hover {
    filter: brightness(1.2);
  }
  
  /* FORMULÁRIO */
  .contact-form {
    background: rgba(255,255,255,0.04);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
  }
  
  .form-group {
    margin-bottom: 16px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    font-size: 15px;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    outline: 1px solid var(--accent);
  }
  
  .contact-submit {
    width: 100%;
    padding: 12px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
  }
  
  .contact-submit:hover {
    filter: brightness(1.15);
  }
  
  /* Responsivo */
  @media (max-width: 850px) {
    .contact-container {
      grid-template-columns: 1fr;
    }
  }
  
  
  /* ========================= */
  /*         RODAPÉ            */
  /* ========================= */
  
  .footer {
    background: #0b0b0b;
    padding: 60px 20px 20px;
    color: #ccc;
    border-top: 1px solid rgba(255,255,255,0.04);
  }
  
  .footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 40px;
  }
  
  .footer-col h3,
  .footer-col h4 {
    color: #fff;
    margin-bottom: 12px;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    color: #ddd;
    text-decoration: none;
    transition: .3s;
  }
  
  .footer-col ul li a:hover {
    color: var(--accent);
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    color: #777;
  }
  
  /* Responsivo */
  @media (max-width:800px){
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width:550px){
    .footer-container {
      grid-template-columns: 1fr;
    }
  }
  
  /* ===== CONTATO ===== */

.contact-section {
    padding: 80px 20px;
    background: #0d0d0d;
    color: #fff;
    text-align: center;
  }
  
  .contact-container {
    max-width: 700px;
    margin: auto;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
  }
  
  .contact-text {
    font-size: 1.1rem;
    color: #d9d9d9;
    margin-bottom: 25px;
    line-height: 1.5;
  }
  
  .contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
  }
  
  .contact-container {
    max-width: 800px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .contact-info {
    text-align: center;
    max-width: 600px;
  }
  
  .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 20px;
  }
  
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 25px auto;
  }
  
  .contact-list li {
    margin-bottom: 8px;
    font-size: 1rem;
    color: #ddd;
  }
  
  /* Botão WhatsApp */
  .contact-btn {
    display: inline-block;
    padding: 14px 30px;
    background: #25d366;
    color: #000;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all .2s ease-in-out;
  }
  
  .contact-btn:hover {
    background: #1ebe5c;
    transform: scale(1.05);
  }
  

  /* ================================
   RESPONSIVIDADE — CELULARES
   ================================ */

@media (max-width: 760px){

    /* HEADER */
    .topbar{
      padding: 16px 20px;
    }
  
    .brand{
      font-size: 20px;
    }
  
    .nav{
      display:none;
    }
  
    .hamburger{
      display:block;
      font-size:30px;
    }
  
    .buttonfunc{
      padding: 10px 16px !important;
      font-size: 14px;
    }
  
    /* HERO */
    .hero{
      min-height: 70vh;
      background-attachment: initial;
    }
  
    h1{
      font-size: 32px;
    }
  
    .lead{
      font-size: 15px;
      padding: 0 10px;
    }
  
    .cta-row{
      flex-direction: column;
    }
  
    .cta-row .btn{
      width: 100%;
      text-align: center;
    }
  
    /* STATS */
    .stats{
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 20px;
    }
  
    /* SOBRE */
    .about-container{
      display: flex;
      flex-direction: column;
      gap: 20px;
      padding: 20px;
      text-align:center;
    }
  
    .about-image img{
      width: 100%;
      border-radius: 12px;
    }
  
    .about-text{
      padding: 10px;
    }
  
    .about-title{
      font-size: 24px;
    }
  
    .about-desc{
      font-size: 14px;
      line-height: 1.5;
    }
  
    /* SERVIÇOS */
    .services-grid{
      grid-template-columns: 1fr;
      padding: 0 20px;
    }
  
    .service-card{
      padding: 20px;
    }
  
    /* PORTFOLIO */
    .portfolio-grid{
      grid-template-columns: 1fr;
      gap: 16px;
      padding: 0 20px;
    }
  
    .portfolio-item img{
      width: 100%;
      border-radius: 12px;
    }
  
    /* AVALIAÇÕES */
    .reviews-grid{
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 20px;
    }
  
    .review-card{
      padding: 20px;
      text-align: left;
    }
  
    /* CONTATO */
    .contact-info{
      max-width: 100%;
      text-align:center;
      padding: 0 20px;
    }
  
    .contact-btn{
      width: 100%;
      padding: 14px;
      font-size: 16px;
    }
  
    /* FOOTER */
    .footer-container{
      grid-template-columns: 1fr;
      gap: 20px;
      text-align: center;
    }
  
    .footer-col ul{
      padding: 0;
    }
  }
  
  /* MENU RESPONSIVO */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
  }
  
  /* Esconde o menu quando for mobile */
  @media (max-width: 760px){
  
    .nav {
      display: none;
      position: absolute;
      top: 70px;
      right: 0;
      background: #000000cb;
      width: 100%;
      text-align: center;
      flex-direction: column;
      padding: 20px 0;
      gap: 18px;
    }
  
    .nav li {
      list-style: none;
    }
  
    .nav a {
      color: white;
      font-size: 18px;
      padding: 10px;
      display: block;
    }
  
    .hamburger {
      display: block;
    }
  
    /* botão do telefone */
    .buttonfunc {
      padding: 8px 10px !important;
      font-size: 13px;
    }
  }
  

  /* Padrão: mostra texto de PC, esconde o de celular */
/* Mostra normalmente no PC */
.contato-btn {
    display: inline-flex;
  }
  
  /* Some totalmente no celular */
  @media (max-width: 760px) {
    .contato-btn {
      display: none !important;
    }
  }

  /* ===== HERO RESPONSIVO ===== */
@media (max-width: 760px) {

    .hero {
      padding: 40px 20px;
      text-align: center;
    }
  
    .hero-inner {
      width: 100%;
      max-width: 100%;
    }
  
    .hero h1 {
      font-size: 2rem;
      line-height: 2.4rem;
    }
  
    .hero .accent {
      font-size: 2rem;
    }
  
    .hero .lead {
      font-size: 1rem;
      margin-top: 10px;
      padding: 0 10px;
    }
  
    /* Botões */
    .cta-row {
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
    }
  
    .buttonfunc,
    .btn-servicos {
      width: 100%;
      font-size: 1rem;
      padding: 12px;
    }
  
    /* Estatísticas */
    .stats {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 25px;
    }
  
    .stat h3 {
      font-size: 1.6rem;
    }
  
    .stat p {
      font-size: .9rem;
    }
  
  }
  
/* ============================
   FORÇA RESPONSIVIDADE DAS STATS
   Cole isso no final do CSS
   ============================ */

   @media (max-width: 760px) {

    /* garante que a área hero não esteja empurrando as stats */
    .hero-inner { padding-bottom: 6px !important; }
  
    /* especificidade maior (.hero .stats) e regras fortes */
    .hero .stats {
      width: 100% !important;
      max-width: 100% !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 8px !important;
      margin: 12px 0 6px 0 !important;
      padding: 0 8px !important;
      box-sizing: border-box !important;
      align-items: stretch !important;
    }
  
    .hero .stats .stat {
      width: 100% !important;
      padding: 6px 10px !important;
      border-radius: 8px !important;
      background: rgba(255,255,255,0.04) !important;
      border: 1px solid rgba(255,255,255,0.03) !important;
      box-shadow: none !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
    }
  
    .hero .stats .stat h3 {
      font-size: 1.05rem !important; /* menor */
      margin: 0 !important;
      line-height: 1 !important;
    }
  
    .hero .stats .stat p {
      font-size: 0.78rem !important; /* mais fino */
      margin: 0 !important;
      color: rgba(255,255,255,0.9) !important;
    }
  
    /* se quiser ainda mais compacto (opcional): */
    .hero .stats.compact .stat {
      padding: 4px 8px !important;
    }
  
    /* em telas muito pequenas: transforma as stats em uma linha simples (economiza espaço) */
    @media (max-width: 420px) {
      .hero .stats .stat h3 { font-size: 1rem !important; }
      .hero .stats .stat p  { display: none !important; } /* esconde o texto secundário */
    }
  }


  
  
  * {
    -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  }
  
  .nav a {
    -webkit-tap-highlight-color: transparent !important;
  }
  .nav a:active,
  .nav a:focus {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .diferenciais {
    padding: 70px 20px;
    background: #0d0d0d;
    color: white;
    text-align: center;
  }
  
  .diferenciais h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  
  .diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .dif-card {
    background: #111;
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s ease;
    border: 1px solid #222;
  }
  
  .dif-card:hover {
    transform: translateY(-5px);
    background: #151515;
  }
  
  .dif-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-bottom: 15px;
    border-radius: 50%;
    border: 2px solid #444;
  }
  
  .dif-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .dif-card p {
    font-size: 15px;
    color: #bbb;
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .diferenciais-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  

  