@charset "UTF-8";

              :root{
                --primary-color:#003E6F;
                --text-color:#555;
                --top-bg:#EEEEEE;
                --border-color:#e8e8e8;
                --light-bg:#F4F6FB;
                --banner-button:#32B5EB;
              }

              *{
                margin:0;
                padding:0;
                box-sizing:border-box;
              }

              body{
                font-family:'Nunito', sans-serif;
                font-weight:400;
                color:var(--text-color);
                background:#fff;
              }

              a{
                text-decoration:none;
              }


              .top-header{
                background:var(--top-bg);
                border-bottom:1px solid #ddd;
                padding:12px 0;
                font-size:14px;
              }

              .top-content{
                display:flex;
                align-items:center;
                justify-content:space-between;
                gap:20px;
              }

              .top-address,
              .top-phone{
                display:flex;
                align-items:center;
                gap:8px;
              }

              .top-address i,
              .top-phone i{
                color:var(--primary-color);
                font-size:17px;
              }

              .top-right{
                display:flex;
                align-items:center;
                gap:25px;
                margin-left:auto;
              }

              .social-links{
                display:flex;
                gap:10px;
              }

              .social-links a{
                width:36px;
                height:36px;
                border-radius:50%;
                background:var(--primary-color);
                color:#fff;
                display:flex;
                align-items:center;
                justify-content:center;
                transition:.3s;
              }

              .social-links a:hover{
                background:#002f55;
                transform:translateY(-2px);
              }

              .main-navbar{
                background:#fff;
                padding:18px 0;
                box-shadow:0 8px 25px rgba(0,0,0,.05);
                position:relative;
                z-index:10;
              }

              .navbar-brand img{
                max-height:72px;
              }

              .navbar-nav{
                align-items:center;
                gap:6px;
              }

              .nav-link{
                color:#333;
                font-size:16px;
                font-weight:400 !important;
                padding:10px 14px !important;
                border-radius:8px;
                transition:.3s;
              }

              .nav-link:hover,
              .nav-link.active{
                color:var(--primary-color);
                background:rgba(0,62,111,.08);
              }

              .btn-whatsapp{
                background:var(--primary-color);
                color:#fff;
                border-radius:30px;
                padding:12px 24px;
                font-size:15px;
                font-weight:400;
                margin-left:14px;
                display:inline-flex;
                align-items:center;
                gap:8px;
                transition:.3s;
                white-space:nowrap;
              }

              .btn-whatsapp:hover{
                background:#002f55;
                color:#fff;
                transform:translateY(-2px);
              }

              .navbar-toggler{
                border:none;
                box-shadow:none !important;
                padding:0;
              }

              .navbar-toggler i{
                color:var(--primary-color);
                font-size:32px;
              }

    .hero-carousel,
    .hero-slide{
      height:600px;
    }

    .hero-slide{
      position:relative;
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
    }

    .hero-slide::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(
        90deg,
        rgba(0,62,111,.92) 0%,
        rgba(0,62,111,.76) 35%,
        rgba(0,62,111,.35) 70%,
        rgba(0,62,111,.15) 100%
      );
      z-index:1;
    }

    .hero-content{
      position:relative;
      z-index:2;
      height:100%;
      display:flex;
      align-items:center;
      color:#fff;
    }

    .hero-text{
      max-width:700px;
    }

    .hero-subtitle{
      font-size:13px;
      letter-spacing:4px;
      text-transform:uppercase;
      margin-bottom:22px;
    }

    .hero-title{
      font-size:48px;
      line-height:1.25;
      font-weight:600;
      margin-bottom:28px;
      color:#fff;
    }

    .hero-description{
      font-size:17px;
      line-height:1.8;
      max-width:650px;
      margin-bottom:32px;
    }

    .hero-buttons{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }

    .btn-catalogo{
      background:var(--banner-button);
      color:#00304f;
      border-radius:4px;
      padding:15px 32px;
      transition:.3s;
    }

    .btn-catalogo:hover{
      background:#fff;
      color:var(--primary-color);
    }

    .btn-outline-banner{
      border:2px solid #fff;
      color:#fff;
      border-radius:4px;
      padding:13px 32px;
      transition:.3s;
    }

    .btn-outline-banner:hover{
      background:#fff;
      color:var(--primary-color);
    }

    .carousel-indicators{
      bottom:28px;
    }

    .carousel-indicators [data-bs-target]{
      width:12px;
      height:12px;
      border-radius:50%;
      border:2px solid #fff;
      background:transparent;
      opacity:1;
      margin:0 6px;
    }

    .carousel-indicators .active{
      background:#fff;
    }

    .about-section{
      background:var(--light-bg);
      padding:55px 0;
      position:relative;
      overflow:hidden;
    }

    .about-section::after{
      content:"";
      position:absolute;
      right:0;
      top:0;
      width:42%;
      height:100%;
      background-image:radial-gradient(rgba(0,62,111,.12) 1.5px, transparent 1.5px);
      background-size:24px 24px;
      opacity:.6;
    }

    .about-section .container{
      position:relative;
      z-index:2;
    }

    .about-header{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:50px;
      align-items:center;
      margin-bottom:38px;
    }

    .about-title,
    .products-title,
    .clients-title{
      font-size:52px;
      line-height:1;
      color:#000;
      font-weight:600;
      letter-spacing:-1px;
    }

    .about-title span,
    .products-title span,
    .clients-title span{
      color:var(--primary-color);
    }

    .products-title small {
      font-size: 19px;
      color: #444;
      font-weight: normal;
    }

    .about-intro{
      border-left:3px solid var(--primary-color);
      padding-left:24px;
      font-size:19px;
      line-height:1.4;
      color:#000;
      max-width:520px;
    }

    .about-content{
      display:grid;
      grid-template-columns:1fr 1.05fr;
      gap:50px;
      align-items:stretch;
    }

    .about-items{
      display:flex;
      flex-direction:column;
      gap:24px;
      height:100%;
    }

    .about-item{
      display:grid;
      grid-template-columns:56px 1fr;
      gap:20px;
      align-items:flex-start;
      background:#fff;
      padding:22px;
      border-radius:12px;
      box-shadow:0 12px 30px rgba(0,0,0,.05);
    }

    .about-icon{
      width:56px;
      height:56px;
      border-radius:14px;
      background:rgba(0,62,111,.09);
      color:var(--primary-color);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:26px;
    }

    .about-item h3{
      font-size:22px;
      color:#000;
      font-weight:400;
      margin-bottom:8px;
    }

    .about-item p{
      font-size:16px;
      line-height:1.55;
      color:#444;
      margin-bottom:0;
    }

    .about-image{
      height:100%;
    }

    .about-image img{
      width:100%;
      height:100%;
      min-height:100%;
      object-fit:cover;
      border-radius:12px;
      box-shadow:0 18px 35px rgba(0,0,0,.12);
      display:block;
    }

    .products-section{
      padding:70px 0;
      background:#fff;
    }

    .products-header{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:30px;
      margin-bottom:38px;
    }

    .products-subtitle{
      max-width:520px;
      font-size:18px;
      line-height:1.5;
      color:#444;
      border-left:3px solid var(--primary-color);
      padding-left:22px;
    }

    .services-grid{
      display:grid;
      grid-template-columns:repeat(5, 1fr);
      gap:20px;
    }

    .service-card{
      min-height:310px;
      border:1px solid #e5e5e5;
      border-radius:8px;
      padding:30px;
      position:relative;
      overflow:hidden;
      background:#fff;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:.35s;
    }

    .service-card::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:var(--card-img);
      background-size:cover;
      background-position:center;
      opacity:0;
      transform:scale(1.06);
      transition:.45s;
      z-index:1;
    }

    .service-card::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(
        180deg,
        rgba(0,62,111,.20) 0%,
        rgba(0,62,111,.88) 100%
      );
      opacity:0;
      transition:.35s;
      z-index:2;
    }

    .service-card:hover::before,
    .service-card:hover::after{
      opacity:1;
      transform:scale(1);
    }

    .service-card:hover{
      transform:translateY(-5px);
      box-shadow:0 18px 40px rgba(0,0,0,.12);
      border-color:transparent;
    }




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

    .service-icon{
      width:58px;
      height:58px;
      border-radius:50%;
      background:#f4f7fb;
      color:var(--primary-color);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:26px;
      margin-bottom:22px;
      transition:.35s;
      background-size: cover !important;
      background-position: center center !important;
    }

    .service-card h3{
      color:#000;
      font-size:25px;
      line-height:1.15;
      font-weight:600;
      margin-bottom:0;
      transition:.35s;
    }

    .service-footer{
      position:relative;
      z-index:3;
      padding-top:22px;
      border-top:1px solid #e8e8e8;
      display:flex;
      align-items:center;
      justify-content:space-between;
      transition:.35s;
    }

    .service-footer span{
      color:#000;
      font-size:14px;
      transition:.35s;
    }

    .service-arrow{
      width:30px;
      height:30px;
      border-radius:50%;
      background:var(--primary-color);
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:15px;
      transition:.35s;
    }

    .service-card:hover .service-icon{
      background:#fff;
      color:var(--primary-color);
    }

    .service-card:hover h3,
    .service-card:hover .service-footer span{
      color:#fff;
    }

    .service-card:hover .service-footer{
      border-top-color:rgba(255,255,255,.35);
    }

    .service-card:hover .service-arrow{
      background:#fff;
      color:var(--primary-color);
    }

    .clients-section{
      padding:65px 0;
      background:var(--light-bg);
      overflow:hidden;
    }

    .clients-header{
      text-align:center;
      margin-bottom:38px;
    }

    .clients-carousel{
      position:relative;
      overflow:hidden;
      max-width:100%;
    }

    .clients-track{
      display:flex;
      gap:24px;
      width:max-content;
      animation:scrollClients 26s linear infinite;
    }

    .clients-track2{
      display:flex;
      justify-content: center;
      flex-wrap: wrap;
    }

    .clients-track2 .client-logo {
      margin: 10px;
    }

    .clients-carousel:hover .clients-track{
      animation-play-state:paused;
    }

    .client-logo{
      width:230px;
      height:120px;
      background:#fff;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:24px;
      box-shadow:0 12px 30px rgba(0,0,0,.06);
      flex:0 0 auto;
    }

    .client-logo img{
      max-width:100%;
      max-height:78px;
      object-fit:contain;
    }

    @keyframes scrollClients{
      from{
        transform:translateX(0);
      }
      to{
        transform:translateX(-50%);
      }
    }


    .site-footer{
      background:linear-gradient(135deg, #002f55 0%, #003E6F 52%, #05243d 100%);
      color:#fff; 
      padding:62px 0 0; 
      position:relative; 
      overflow:hidden;
    }

    .site-footer::before{
      content:"";
      position:absolute;
      top:-80px;
      right:-80px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(50,181,235,.16);
    }

    .site-footer::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:100%;
      height:1px;
      background:rgba(255,255,255,.15);
    }

    .site-footer .container{
      position:relative;
      z-index:2;
    }

    .footer-main{
      display:grid;
      grid-template-columns:1.15fr .75fr 1.25fr;
      gap:45px;
      align-items:flex-start;
      padding-bottom:42px;
    }

    .footer-logo{
      display:inline-flex;
      background:#fff;
      border-radius:14px;
      padding:14px 18px;
      box-shadow:0 16px 35px rgba(0,0,0,.18);
      margin-bottom:22px;
    }

    .footer-logo img{
      max-width:210px;
      height:auto;
      display:block;
    }

    .footer-brand p{
      color:rgba(255,255,255,.86);
      font-size:16px;
      line-height:1.7;
      max-width:430px;
      margin:0;
    }

    .footer-title{
      color:#fff;
      font-size:22px;
      font-weight:600;
      margin-bottom:22px;
      position:relative;
      padding-bottom:12px;
    }

    .footer-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width:48px;
      height:3px;
      border-radius:30px;
      background:var(--banner-button);
    }

    .footer-links ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }

    .footer-links a{
      color:rgba(255,255,255,.84);
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:16px;
      transition:.3s;
    }

    .footer-links a i{
      color:var(--banner-button);
      font-size:13px;
      transition:.3s;
    }

    .footer-links a:hover{
      color:#fff;
      transform:translateX(4px);
    }

    .footer-contact-list{
      display:grid;
      gap:16px;
    }

    .footer-contact-item{
      display:grid;
      grid-template-columns:46px 1fr;
      gap:14px;
      align-items:flex-start;
      padding:14px;
      /* border:1px solid rgba(255,255,255,.13); */
      border-radius:14px;
      /* background:rgba(255,255,255,.06); */
      backdrop-filter:blur(4px);
    }

    .footer-contact-icon{
      width:46px;
      height:46px;
      border-radius:13px;
      background:rgba(50,181,235,.16);
      color:var(--banner-button);
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:21px;
    }

    .footer-contact-item strong{
      display:block;
      color:#fff;
      font-size:15px;
      margin-bottom:4px;
    }

    .footer-contact-item span,
    .footer-contact-item a{
      color:rgba(255,255,255,.82);
      font-size:15px;
      line-height:1.55;
      transition:.3s;
    }

    .footer-contact-item a:hover{
      color:#fff;
    }

    .footer-hours{
      display:grid;
      grid-template-columns:repeat(2, minmax(120px, 1fr));
      gap:4px 12px;
      margin-top:2px;
    }

    .footer-phones{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .footer-phone-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:10px;
      /* background:rgba(255,255,255,.08); */
      /* border:1px solid rgba(255,255,255,.12); */
    }

    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.13);
      padding:18px 0;
      text-align:center;
      color:rgba(255,255,255,.72);
      font-size:14px;
    }

    @media(max-width:1199px){
      .services-grid{
        grid-template-columns:repeat(3, 1fr);
      }
    }

    @media(max-width:991px){
      .top-address{
        display:none;
      }

      .top-content{
        justify-content:center;
      }

      .top-right{
        width:100%;
        justify-content:center;
        gap:15px;
      }

      .top-phone{
        font-size:13px;
        white-space:nowrap;
      }

      .social-links a{
        width:32px;
        height:32px;
      }

      .main-navbar{
        padding:12px 0;
      }

      .navbar-brand img{
        max-height:58px;
      }

      .navbar-collapse{
        margin-top:18px;
        padding-top:15px;
        border-top:1px solid var(--border-color);
      }

      .navbar-nav{
        align-items:stretch;
      }

      .btn-whatsapp{
        justify-content:center;
        margin:15px 0 0 0;
      }

      .hero-carousel,
      .hero-slide{
        height:520px;
      }

      .hero-slide::before{
        background:rgba(0,62,111,.78);
      }

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

      .about-header,
      .about-content{
        grid-template-columns:1fr;
        gap:30px;
      }

      .about-title,
      .products-title,
      .clients-title{
        font-size:42px;
      }

      .about-intro{
        font-size:18px;
      }

      .about-image img{
        height:320px;
      }

      .products-header{
        flex-direction:column;
        align-items:flex-start;
      }

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

      .footer-main{
        grid-template-columns:1fr 1fr;
        gap:35px;
      }

      .footer-brand{
        grid-column:1 / -1;
      }

    }

    @media(max-width:575px){
      .hero-content{
        text-align:center;
      }

      .hero-text{
        margin:0 auto;
      }

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

      .hero-buttons{
        justify-content:center;
      }

      .btn-catalogo,
      .btn-outline-banner{
        width:100%;
        max-width:260px;
        text-align:center;
      }

      .about-section{
        padding:42px 0;
      }

      .about-header{
        margin-bottom:25px;
      }

      .about-title,
      .products-title,
      .clients-title{
        font-size:36px;
      }

      .about-intro,
      .products-subtitle{
        font-size:16px;
      }

      .about-item{
        grid-template-columns:46px 1fr;
        gap:15px;
        padding:18px;
      }

      .about-icon{
        width:46px;
        height:46px;
        font-size:22px;
      }

      .about-item h3{
        font-size:20px;
      }

      .about-item p{
        font-size:15px;
      }

      .about-image img{
        height:240px;
      }

      .products-section{
        padding:50px 0;
      }

      .services-grid{
        grid-template-columns:1fr;
        gap:14px;
      }

      .service-card{
        min-height:120px;
        padding:18px;
      }

      .service-card::before{
        opacity:1;
        transform:scale(1);
      }

      .service-card::after{
        opacity:1;
        background:linear-gradient(
          90deg,
          rgba(0,62,111,.92) 0%,
          rgba(0,62,111,.78) 55%,
          rgba(0,62,111,.58) 100%
        );
      }

      .service-content{
        display:flex;
        align-items:center;
        gap:14px;
      }

      .service-icon{
        width:44px;
        height:44px;
        min-width:44px;
        font-size:21px;
        margin-bottom:0;
        background:#fff;
        color:var(--primary-color);
      }

      .service-card h3{
        color:#fff;
        font-size:21px;
      }

      .service-footer{
        margin-top:18px;
        padding-top:14px;
        border-top-color:rgba(255,255,255,.35);
      }

      .service-footer span{
        color:#fff;
      }

      .service-arrow{
        background:#fff;
        color:var(--primary-color);
      }

      .service-card:hover{
        transform:none;
      }

      .clients-section{
        padding:45px 0;
      }

      .client-logo{
        width:190px;
        height:105px;
      }

      .site-footer{
        padding-top:45px;
      }

      .footer-main{
        grid-template-columns:1fr;
        gap:32px;
      }

      .footer-brand{
        grid-column:auto;
      }

      .footer-logo img{
        max-width:185px;
      }

      .footer-brand p,
      .footer-links a,
      .footer-contact-item span,
      .footer-contact-item a{
        font-size:15px;
      }

      .footer-contact-item{
        grid-template-columns:42px 1fr;
        padding:13px;
      }

      .footer-contact-icon{
        width:42px;
        height:42px;
        font-size:19px;
      }

      .footer-hours{
        grid-template-columns:1fr;
      }

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

    }





/* Página interna de detalhes / galeria */
/* ===== TÍTULO ===== */
.titulo{
  color:#000;
  font-size:44px;
  line-height:1.2;
  font-weight:600;
  margin:50px 0 30px;
  position:relative;

  /* IMPORTANTE: evita conflito com .row do Bootstrap */
  width:100%;
  display:block;
}

.titulo::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:var(--primary-color);
  margin-top:14px;
  border-radius:30px;
}

/* ===== TEXTO ===== */
.txtCorpo{
  font-size:17px;
  line-height:1.8;
  color:var(--text-color);
  margin-bottom:40px;
}

/* ===== FOTO PRINCIPAL ===== */
.fotoPrincipal{
  display:block;
  float:left;
  width:48%;
  max-width:520px;
  margin:0 28px 22px 0;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 18px 35px rgba(0,0,0,.12);
  position:relative;
}

.fotoPrincipal img{
  width:100%;
  height:auto;
  display:block;
  transition:.35s;
  border-radius:14px;
}

.fotoPrincipal:hover img{
  transform:scale(1.04);
}

/* overlay leve no hover */
.fotoPrincipal::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,62,111,.05),
    rgba(0,62,111,.35)
  );
  opacity:0;
  transition:.35s;
}

.fotoPrincipal:hover::after{
  opacity:1;
}

/* ===== GALERIA ===== */
.maisFotos{
  list-style:none;
  padding:0;
  margin:0 0 50px;

  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.maisFotos li{
  margin:0;
}

@media(max-width:991px){
  .maisFotos{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:575px){
  .maisFotos{
    grid-template-columns:1fr;
  }
}

/* thumbnail estilo card */
.maisFotos li > a{
  display:block;
  width:100%;
  height:240px;
  border-radius:14px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  position:relative;
  overflow:hidden;
  transition:.35s;
}

/* overlay */
.maisFotos li > a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(0,62,111,.10),
    rgba(0,62,111,.65)
  );
  opacity:0;
  transition:.35s;
}

/* ícone de zoom */
.maisFotos li > a::after{
  content:"+";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%) scale(.8);
  width:52px;
  height:52px;
  border-radius:50%;
  background:#fff;
  color:var(--primary-color);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  font-weight:600;
  opacity:0;
  transition:.35s;
}

.maisFotos li > a:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}

.maisFotos li > a:hover::before,
.maisFotos li > a:hover::after{
  opacity:1;
}

.maisFotos li > a:hover::after{
  transform:translate(-50%, -50%) scale(1);
}

/* ===== RESPONSIVO ===== */
@media(max-width:991px){
  .fotoPrincipal{
    float:none;
    width:100%;
    margin:0 0 25px;
  }

  .titulo{
    font-size:38px;
  }

  .maisFotos li > a{
    height:220px;
  }
}

@media(max-width:575px){
  .titulo{
    font-size:32px;
  }

  .txtCorpo{
    font-size:16px;
  }

  .maisFotos li > a{
    height:200px;
  }
}









.contato-modern{
  padding:60px 15px;
}

.contato-modern .titulo{
  font-size:42px;
  font-weight:600;
  color:#111;
  margin-bottom:40px;
  position:relative;
}

.contato-modern .titulo::after{
  content:"";
  display:block;
  width:70px;
  height:4px;
  background:var(--primary-color);
  margin-top:14px;
  border-radius:30px;
}

/* GRID PRINCIPAL */
.contato-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:stretch;
}

/* CARD */
.contato-card{
  background:#fff;
  border-radius:16px;
  padding:30px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  border:1px solid #eee;
}

/* textos */
.subtexto{
  font-size:16px;
  color:#555;
  margin-bottom:15px;
}

.subtexto-secundario{
  font-size:14px;
  color:#777;
  margin-top:10px;
}

/* BOTÃO WHATSAPP */
.btn-whatsapp-contato{
  display:inline-block;
  background:#25D366;
  color:#fff;
  padding:14px 22px;
  border-radius:10px;
  font-weight:600;
  text-decoration:none;
  transition:.3s;
  margin-bottom:15px;
}

.btn-whatsapp-contato:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(37,211,102,.3);
}

/* dados */
.dados-contato{
  margin-top:20px;
  font-size:15px;
  line-height:1.7;
  color:#444;
}

/* MAPA */
.contato-mapa{
  border-radius:16px;
  overflow:hidden;
  min-height:380px;
  box-shadow:0 15px 40px rgba(0,0,0,.10);
}

.contato-mapa iframe{
  width:100%;
  height:100%;
  min-height:380px;
  border:0;
}

/* RESPONSIVO */
@media(max-width:991px){
  .contato-grid{
    grid-template-columns:1fr;
  }

  .contato-modern .titulo{
    font-size:34px;
  }
}





/* ===== SUBCATEGORIAS DE PRODUTOS ===== */

.subcategorias-section{
  padding:65px 0;
  background:var(--light-bg);
  position:relative;
  overflow:hidden;
}

.subcategorias-section::before{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width:320px;
  height:320px;
  border-radius:50%;
  background:rgba(0,62,111,.08);
}

.subcategorias-section .container{
  position:relative;
  z-index:2;
}

/* Cabeçalho */
.subcategorias-header{
  max-width:760px;
  margin-bottom:36px;
}

.subcategorias-label{
  display:inline-block;
  color:var(--primary-color);
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
  letter-spacing:2px;
  margin-bottom:12px;
}

.subcategorias-title{
  color:#000;
  font-size:46px;
  line-height:1.1;
  font-weight:600;
  letter-spacing:-1px;
  margin-bottom:14px;
}

.subcategorias-title span{
  color:var(--primary-color);
}

.subcategorias-subtitle{
  color:#444;
  font-size:18px;
  line-height:1.5;
  max-width:560px;
  margin:0;
  border-left:3px solid var(--primary-color);
  padding-left:20px;
}

/* Grid */
.subcategorias-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

/* Card */
.subcategoria-card{
  background:#fff;
  border-radius:16px;
  padding:18px;
  display:grid;
  grid-template-columns:96px 1fr;
  gap:18px;
  align-items:center;
  text-decoration:none;
  color:inherit;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.05);
  transition:.35s;
  overflow:hidden;
  position:relative;
}

.subcategoria-card::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(0,62,111,.06);
  transition:.35s;
}

.subcategoria-card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
  border-color:rgba(0,62,111,.18);
}

.subcategoria-card:hover::after{
  right:-25px;
  bottom:-25px;
  background:rgba(0,62,111,.10);
}

/* Imagem */
.subcategoria-imagem{
  width:96px;
  height:96px;
  border-radius:14px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  box-shadow:0 8px 22px rgba(0,0,0,.10);
  position:relative;
  z-index:2;
}

/* Conteúdo */
.subcategoria-conteudo{
  position:relative;
  z-index:2;
}

.subcategoria-conteudo h3{
  color:#000;
  font-size:22px;
  line-height:1.25;
  font-weight:600;
  margin:0 0 12px;
}

.subcategoria-conteudo span{
  color:var(--primary-color);
  font-size:15px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:.3s;
}

.subcategoria-card:hover .subcategoria-conteudo span{
  gap:12px;
}

/* Responsivo */
@media(max-width:1199px){
  .subcategorias-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media(max-width:767px){
  .subcategorias-section{
    padding:48px 0;
  }

  .subcategorias-title{
    font-size:36px;
  }

  .subcategorias-subtitle{
    font-size:16px;
  }

  .subcategorias-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .subcategoria-card{
    grid-template-columns:82px 1fr;
    padding:15px;
  }

  .subcategoria-imagem{
    width:82px;
    height:82px;
  }

  .subcategoria-conteudo h3{
    font-size:20px;
  }
}





/* Overlay escuro */
.popup{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

/* Caixa principal */
.cxPopup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
    z-index: 9999;
    animation: popupFade .35s ease;
}

/* Cabeçalho com botão fechar */
.caixaFechar{
    display: flex;
    justify-content: flex-end;
    padding: 15px 20px;
    border-bottom: 1px solid #e8e8e8;
    background: var(--light-bg);
}

.caixaFechar a{
    width:40px;
    height:40px;
    padding:0;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    border-radius:50%;
}

.caixaFechar a:hover{
    background: #002f55;
    color: #fff;
    transform: translateY(-2px);
}

/* Conteúdo */
.caixaConteudoPopup{
    padding: 35px;
    text-align: center;
}

/* Título */
.caixaConteudoPopup h1{
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Texto */
.caixaConteudoPopup p{
    color: #555;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Imagem */
.caixaConteudoPopup img{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

/* Animação */
@keyframes popupFade{
    from{
        opacity:0;
        transform:translate(-50%, -55%);
    }
    to{
        opacity:1;
        transform:translate(-50%, -50%);
    }
}

/* Responsivo */
@media(max-width:768px){

    .cxPopup{
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }

    .caixaConteudoPopup{
        padding: 25px;
    }

    .caixaConteudoPopup h1{
        font-size: 28px;
    }

    .caixaConteudoPopup p{
        font-size: 16px;
    }

    .caixaConteudoPopup img{
        max-height: 280px;
    }

}