*, *::before, *::after {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scrollbar-gutter: stable;
    }

    :root {
      --primary: #ff6600;
      --primary-dark: #c95000;
      --dark: #0f172a;
      --dark-bar: #1e293b;
      --text: #334155;
      --text-light: #545f6e;
      --white: #ffffff;
      --gray-bg: #dde5ee;
      --border: #d3dae4;
      --orange: #f97316;
      --green:#0c670c;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
      padding-top: 100px; 
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .main-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1050;
      display: flex;
      flex-direction: column;
    }

    .top-bar {
      background: var(--dark-bar);
      color: rgba(255, 255, 255, 0.85);
      font-size: 13px;
      padding: 10px 0;
      width: 100%;
      z-index: 1001;
    }

    .top-bar .container {
      display: flex;
      justify-content: end;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
     z-index: 1001;
    }

    .top-bar-left,
    .top-bar-right {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .top-bar-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .top-bar-item i {
      color: var(--primary);
      font-size: 12px;
    }

    .social-icons {
      display: flex;
      gap: 12px;
    }

    .social-icons a {
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      transition: color 0.2s;
    }

    .social-icons a:hover {
      color: var(--white);
    }

    .navbar {
      background: var(--white);
     
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
      width: 100%;
      position: relative;
      z-index: 1002;
    }

    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo {
      font-size: 22px;
      font-weight: 800;
      white-space: nowrap;
      margin-top: 12px;
    }

    .logo .blue {
      color: var(--primary);
    }

    .logo .dark {
      color: var(--dark);
    }

    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(15, 23, 42, 0.65);
      z-index: 1040;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }
    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .nav-drawer-header,
    .drawer-footer {
      display: none;
    }

    .nav-menu,
    .nav-menu-list {
      display: flex;
      align-items: center;
      gap: 38px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-menu a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      transition: color 0.2s;
    }

    .nav-menu a.active,
    .nav-menu a:hover {
      color: var(--primary);
    }

    .mobile-socials {
      display: none;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .header-socials {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 16px;
      border: 1px solid var(--dark-bar);
      border-radius: 50px;
    }

    .header-socials img {
      width: 24px;
      height: 24px;
      object-fit: contain;
      transition: transform 0.2s;
      display: block;
    }

    .header-socials a:hover img {
      transform: scale(1.1);
    }

    .cart-icon {
      position: relative;
      font-size: 18px;
      color: var(--dark);
      cursor: pointer;
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -10px;
      background: var(--primary);
      color: var(--white);
      font-size: 10px;
      font-weight: 700;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 24px;
      border-radius: 50px;
      font-size: 14px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
    }

    .btn-icon {
      width: 28px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 22px;
      color: var(--dark);
      cursor: pointer;
    }

.hero {
    position: relative;
    min-height: 620px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url("../img/fundo_6.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 10px 0 20px;
    
}

    .hero .container {
      display: grid;
      grid-template-columns: 1fr 400px;
      align-items: start;
      width: 100%;
    }


    .hero-tagline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      backdrop-filter: blur(4px);
      font-size: 12px;
      color: var(--white);
      font-weight: 600;
      margin-bottom: 8px;
    }

    .hero-tagline .icon-box {
      width: 22px;
      height: 22px;
      background: var(--orange);
      border-radius: 22px;
      padding: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: var(--white);
    }

    .hero h1 {
      font-size:74px;
      font-weight: 900;
      color: var(--white);
      line-height:1;
      margin-bottom: 12px;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }

    .hero p {
      font-size: 16px;
      color: var(--white);
      line-height: 1.5;
      text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
      max-width: 500px;
      margin-bottom: 12px;
    }

    .hero .btn {
      padding: 14px 28px;
      font-size: 15px;
      margin-top: 12px;
    }

    .social-proof-text {
      color: var(--white);
    }

    .social-proof-text strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
    }

    .social-proof-text span {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.75);
    }

    .social-proof-text span i {
      color: #fbbf24;
      font-size: 11px;
    }
    .quote-form-card {
      background: var(--white);
      border-radius: 16px;
      padding: 24px 32px 24px;
      margin-top:320px; 
      margin-bottom: -1200px; 
      position: relative;
      z-index: 10;
      border: 2px solid var(--border);
    }

    .quote-form-card h2 {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .form-group {
      margin-bottom: 12px;
    }

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      background: var(--gray-bg);
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--primary);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-section-title {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin: 8px 0 12px;
    }

    .quote-form-card .btn {
      width: 100%;
      justify-content: center;
      padding: 14px;
      margin-top: 8px;
      font-size: 15px;
    }

    .form-call {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 2px solid var(--gray-bg);
    }

    .form-call p {
      font-size: 13px;
      text-shadow: none;
      color: var(--text-light);
      margin-bottom: 4px;
    }

    .form-call a {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
    }

    .features {
      background: var(--white);
      padding: 90px 0 80px; 
      position: relative;
      z-index: 1;
    }

    .features-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px 28px;
      max-width: 720px;
    }

    .feature-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .feature-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 18px;
    }

    .feature-item h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }

    .feature-item p {
      font-size: 15px;
      color: var(--text-light);
      line-height: 1.5;
    }

    .about-us {
      background: var(--white);
      padding: 100px 0 110px;
      position: relative;
      overflow: hidden;
    }

    .about-us-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .about-us-description {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
    }
    .badge-about-us {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: 'Playfair Display', Georgia, serif;
      font-style: italic;
      font-weight: 600;
      font-size: 14px;
      color: var(--white);
      background: var(--primary);
      padding: 6px 16px;
      border-radius: 50px;
      letter-spacing: 0.02em;
    }

    .about-us-title {
      font-size: 36px;
      font-weight: 900;
      color: var(--dark);
      line-height: 1.08;
      letter-spacing: -0.02em;
      margin: 0;
    }

    .about-us-title .highlight {
      color: var(--primary);
    }

    .about-us-text {
      font-size: 16px;
      color: var(--text-light);
      line-height: 1.75;
      margin: 0;
      text-align: justify;
      margin-right:20px;
    }

    .about-us-images {
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
    }

    .img-glass-card {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                  box-shadow 0.4s ease;
    }

    .img-glass-card img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }

    .img-glass-card:hover img {
      transform: scale(1.02);
    }

    .glass-overlay {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.18) 0%,
          rgba(255, 255, 255, 0.06) 40%,
          rgba(0, 0, 0, 0.10) 100%
        );
      backdrop-filter: blur(2px) saturate(1.4);
      -webkit-backdrop-filter: blur(2px) saturate(1.4);
      border: 1px solid rgba(255, 255, 255, 0.25);
      border-radius: 20px;

      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.40),
        inset 0 -1px 0 rgba(0, 0, 0, 0.08);
      display: flex;
      align-items: flex-end;
      padding: 20px 22px;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .scroll-horizontal {
      overflow-x: auto;
      white-space: nowrap;
      background: var(--dark);
      width: 100%;
      height: 120px;
      display: flex;
    }
    
    @media (max-width: 992px) {
      .hero {
        position: relative;
        min-height: auto;
        background-image: linear-gradient(rgba(0, 0, 0, 0.1),rgba(0, 0, 0, 0.9)),url("../img/fundo_6.png");
        background-size: cover;
        background-position: center bottom;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        padding: 40px 0 60px;     
      }
      .hero .container {
        grid-template-columns: 1fr;
      }

      .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0; 
      }
      .hero-tagline{
        margin: 30px 0 20px;
      }
      .hero h1 {
        margin-bottom: 16px;
        font-weight: 900;
      }

      .hero p {
        margin: 0 40px 12px 40px;
      }

      .quote-form-card {
        display: block;
        width: 90%;
        margin: 40px auto -150px auto;
        padding: 24px;
        position: relative;
        z-index: 10;
      }



      .features {
        padding-top: 140px;
        padding-bottom: 30px;
      }
      .features-grid {
        max-width: 100%;
      }

      /* About-us responsive 992px */
      .about-us-row {
        grid-template-columns: 1fr;
        gap: 60px;
      }

      .about-us-title {
        font-size: 38px;
      }

      .about-us-text {
        margin-right: 0;
      }

      .img-card-top {
        margin-right: 20px;
      }

      .img-card-bottom {
        margin-left: 20px;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-top: 95px;
      }

      /* Garante que a navbar e o nav-menu fiquem ACIMA da top-bar */
      .navbar {
        z-index: 2005;
      }

      .top-bar {
        z-index: 1003;
      }

      .hero .container {
        padding: 0;
        width: 100%;
      }

      .hero-content h1 {
        font-size: 36px;
      }
      .hero-content p {
        font-size: 16px;
      }

      /* Off-Canvas Mobile Navigation Drawer - Z-INDEX 2000 PARA FICAR ACIMA DA TOP BAR */
      .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 85%;
        max-width: 360px;
        height: 100vh;
        height: 100dvh;
        background: #ffffff;
        z-index: 2000;
        flex-direction: column;
        align-items: stretch;
        padding: 24px 0 0;
        gap: 0;
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.25);
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto;
        display: flex !important;
      }

      .nav-menu.open {
        transform: translateX(0);
      }

      /* Drawer Menu Items List */
      .nav-menu-list {
        padding: 16px 16px 8px;
        display: flex;
        flex-direction: column;
        gap: 4px;
      }

      .nav-menu li {
        width: 100%;
        list-style: none;
      }

      .nav-menu li > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 14px;
        font-size: 15px;
        font-weight: 600;
        color: #1e293b;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
      }

      .nav-menu li > a.active {
        background: rgba(26, 115, 232, 0.08);
        color: var(--primary);
        border-left: 3px solid var(--primary);
        border-radius: 0 8px 8px 0;
      }

      .nav-item-dropdown > a .fa-chevron-down {
        transition: transform 0.3s ease;
        font-size: 12px;
        color: #64748b;
      }

      .nav-item-dropdown.mobile-open > a .fa-chevron-down {
        transform: rotate(180deg);
        color: var(--primary);
      }

      .nav-item-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        background: #f8fafc;
        margin: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s cubic-bezier(0, 1, 0, 1), padding 0.3s ease, margin 0.3s ease;
        display: flex;
        flex-direction: column;
      }

      .nav-item-dropdown.mobile-open .dropdown-menu {
        max-height: 350px;
        margin: 4px 0 8px 10px;
        padding: 6px 8px;
        transition: max-height 0.35s ease-in-out;
      }

      .dropdown-menu li a {
        padding: 9px 12px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        color: #475569 !important;
        display: flex !important;
        align-items: center;
        gap: 8px;
        border-radius: 6px;
      }

      .dropdown-menu li a:hover {
        color: var(--primary) !important;
        background: #ffffff !important;
        font-weight: 600 !important;
      }

      .dropdown-menu li a.active {
        color: var(--primary) !important;
        background: rgba(26, 115, 232, 0.1) !important;
        font-weight: 600 !important;
        border-left: 3px solid var(--primary);
        border-radius: 0 6px 6px 0 !important;
        padding-left: 12px !important;
      }
      .drawer-footer {
        margin-top: auto;
        padding: 20px 16px;
        background: #f8fafc;
        border-top: 1px solid #e2e8f0;
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .drawer-socials {
        display: flex;
        justify-content: center;
        gap: 16px;
      }

      .drawer-socials img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        transition: transform 0.2s;
      }

      .drawer-socials a:hover img {
        transform: scale(1.15);
      }

      .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #f1f5f9;
        border: none;
        border-radius: 8px;
        font-size: 18px;
        color: #1e293b;
        cursor: pointer;
        transition: background 0.2s, color 0.2s;
      }

      .menu-toggle:hover {
        background: var(--primary);
        color: #ffffff;
      }

      .header-socials {
        display: none;
      }

      .top-bar {
        padding: 7px 0;
      }

      .top-bar .container {
        justify-content: center;
        padding: 0 10px;
      }

      .top-bar-left {
        gap: 12px;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
      }

      .top-bar-left > a {
        text-decoration: none;
        color: inherit;
        display: inline-flex;
      }

      /* Oculta apenas o 3º elemento (Localização) no mobile */
      .top-bar-left > a:last-child {
        display: none !important;
      }

      .top-bar-item {
        font-size: 11.5px;
        gap: 5px;
        white-space: nowrap;
      }

      .top-bar-item i {
        font-size: 11px;
      }

      .features-grid {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-bottom: 60px;
      }

      .features {
        margin-top: 0;
        padding-top: 140px;
        padding-bottom: 30px;
      }

      .about-us {
        padding: 50px 0 50px;
      }

      .about-us-title {
        font-size: 32px;
      }

      .about-us-text {
        text-align: left;
      }

      .badge-about-us {
        font-size: 16px;
      }

      .img-card-top,
      .img-card-bottom {
        margin-left: 0;
        margin-right: 0;
      }

      .img-glass-card img {
        height: 210px;
      }
    }

.clients-section {
  position: relative;
  overflow: hidden;
}

.clients-pin-wrap {
  height: 90vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.clients-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.clients-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      135deg,
      #0a0f1e 0%,
      #111827 35%,
      #0f172a 60%,
      #16050a 100%
    );
}

.clients-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.clients-bg-orb--2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: 100px;
  background: radial-gradient(circle, #1e40af 0%, transparent 70%);
  opacity: 0.12;
}


.clients-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 80px;
}

.clients-header-badge {
  display: inline-flex;
  gap: 10px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  background-color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.clients-title {
  font-size:32px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.clients-title-accent {
  color: var(--primary);
  position: relative;
}


.clients-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  border-radius: 2px;
}

.clients-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  line-height: 1.65;
  margin: 0;
}

.clients-track-outer {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: visible;
  flex-shrink: 0;
}

.clients-track-outer::before,
.clients-track-outer::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 10;
  pointer-events: none;
}


.clients-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 19px;
  padding: 20px 80px;
  width: max-content;
  will-change: transform;
}

.client-card {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  cursor: pointer;
}

.client-card-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  box-shadow:0 8px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.10);
  transition:
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.client-logo {
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.75;

  transition:
    filter 0.42s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.42s ease,
    transform 0.38s ease;
}

/* Hover: restore original colours */
.client-card:hover .client-logo {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}

/* ─────────────────── Progress Bar ─────────────────── */
.clients-progress-bar {
  position: relative;
  z-index: 2;
  width: min(500px, 70vw);
  height: 3px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.clients-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #ff9a44);
  border-radius: 2px;
  transition: width 0.05s linear;
  box-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
}

/* ─────────────────── Mobile Dots ─────────────────── */
.clients-dots {
  display: none; /* shown via JS on mobile */
  position: relative;
  z-index: 2;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 24px;
}

.clients-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease, width 0.25s ease;
  flex-shrink: 0;
}

.clients-dot.is-active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
  transform: scale(1);
  box-shadow: 0 0 10px rgba(255, 102, 0, 0.5);
}

/* ─────────────────── Responsive ─────────────────── */

/* Tablet — keep pinned scroll, smaller cards */
@media (max-width: 992px) {
  .client-card {
    width: 190px;
    height: 115px;
  }

  .clients-title {
    font-size: 30px;
  }

  .clients-subtitle {
    font-size: 14px;
  }
}

/* Mobile — convert to touch slider, disable pinning */
@media (max-width: 768px) {
  .clients-section {
    height: auto !important; /* override JS-set height */
  }

  .clients-pin-wrap {
    position: relative;
    height: auto;
    padding: 60px 0 50px;
    gap: 28px;
  }

  .clients-track-outer {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }

  .clients-track-outer::-webkit-scrollbar {
    display: none;
  }

  .clients-track {
    transform: none !important; /* disable JS translate on mobile */
    padding: 16px 40px;
    gap: 16px;
  }

  .client-card {
    width: 165px;
    height: 100px;
  }

  .clients-track-outer::before,
  .clients-track-outer::after {
    width: 50px;
  }

  .clients-dots {
    display: flex;
  }

  .clients-progress-bar {
    display: none;
  }

  /* Badge por cima, título por baixo */
  .clients-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 0 24px;
  }

  .clients-title {
    font-size: 20px;
  }
}
.services-section {
  padding: 120px 0;
  background-color: #f8fafc;
}

.services-header-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  gap: 40px;
}



.services-title-main {
  font-size: 34px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  margin-top: 16px;
  margin-bottom: 0;
}

.services-header-right {
  flex: 1;
  max-width: 500px;
  padding-bottom: 8px; /* aligns text baseline with the title */
}

.services-main-desc {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 45px 35px 35px;
  position: relative;
  box-shadow: 0 10px 40px rgba(123, 124, 126, 0.74);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(123, 124, 126, 0.74);
}

.service-icon {
  position: absolute;
  top: -28px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  transition: transform 0.3s ease;
}

.service-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-desc {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1; /* Pushes the link to the bottom */
}

.service-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.service-link i {
  font-size: 12px;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.service-card-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 45px 35px;
  justify-content: space-between;
}

.service-card-featured .service-title {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
}

.service-card-featured .service-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.service-link-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-self: flex-start;
}

.service-link-alt:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-header-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-bottom: 50px;
  }

  .services-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .services-header-right {
    padding-bottom: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 60px 0;
  }
  .services-section {
    padding: 50px 0;
  }
}

.why-us-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden; /* Contains the absolute background layers */
  color: var(--white);
}

.why-us-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: start;
  gap: 50px;
}

.why-us-left {
  flex: 1;
  position: relative;
}

.why-us-image-wrapper {
  position: relative;
  border-radius: 24px;
}

.why-us-main-img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  display: block;
}

.why-us-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  z-index: 3;
}

.why-us-glass-card {
  position: absolute;
  bottom: 10px;
  right: -40px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding:20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  z-index: 3;
  height: 150px;
  width: 220px;
}

.why-us-glass-card h4 {
  margin: 0;
  font-size: 24px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
}

.why-us-glass-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.3;
}

.why-us-right {
  flex: 1;
}

.why-us-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.why-us-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: justify;
}

.why-us-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.why-us-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--white);
  line-height: 1.5;
}

.why-us-list li i {
  color: var(--primary);
  background: rgba(255, 102, 0, 0.15);
  padding: 6px;
  border-radius: 50%;
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .why-us-container {
    flex-direction: column;
    gap: 60px;
  }
  .why-us-left, .why-us-right {
    width: 100%;
  }
  .why-us-glass-card {
    right: 20px;
    bottom: -30px;
  }
  .why-us-badge {
    left: 20px;
    top: -20px;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 50px 0;
  }
  .why-us-title {
    font-size: 36px;
  }
  .why-us-glass-card {
    right: 10px;
    bottom: -20px;
    padding: 16px;
  }
  .why-us-badge {
    left: 10px;
    top: -15px;
    font-size: 14px;
  }
}
.some-projects-section {
  position: relative;
  padding: 120px 0;
  background-color: #f8fafc;
  overflow: hidden;
}

.projects-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.project-about-us{
  background-color: var(--primary);
  color: var(--white);
  padding: 6px 16px;
}


.projects-title-main {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
  margin-top: 16px;
}

.projects-carousel-container {
  position: relative;
  width: 100%;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--dark);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
}

.carousel-nav-btn.prev-btn {
  left: -27px;
}

.carousel-nav-btn.next-btn {
  right: -27px;
}

.carousel-nav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
}

.carousel-nav-btn.prev-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn.next-btn:hover {
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.projects-carousel-wrapper {
  overflow: hidden;
  position: relative;
  padding: 10px 0 30px;
  cursor: grab;
}

.projects-carousel-wrapper:active {
  cursor: grabbing;
}

.projects-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.project-card {
  flex: 0 0 calc((100% - 60px) / 3);
  background-color: var(--white);
  border-radius:8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(123, 124, 126, 0.20);
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-card-body {
  padding: 30px 28px 24px;
  flex-grow: 1;
}

.project-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.project-location i {
  color: var(--primary);
  font-size: 13px;
}

.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.project-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.project-stat-item i {
  color: var(--primary);
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.project-card-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-project-action {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.btn-project-action i {
  font-size: 12px;
}

.btn-project-action:hover {
  gap: 10px;
  color: var(--primary-dark);
}

.projects-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.projects-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.projects-dot.is-active {
  width: 28px;
  border-radius: 10px;
  background-color: var(--primary);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}
.cta-final-container{
  height: 500px;
  background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../img/fundo_3.png');
  background-size: cover;
  background-position: center;
}
@media (max-width: 1200px) {
  .carousel-nav-btn.prev-btn {
    left: 15px;
  }
  .carousel-nav-btn.next-btn {
    right: 15px;
  }
}

@media (max-width: 1024px) {
  .project-card {
    flex: 0 0 calc((100% - 30px) / 2); 
  }
  .projects-title-main {
    font-size: 38px;
  }
}


.projects-carousel-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.project-card {
  flex: 0 0 calc((100% - 60px) / 3);
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-img-container {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img {
  transform: scale(1.06);
}

.project-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.project-card-body {
  padding: 30px 28px 24px;
  flex-grow: 1;
}

.project-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 24px;
}

.project-location i {
  color: var(--primary);
  font-size: 13px;
}

.project-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.project-stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
}

.project-stat-item i {
  color: var(--primary);
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.project-card-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.btn-project-action {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease, color 0.3s ease;
}

.btn-project-action i {
  font-size: 12px;
}

.btn-project-action:hover {
  gap: 10px;
  color: var(--primary-dark);
}

.projects-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.projects-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(15, 23, 42, 0.1);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.projects-dot.is-active {
  width: 28px;
  border-radius: 10px;
  background-color: var(--primary);
  box-shadow: 0 4px 10px rgba(255, 102, 0, 0.2);
}
.cta-final-container{
  height: 500px;
  background-image:
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('../img/fundo_3.png');
  background-size: cover;
  background-position: center;
}
@media (max-width: 1200px) {
  .carousel-nav-btn.prev-btn {
    left: 15px;
  }
  .carousel-nav-btn.next-btn {
    right: 15px;
  }
}

@media (max-width: 1024px) {
  .project-card {
    flex: 0 0 calc((100% - 30px) / 2); /* 2 cards on tablet */
  }
  .projects-title-main {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .some-projects-section {
    padding: 50px 0;
  }
  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 40px;
  }
  .carousel-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }
  .carousel-nav-btn.prev-btn {
    left: 10px;
  }
  .carousel-nav-play {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-title {
    font-size: 28px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .carousel-nav-btn.next-btn {
    right: 10px;
  }
  .projects-title-main {
    font-size: 30px;
  }
  .project-card {
    flex: 0 0 100%; /* 1 card on mobile */
  }
  .project-img-container {
    height: 220px;
  }
  .project-card-body {
    padding: 24px 20px 20px;
  }
  .project-card-footer {
    padding: 16px 20px 20px;
  }
}

/* ─── CTA FINAL SECTION ───────────────────────────────────── */
.cta-section {
  padding:0 0 100px 0;
  background-color: #f8fafc;
  overflow: visible;
  position: relative;
}

.cta-box {
  background: var(--dark-bar);
  border-radius: 24px;
  padding: 60px 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  position: relative;
  overflow: visible;
}

.cta-content {
  z-index: 2;
  position: relative;
}

.cta-title {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.btn-cta {
  background-color: #008b45;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 139, 69, 0.05);
}

.btn-cta:hover {
  background-color: #00a854;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 139, 69, 0.09);
}

.cta-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 3;
}

.cta-image {
  width: 100%;
  height: auto;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.4); /* Scaled to pop out of the parent section */
  transform-origin: center center;
}

/* Responsividade */
@media (max-width: 992px) {
  .cta-section {
    padding: 30px 0 60px 0;
  }
  .cta-box {
    grid-template-columns: 1fr;
    padding: 50px 40px;
    text-align: center;
    gap: 60px;
  }
  .cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cta-title {
    font-size: 28px;
    margin-bottom: 24px;
    text-transform: uppercase;
  }
  .cta-image-wrapper {
    min-height: 200px;
  }
  .cta-image {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@media (max-width: 576px) {
  .cta-box {
    padding: 40px 24px;
    gap: 50px;
  }
  .cta-title {
    font-size: 22px;
    text-transform: uppercase;
  }
  .cta-image-wrapper {
    min-height: 160px;
  }
  .cta-image {
    transform: translate(-50%, -50%) scale(1.3);
  }
}

/* ─── FAQ SECTION ─────────────────────────────────────────── */
.faq-section {
  padding: 60px 0;
  background-color: #ffffff; 
}

.faq-section .container {
  background-color: #f8fafc; /* Light background on container */
  border-radius: 16px;
  padding: 50px 10px;
}

.faq-header {
  text-align: center;
  margin-bottom: 30px;
}

.faq-title-center {
  text-align: center;
  margin-bottom: 8px;
}

.faq-subtitle {
  text-align: center;
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  line-height: 1.4;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0 auto 50px auto;
  max-width: 900px;
}

.faq-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
  color: #0b0f19;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  background: #0b0f19;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.faq-icon::before {
  content: '\f067'; 
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}

.faq-item[open] .faq-icon::before {
  content: '\f068'; /* fa-minus */
}

.faq-answer {
  margin-top: 16px;
  font-size: 18px;
  color: #64748b;
  line-height: 1.6;
}

.faq-footer {
  text-align: center;
}

@media (max-width: 992px) {
  .faq-section .container {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-section .container {
    padding: 40px 20px;
  }
}

/* ─── MAIN FOOTER ─────────────────────────────────────────── */
.main-footer {
  background-color: #0b0f19;
  width: 100%;
}

.footer-card {
  background-color: #0b0f19;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.2fr 0.8fr 1.3fr;
  gap: 40px;
  padding: 60px 0 10px 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-img {
  max-width: 200px;
  height: auto;
  display: block;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #94a3b8;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: #008b45; /* Green matching the CTA theme */
  transform: translateY(-3px);
  color: #ffffff;
}

.footer-title {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.4;
}

.footer-contact-info i {
  color: #008b45; /* Match theme color */
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact-info span {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-contact-info span:hover {
  color: #ffffff;
}
.footer-contact-info a {
  color: #94a3b8;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: #ffffff;
}

.footer-map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.footer-map-container:hover {
  border-color: rgba(0, 139, 69, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.footer-bottom .copyright {
  font-size: 14px;
  color: #64748b;
}



@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-card {
    padding: 40px 30px 30px 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-card {
    padding: 30px 20px 20px 20px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 15px;
  }
  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

.nav-item-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 300px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 99999;
  display: flex;
  flex-direction: column;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  display: block;
}

.dropdown-menu a:hover {
  background: var(--gray-bg);
  color: var(--primary);
}

.dropdown-menu a.active {
  background: rgba(26, 115, 232, 0.08);
  color: var(--primary);
  font-weight: 600;
  border-left: 3px solid var(--primary);
  padding-left: 17px;
}

/* History Section */
.history-section {
  padding: 80px 0;
  background: var(--white);
}

.history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.history-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

.history-logo {
  text-align: center;
}

.history-logo img {
  max-width: 100%;
  height: auto;
}


.mvv-section {
  padding: 80px 0;
  background: var(--dark-bar);
}

.mvv-card {
  color: var(--white);
  display: grid;
  grid-template-columns: 2.2fr 2.2fr 2.2fr;
  gap: 30px;
}

.mvv {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  background: #eff3fa;
  padding: 20px 40px 20px;
}
.mvv-one{
  transform: rotate(-3deg);
}
.mvv-one:hover{
  transform: rotate(0deg);
  transition: transform 0.5s ease;
}

.mvv-item h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color:var(--primary);
}

.mvv-item h3 i {
  font-size: 28px;
  color:var(--primary);
}

.mvv-item p {
  font-size: 15px;
  opacity: 0.9;
  color:var(--dark);
}

.mvv-right h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.team-section {
  padding: 100px 0;
  overflow: hidden;
}

.team-header {
  text-align: center;
  margin-bottom: 20px;
}

.team-container {
  position: relative;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.team-card {
  position: absolute;
  width: 280px;
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  transition: box-shadow 0.3s;
  border: 1px solid var(--border); 
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.team-card h4 {
  font-size: 20px;
  color: var(--dark);
}

.team-card p {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
}

.docs-section {
  padding: 80px 0;
  background: var(--white);
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.doc-card {
  background: var(--gray-bg);
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.doc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.doc-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.doc-card h4 {
  font-size: 16px;
  color: var(--dark);
}

/* Document Modal */
.doc-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
}

.doc-modal.active {
  display: flex;
}

.doc-modal-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.doc-modal-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: var(--white);
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 992px) {
  .history-grid, .mvv-card, .docs-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .history-grid, .mvv-card, .docs-grid {
    grid-template-columns: 1fr;
  }
  
  .mvv-card {
    padding: 20px;
  }
  
  .team-container {
    height: auto;
    flex-direction: column;
    gap: 30px;
  }
  
  .team-card {
    position: relative;
    width: 100%;
    max-width: 320px;
  }

  .history-section,
  .bento-section,
  .mvv-section,
  .team-section,
  .docs-section {
    padding: 50px 0;
  }
}
.hero-inner {
  position: relative;
  background: linear-gradient(rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.6)), url('../img/hero-1.gif') center/cover no-repeat;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 10px 0 20px;
  color: var(--white);
  text-align: center;
}

.hero-inner-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-inner h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-inner p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .hero-inner {
    min-height: 340px;
    height: auto;
    padding: 50px 20px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-inner h1 {
    font-size: 30px;
    margin-bottom: 12px;
  }
  .hero-inner p {
    font-size: 15px;
    line-height: 1.5;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.bento-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bento-header {
  padding-bottom: 10px;
}

.bento-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.bento-text {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: justify;
}

.bento-card {
  border-radius: 12px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.bento-card-orange {
  background: var(--primary); ;
  flex-grow: 1;

}
.bento-card-green {
  background: #eef7eb;
  flex-grow: 1;
}

.bento-card-blue {
  background: #e8effc; 
  flex-grow: 0;
  height: 180px;
}

.bento-card-purple {
  background: #f4ecf9; 
  flex-grow: 0;
  height: 180px;
}

.bento-img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  flex-grow: 1;
  min-height: 150px;
}

.bento-img-tall {
  height: 280px;
}
.quote-icon{
  color: var(--white);
  font-size: 28px;
}
.quote-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  text-align: justify;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 19px;
  color: var(--text-light);
  font-weight: 500;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-col-left {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .bento-card {
    padding: 24px;
  }
  .quote-icon {
    margin-bottom: 10px;
  }
  .bento-title {
    font-size: 28px;
  }
  .bento-text,
  .quote-text {
    text-align: left;
  }
  .bento-card-blue, .bento-card-purple {
    height: 160px;
  }
}

/* ─── BACK TO TOP BUTTON ──────────────────────────────── */
#backToTopBtn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 9999;
}

#backToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#backToTopBtn:hover {
  background: var(--primary-dark, #1558c0);
  transform: translateY(-3px);
}

#backToTopBtn:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  #backToTopBtn {
    bottom: 20px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}

/* ─── WHATSAPP FLOATING BUTTON ───────────────────────── */
#whatsappBtn {
  position: fixed;
  bottom: 92px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: bottom 0.3s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  animation: wa-pulse 2.5s ease-in-out infinite;
}

/* Quando o botão Voltar ao Topo está oculto, desce para a posição dele */
#whatsappBtn.wa-lowered {
  bottom: 32px;
}

#whatsappBtn:hover {
  background: #20ba5a;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
  transform: translateY(-3px);
  animation: none;
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
  #whatsappBtn {
    bottom: 76px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  #whatsappBtn.wa-lowered {
    bottom: 20px;
  }
}

/* ─── FORM FEEDBACK & BUTTON STATES ─────────────────────── */
.form-feedback {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.form-feedback--visible {
  opacity: 1;
  transform: translateY(0);
}

.form-feedback--success {
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #166534;
}

.form-feedback--error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
}

.form-feedback__icon {
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

/* Spinner dentro do botão */
.btn-spinner {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}

.btn-loading,
.btn-cooldown {
  opacity: 0.75;
  cursor: not-allowed;
}

