    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    :root {
      --primary-color: #F15A24;
      --secondary-color: #F15A24;
      --background-light: #f9fafb;
      --text-dark: #333;
      --text-muted: #6c757d;
      --text-alternative: #001f3f;
      --border-radius: 12px;
      --transition-speed: 0.3s;
    }

    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;

    }





  /* Logotipo */
    .navbar-brand img {
      height: 40px;
    }

    /* Botão X */
    .btn-close-menu {
      font-size: 1.5rem;
      color: var(--text-alternative);
      background: none;
      border: none;
    }

    /* Ajuste no mobile */
    @media (max-width: 992px) {
      .offcanvas {
        background-color: #0d6efd;
        colo: white;
      }
      .offcanvas a {
        colo: white;
      }
      .offcanvas a:hover {
        colo: #ddd;
      }
    }











    /* Cabeçalho */
    .header {
      background-color: var(--primary-color);
      padding: 8px 0;
      color: var(--background-light);
      text-align: center;
      /* Centraliza o texto no cabeçalho */
    }

    header.header-carousel {
      bottom: 0;
      left: 0;
      display: flex;
      justify-content: center;
      /* Centraliza o conteúdo horizontalmente */
      align-items: center;
      overflow: hidden;
      padding-left: 16px;
    }

    /* Scrolling container */
    .scrolling-text-wrapper {
      display: flex;
      white-space: nowrap;
      will-change: transform;
      justify-content: center;
      /* Centraliza o texto dentro do wrapper */
    }

    /* Caption style */
    .caption {
      font-size: 15px;
      line-height: 1.5;
      padding-right: 64px;
      /* Espaçamento entre textos repetidos */
      user-select: none;
      text-align: center;
      /* Centraliza o texto dentro de cada caption */
    }


    /* Menu Bar */

    /* Estilo para hover automático nos dropdowns */
    .dropdown:hover .dropdown-menu {
      display: block;
      margin-top: 0;
      /* opcional: remove pequeno salto */
      background: var(--background-light);
    }

    .navbar-nav .nav-link {
      padding-right: 20px;
      padding-left: 20px;
    }

    .nav-link .lin {
      color: black
    }

    .lin:hover {

      border-bottom: 2px solid #F15A24;
    }

    .link:hover {
      border-right: 2px solid #F15A24;
      border-left: 2px solid #F15A24;

    }

    .navbar-brand img {
      height: 40px;
    }


    /* Info cards */
    .info-cards {
      max-width: 1400px;
      margin: -3rem auto 3rem;
      background: #f8f9fa;
      border-radius: 0.25rem;
      box-shadow: 0 2px 6px rgb(0 0 0 / 0.1);
      display: flex;
      justify-content: space-around;
      text-align: center;
      position: relative;
      z-index: 1;
      border-top: 4px solid #F15A24;
    }

    .info-card {
      flex: 1;
      padding: 1.5rem 1rem;
      border-right: 1px solid #ddd;
    }

    .info-card:last-child {
      border-right: none;
    }

    .info-card i {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 0.5rem;
    }

    .info-card i:hover {
      transform: translateY(-10);
    }

    .info-card h5 {
      font-size: 30px;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--text-alternative);
    }

    .info-card p {
      font-size: 15px;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .info-card a {
      font-size: 0.85rem;
      color: var(--primary-color);
      text-decoration: none;
    }

    .info-card a:hover {
      text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 767.98px) {
      .info-cards {
        flex-direction: column;
        margin: 0 1rem 3rem;
      }

      .info-card {
        border-right: none !important;
        border-bottom: 1px solid #ddd;
      }

      .info-card:last-child {
        border-bottom: none;
      }

      .data-icons {
        flex-direction: column;
        gap: 1.5rem;
      }

      .dark-section .row>div {
        margin-bottom: 2rem;
      }

      .hex-grid {
        justify-content: center;
      }
    }

    .monica-reading-highlight {
      animation: fadeInOut 1.5s ease-in-out;
    }

    @keyframes fadeInOut {

      0%,
      100% {
        background-color: transparent;
      }

      30%,
      70% {
        background-color: rgba(2, 118, 255, 0.20);
      }
    }



    /* Menu Transicional */

    .transitional-menu {
      background-color: var(--light-color);
      padding: 20px 0;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      margin-bottom: 30px;
    }

    .transitional-menu .nav-link {
      color: var(--dark-color);
      font-weight: 500;
      position: relative;
    }

    .transitional-menu .nav-link i {
      color: var(--primary-color);

    }

    .transitional-menu .nav-link:hover {
      color: var(--primary-color);
    }

    .transitional-menu .nav-link.active {
      color: var(--text-muted);
    }

    .transitional-menu .nav-link.active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 25%;
      width: 50%;
      height: 2px;
      background: var(--secondary-color);
    }


    @media (max-width: 768px) {
      .hero-section {
        padding: 70px 0;
      }

      .scrolling-card {
        width: 240px;
      }

      .transitional-menu .nav-link {
        font-size: 0.9rem;
      }
    }

    /* Hero section */
    .hero {
      position: relative;
      background: linear-gradient(135deg, #0a3a4a, #f15b24a2);
      color: white;
      padding: 10rem 1rem 10rem;
      text-align: center;
      overflow: hidden;

    }

    /* Network pattern overlay */
    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('/Lojas/WhatsApp\ Image\ 2025-07-03\ at\ 22.18.53.jpeg') center center no-repeat;
      background-size: cover;
      opacity: 0.15;
      pointer-events: none;
      z-index: 0;

    }

    .hero h1 {
      position: relative;
      z-index: 1;
      font-weight: 700;
      font-size: 2.0rem;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }


    /* Serviços */

    .card-img-top {
      height: 180px;
      object-fit: cover;
    }

    .card-body {
      padding: 15px;
    }

    .badge-category {
      background: var(--secondary-color);
      position: absolute;
      top: 10px;
      right: 10px;
    }

    .service-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    /* Comércio Geral */
    .card-img-top {
      height: 180px;
      object-fit: cover;
    }

    .card-body {
      padding: 15px;
    }

    .badge-category {
      background: var(--secondary-color);
      position: absolute;
      top: 10px;
      right: 10px;
    }

    .btn-buy {
      background: var(--secondary-color);
      color: white;
      border: none;
      width: 100%;
    }

    .btn-buy:hover {
      background: var(--primary-color);
      color: white;
    }

    .service-card {
      border: none;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .service-icon {
      font-size: 2.5rem;
      color: var(--secondary-color);
      margin-bottom: 15px;
    }

    /* Serviços comércio geral */
    .scrolling-wrapper {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      padding: 20px 0;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      /* Firefox */
    }

    .scrolling-wrapper::-webkit-scrollbar {
      display: none;
      /* Chrome/Safari */
    }

    .scrolling-card {
      flex: 0 0 auto;
      width: 280px;
      margin-right: 20px;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      background: white;
      border: none;
    }

    .scrolling-card:hover {
      transform: translateY(-10px);
    }

    .btn-buy {
      background: var(--text-alternative);
      color: white;
      border: none;
      width: 100%;
    }

    .btn-buy:hove {
      background: var(--primary-color);
      color: white;
    }


    /* Menu Sobre */

    .number {

      color: var(--primary-color);
      font-size: 45px;
    }

    .number:hover {
      transform: translateY(-10px);
    }


    /* Serviços Transitários */
    .special-service {
      border-left: 4px solid var(--secondary-color);
      background: rgba(52, 152, 219, 0.05);
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 0 5px 5px 0;
      height: 200px;
    }

    .imag {
      width: 500px;
      height: 500px;
    }


    /* fornecedores */

    .dark-section {
      background: var(--text-alternative);
      color: white;
      padding: 3rem 0rem 3rem;
    }

    .supplier-card {

      border-radius: 10px;
      padding: 25px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      height: 100%;
      border-left: 4px solid var(--primary-color);
      display: flex;
      align-items: center;
    }

    .supplier-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
      border-left: 4px solid var(--text-alternative);
    }

    .supplier-logo {
      width: 60px;
      height: 60px;
      margin-right: 20px;
      border-radius: 50%;
      background-color: #f1f8ff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .supplier-name {
      font-size: 1.1rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 5px;
    }

    .supplier-location {
      color: #7f8c8d;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .supplier-card {
        padding: 20px;
      }

      .supplier-logo {
        width: 50px;
        height: 50px;
        margin-right: 15px;
      }
    }


    /* Contactos */
    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 40px;
      color: var(--dark-color);
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50%;
      height: 3px;
      background: var(--secondary-color);
    }

    .infor .fas {
      color: var(--primary-color);
    }

    .botao {
      width: 100%;
      background-color: var(--primary-color);
      border: none;
      border-radius: 8px;
      color: var(--background-light);
      padding: 4px 0 ;
    }
    .botao:hover{

      border: var(--primary-color) 1px solid;
      background-color: var(--text-alternative);

    }


    /* Rodapé */
    footer {
      background-color: var(--text-alternative);
      color: white;
      padding: 50px 0 20px;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: white;
      padding-left: 5px;
    }

    .social-icons a {
      display: inline-block;
      width: 40px;
      height: 40px;
      background: var(--primary-color);
      border-radius: 50%;
      text-align: center;
      line-height: 40px;
      margin-right: 10px;
      color: var(--background-light);
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: var(--text-alternative);
      transform: translateY(-5px);
    }

    .social-icons i {
      color: var(--background-light);
    }

    /* botão para cima */
    .back-to-top {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background: var(--secondary-color);
      color: white;
      text-align: center;
      line-height: 50px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 1000;
    }

    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }