 *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; font-family: 'montserrat', sans-serif;}

:root {
  --verde: #71ab44;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --mid: #5a5a5a;
  --light: #e0e0e0;
  --bg: #f4f4f4;
  --white: #ffffff;
  --nav-h: 80px;
  --footer-bg: #111111;
  --footer-text: rgba(255,255,255,0.55);
  --footer-border: rgba(255,255,255,0.08);
  font-family: 'montserrat', sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'montserrat', sans-serif;
}


   #wrapper {
    background: #fff;
    padding-top: 24px;
  }

  body { font-family: 'montserrat', sans-serif;
    font-weight: 500; }

  /* ── NAVBAR ── */
 .navbar {
  position: fixed;
  top: 0; left: 0; right: 0; 
  z-index: 1000;
  height: var(--nav-h);
  display: flex; 
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  background: transparent;
  transition: background 0.3s;
}

  .navbar.scrolled {
   background: rgba(10,10,10,0.95);
   backdrop-filter: blur(10px);
  }

.logo img {
  width: 250px;
  height: 40px;
  object-fit: contain;
  margin-right: -10px; /* Adjust if needed to visually align with SVG version */;
}

  .logo img,
.footer-logo img {
  width: auto !important;
  max-width: 140px !important;
  height: 34px !important;
  margin-left: 0.9rem !important;
}

  .nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
  }

  .nav-links a {
    font: 'montserrat', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-links a:hover { background: rgba(255,255,255,0.12); }

  .nav-links .chevron {
    font-size: 0.6rem;
    opacity: 0.7;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .btn-book {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.7);
    color: var(--white);
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-family: 'montserrat', sans-serif;
  }
  .btn-book:hover { background: rgba(255,255,255,0.15); border-color: white; }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    margin-right: -2rem;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    background: white;
    border-radius: 2px;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
  }

  /* ── SLIDER ── */
 .hero {
    position: relative;
    width: calc(100% - 24px); /* m-3 = 12px each side */
    margin: 12px;
    height: 600px;
    overflow: hidden;
    border-radius: 8px; /* rounded-1 */
    border: 3px solid rgba(255,255,255,0.12);
    outline: 1px solid rgba(232,70,10,0.3);
    outline-offset: -6px;
  }

  .slides-wrapper {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.9s cubic-bezier(0.77,0,0.175,1);
  }

  .slide {
    width: 33.333%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
  }

  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.07);
    transition: transform 8s ease;
  }

  .slide.active .slide-bg { transform: scale(1); }

  /* Gradient overlay */
  .slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      rgba(5,25,55,0.82) 0%,
      rgba(5,25,55,0.55) 45%,
      rgba(5,25,55,0.1) 75%,
      transparent 100%
    );
  }

  /* Slide backgrounds using placeholder images from Unsplash */
  .slide:nth-child(1) .slide-bg {
    background-image: url('img/sme-entrepreneur-small-business-entrepreneurs-online-selling-ideashappy-young-asian-business-owner-work-computer-boxs-homedelivery-sme-procurement-package-box-deliver-customers.jpg');
  }

  .slide:nth-child(2) .slide-bg {
    background-image: url('img/view-gas-refinery-plant-illuminated-sunset.jpg');
  }

  /* ── SLIDE CONTENT ── */
  .slide-content {
    position: absolute;
    z-index: 10;
    bottom: 0; top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 80px;
    max-width: 680px;
  }

  .slide-title {
    font-family: 'montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  }

  .slide-desc {
    font-family: 'montserrat', sans-serif;
    margin-top: 20px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 520px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
  }

  .slide-cta {
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s;
  }

  .btn-cta {
    background: var(--verde);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'montserrat', sans-serif;
    cursor: pointer;
    letter-spacing: 0.3px;
    transition: background 0.2s, transform 0.2s;
  }
  .btn-cta:hover { background: var(--verde-hover); transform: translateY(-1px); }

  .slide.active .slide-title,
  .slide.active .slide-desc,
  .slide.active .slide-cta {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── ARROWS ── */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 1.1rem;
    backdrop-filter: blur(4px);
  }
  .arrow:hover { background: rgba(255,255,255,0.22); }
  .arrow-left  { left: 18px; }
  .arrow-right { right: 18px; }

  /* ── DOTS ── */
  .dots {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
  }
  .dot.active {
    background: var(--verde);
    width: 24px;
    border-radius: 4px;
  }

  /* ── PROGRESS BAR ── */
  .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--verde);
    width: 0%;
    z-index: 20;
    transition: width linear;
  }

  /* ── SECTION ── */
.services-section {
    width: calc(100% - 24px);
    margin: 12px;
    padding: 60px 52px; /* mesmo padding horizontal da navbar */
    background: #f4f4f4;
    border-radius: 8px; /* mesmo rounded-1 do hero */
    font-family: 'montserrat', sans-serif;
  }

 /* ══════════════════════════════
     DRAWER MENU
  ══════════════════════════════ */
  .drawer-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 900;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s ease;
    backdrop-filter: blur(2px);
  }
  .drawer-overlay.open { opacity: 1; pointer-events: all; }

  .drawer {
    position: fixed;
    top: 0; right: 0;
    width: 380px; max-width: 92vw;
    height: 100dvh;
    background: #131313;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
    display: flex; flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.1) transparent;
  }
  .drawer.open { transform: translateX(0); }

  /* Header */
  .drawer-header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 28px 32px 24px;
    flex-shrink: 0;
  }
  .drawer-logo {
    display: flex; align-items: center; gap: 10px; text-decoration: none;
  }
  .drawer-logo svg { width: 30px; }
  .drawer-logo-text {
    font-family: 'montserrat', sans-serif;
    font-size: 1.5rem; font-weight: 700;
    color: white; letter-spacing: -0.3px;
  }

  .drawer-logo img {
    width: auto;
    height: 40px;
    object-fit: contain;
  }

  .drawer-close {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background 0.2s;
  }
  .drawer-close:hover { background: rgba(255,255,255,0.14); }
  .drawer-close svg { width: 16px; height: 16px; }

  /* Divider */
  .drawer-divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 0 32px;
    flex-shrink: 0;
  }

  /* Sections */
  .drawer-section { padding: 28px 32px; }

  .drawer-section-title {
    font-family: 'montserrat', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: white; margin-bottom: 18px;
    letter-spacing: -0.2px;
  }

  /* Services list */
  .drawer-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
  .drawer-list li a {
    display: flex; align-items: center; gap: 14px;
    padding: 9px 0;
    font-size: 0.95rem; font-weight: 500;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
  }
  .drawer-list li a:hover { color: white; }
  .drawer-list li a svg {
    width: 18px; height: 18px; flex-shrink: 0; stroke: seagreen;
  }

  /* Contact list */
  .drawer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
  .drawer-contact-list li {
    display: flex; align-items: flex-start; gap: 14px;
  }
  .drawer-contact-list li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }
  .drawer-contact-list li a,
  .drawer-contact-list li span {
    font-size: 0.9rem; color: rgba(255,255,255,0.75);
    text-decoration: none; line-height: 1.5;
    transition: color 0.2s;
  }
  .drawer-contact-list li a:hover { color: white; }

  /* About */
  .drawer-about {
    font-size: 0.88rem; line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 22px;
  }

  /* Social icons */
  .drawer-socials {
    display: flex; gap: 18px; align-items: center;
  }
  .drawer-socials a {
    opacity: 0.55; transition: opacity 0.2s;
    display: flex; align-items: center;
  }
  .drawer-socials a:hover { opacity: 1; }

  /* Hamburger — animate to X when open */
  .hamburger { cursor: pointer; padding: 4px; display: flex; flex-direction: column; gap: 5px; }
  .hamburger span {
    width: 22px; height: 2px; background: white;
    border-radius: 2px; display: block;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  

  /* ── HEADER ── */
  .section-header {
    margin-bottom: 52px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    
  }

  .section-label {
    font-family: 'montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 10px;
    
  }

  .section-title {
    font-family: 'montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
  }

  .section-title span {
    color: var(--verde);
  }

  .view-all {
    font-family: 'montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1.5px solid var(--black);
    padding-bottom: 2px;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .view-all:hover { opacity: 0.5; }

  /* =========================================
   RESET BASE
========================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================================
   SERVICES SECTION
========================================= */

.services {
  padding: 100px 0;
  background: #0f0f0f;
  font-family: 'montserrat', sans-serif;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'montserrat', sans-serif;
}

/* =========================================
   GRID LAYOUT
========================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-family: 'montserrat', sans-serif;
}

/* =========================================
   CARD
========================================= */

.card {
  background: #141414;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  text-align: center;
  transition: all 0.35s ease;
  font-family: 'montserrat', sans-serif;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

/* =========================================
   IMAGE AREA
========================================= */

.card-image {
  position: relative;
  width: 500px;
  height: 230px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.card:hover .card-image img {
  transform: scale(1.08);
}

/* =========================================
   ICON BADGE
========================================= */


/* =========================================
   CARD BODY
========================================= */

.card-body {
  padding: 70px 28px 40px;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 14px;
  font-family: 'montserrat', sans-serif;
}

.card-desc {
  font-size: 0.95rem;
  color: #bdbdbd;
  line-height: 1.6;
  margin-bottom: 22px;
  font-family: 'montserrat', sans-serif;

}

.card-link {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid #444;
  padding-bottom: 4px;
  transition: all 0.3s ease;
  font-family: 'montserrat', sans-serif;
}

.card-link:hover {
  border-color: #ffffff;
}

/* =========================================
   RESPONSIVE
========================================= */


@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo img,
.footer-logo img {
  width: auto !important;
  max-width: 140px !important;
  height: 34px !important;
  margin-left: -1.4rem !important;
}
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services {
    padding: 70px 0;
  }
}
  /* ── DIVIDER LINE ── */
  .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light), transparent);
    margin-bottom: 80px;
  }

  

  /* ══════════════════════════════
     SECTION — mesmas dimensões do hero
  ══════════════════════════════ */
  .why-section {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    padding: 80px 52px 88px;
    background: var(--white);
    border-radius: 8px;
  }

  /* ── HEADER ── */
  .section-head {
    text-align: center;
    margin-bottom: 72px;
  }

  .section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--verde);
    margin-bottom: 18px;
    font-family: 'montserrat', sans-serif;
  }

  .section-title {
    font-family: 'montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto;
    letter-spacing: -0.5px;
  }

  /* ── GRID ── */
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 52px;
    column-gap: 48px;
  }

  /* ── ITEM ── */
  .why-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
  }

  .why-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    background: #000000;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, transform 0.25s;
    cursor: default;
  }

  .why-item:hover .why-icon {
    background: var(--dark);
    transform: scale(1.06);
  }

  .why-icon svg {
    width: 26px;
    height: 26px;
    stroke: rgb(253, 251, 251);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .why-body h3 {
    font-family: 'montserrat', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .why-body p {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.75;
    align-items: justify;
  text-align: justify;
  }

  /* ── DIVIDER between rows ── */
  .why-grid .why-item:nth-child(n+4) {
    padding-top: 0;
  }

    /* ══════════════════════════════
     BANNER DIV — mesmo tom do service-grid (#f4f4f4)
  ══════════════════════════════ */
  .faq-banner {
    width: calc(100% - 24px);
    margin: 0 12px;
    background: #f4f4f4;
    border-radius: 8px 8px 0 0;
    padding: 72px 52px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Subtle grid texture matching service-grid aesthetic */
  .faq-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(10,10,10,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,10,10,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
  }

  .faq-banner-left {
    position: relative; z-index: 1;
  }

  .banner-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--verde);
    display: block;
    margin-bottom: 16px;
  }

  .banner-title {
    font-family: 'montserrat', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--black);
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .banner-title em {
    font-style: normal;
    color: var(--mid);
  }

  .banner-desc {
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 420px;
  }

  .banner-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--black);
    color: var(--white);
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s, gap 0.2s;
  }
  .banner-cta:hover { background: var(--dark); gap: 12px; }

  /* Stats cards — same white card style as service grid */
  .faq-banner-right {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .mini-stat {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border: 1.5px solid var(--light);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .mini-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.11);
  }

  .mini-stat .num {
    font-family: 'montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
    margin-bottom: 6px;
  }

  .mini-stat .desc {
    font-size: 0.82rem;
    color: var(--mid);
    line-height: 1.5;
  }

  /* Span full width for the last one if odd */
  .mini-stat.wide {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
  }
  .mini-stat.wide .num { font-size: 1.6rem; flex-shrink: 0; }

  /* ══════════════════════════════
     FAQ SECTION — white, seamlessly connected
  ══════════════════════════════ */
  .faq-section {
    width: calc(100% - 24px);
    margin: 0 12px 12px;
    padding: 0 52px 80px;
    background: #f4f4f4;
    border-radius: 0 0 8px 8px;
  }

  /* Divider line between banner and accordion */
  .faq-divider {
    height: 1px;
    background: var(--light);
    margin-bottom: 60px;
  }

  /* ── ACCORDION ── */
  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 860px;
    margin: 0 auto;
  }

  .faq-item {
    background: var(--white);
    border-radius: 10px;
    border: 1.5px solid var(--light);
    overflow: hidden;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .faq-item.open {
    border-color: var(--black);
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  }

  .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
  }
  .faq-question:hover { background: #fafafa; }

  .faq-question-text {
    font-family: 'montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.4;
  }

  .faq-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--bg);
    border-radius: 50%;
    border: 1.5px solid var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, transform 0.35s;
  }

  .faq-item.open .faq-icon {
    background: var(--black);
    border-color: var(--black);
    transform: rotate(45deg);
  }

  .faq-icon svg {
    width: 14px; height: 14px;
    stroke: var(--mid);
    fill: none; stroke-width: 2.5;
    stroke-linecap: round;
    transition: stroke 0.25s;
  }
  .faq-item.open .faq-icon svg { stroke: white; }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 0.92rem;
    color: var(--mid);
    line-height: 1.8;
    border-top: 1px solid var(--light);
    padding-top: 20px;
  }


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  width: calc(100% - 24px);
  margin: 0 12px 12px;
  border-radius: 8px; 
  overflow: hidden;
  background: var(--footer-bg);
  border-top: 3px solid var(--verde);
}

.footer-body {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 60px;
  padding: 72px 60px 64px;
  border-bottom: 1px solid var(--footer-border);
}

.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 24px; }
.footer-logo svg { width: 36px; }
.footer-logo-text { font-family: 'montserrat', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--white); letter-spacing: -0.5px; }
.footer-about-title { font-family: 'montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 16px; }
.footer-desc { font-size: 0.95rem; color: var(--footer-text); line-height: 1.8; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-link { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.07); border: 1px solid var(--footer-border); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease; }
.social-link:hover { background: var(--verde); border-color: var(--verde); transform: translateY(-3px) scale(1.1); }
.social-link svg { width: 18px; height: 18px; fill: var(--footer-text); transition: fill 0.2s; }
.social-link:hover svg { fill: white; }
.footer-col-title { font-family: 'montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; position: relative; padding-bottom: 16px; }
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--verde); border-radius: 2px; }
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-nav li a { font-size: 0.95rem; color: var(--footer-text); text-decoration: none; display: flex; align-items: center; gap: 10px; transition: all 0.2s ease; padding: 4px 0; }
.footer-nav li a::before { content: '›'; color: var(--verde); opacity: 0; font-size: 1.2rem; transition: opacity 0.2s; }
.footer-nav li a:hover { color: rgba(255,255,255,0.9); padding-left: 8px; }
.footer-nav li a:hover::before { opacity: 1; }
.footer-contact-title { font-family: 'montserrat', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; position: relative; padding-bottom: 16px; }
.footer-contact-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 3px; background: var(--verde); border-radius: 2px; }
.footer-contact-desc { font-size: 0.95rem; color: var(--footer-text); line-height: 1.7; margin-bottom: 24px; }
.footer-phone { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; text-decoration: none; padding: 12px; border-radius: 8px; transition: background 0.2s; }
.footer-phone:hover { background: rgba(255,255,255,0.05); }
.footer-phone-icon { width: 44px; height: 44px; background: var(--verde); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.3s; }
.footer-phone:hover .footer-phone-icon { transform: scale(1.1) rotate(10deg); }
.footer-phone-icon svg { width: 20px; height: 20px; fill: white; }
.footer-phone-num { font-family: 'montserrat', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--verde); letter-spacing: -0.5px; }
.footer-address { display: flex; align-items: flex-start; gap: 12px; font-size: 0.9rem; color: var(--footer-text); line-height: 1.7; padding: 12px; border-radius: 8px; transition: background 0.2s; }
.footer-address:hover { background: rgba(255,255,255,0.05); }
.footer-address svg { width: 20px; height: 20px; stroke: var(--footer-text); fill: none; stroke-width: 1.8; flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding: 24px 60px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-copy { font-size: 0.9rem; color: var(--footer-text); }
.footer-copy span { color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom-links a { font-size: 0.9rem; color: var(--footer-text); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }
.footer-bottom-links p { color: rgba(255,255,255,0.3);}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
  .footer-body {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-body {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

}

/* ══════════════════════════════════════════
   ADICIONAR ao index.css
   Secção de cards de serviços/produtos (estilo screenshot)
═══════════════════════════════════════════ */

/* ── BLOCK HEADERS ── */
.idx-cards-block {
  margin-bottom: 52px;
}

.idx-block-header {
  margin-bottom: 24px;
}

.idx-block-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 6px;
}

.idx-block-title {
  font-family: 'montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.3px;
  position: relative;
  padding-bottom: 14px;
}

.idx-block-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--verde);
  border-radius: 2px;
}

/* ── INDUSTRY CARDS GRID ── */
.idx-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.idx-industry-card {
  position: relative;
  height: 190px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
  border: 2px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.25s ease;
}

.idx-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.22);
  border-color: var(--verde);
}

.idx-industry-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(35%);
}

.idx-industry-card:hover .idx-industry-bg {
  transform: scale(1.07);
  filter: grayscale(0%);
}

.idx-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.88) 0%,
    rgba(10,10,10,0.65) 55%,
    rgba(10,10,10,0.40) 100%
  );
  transition: background 0.3s ease;
}

.idx-industry-card:hover .idx-industry-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.82) 0%,
    rgba(10,10,10,0.52) 60%,
    rgba(73,156,65,0.22) 100%
  );
}

.idx-industry-arrow {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}

.idx-industry-card:hover .idx-industry-arrow {
  background: var(--verde);
  border-color: var(--verde);
  transform: scale(1.1);
}

.idx-industry-arrow svg {
  width: 13px; height: 13px;
  stroke: white; fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}

.idx-industry-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 20px 22px;
}

.idx-industry-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 5px;
}

.idx-industry-title {
  font-family: 'montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.3px;
  text-transform: uppercase;
}

/* ── PRODUCT CARDS GRID ── */
.idx-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.idx-product-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.idx-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--verde);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.idx-product-card:hover {
  border-color: #c8c8c8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.idx-product-card:hover::before {
  transform: scaleY(1);
}

.idx-product-img {
  width: 68px; height: 68px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f4f4;
}

.idx-product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: grayscale(25%);
}

.idx-product-card:hover .idx-product-img img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.idx-product-body {
  flex: 1;
  min-width: 0;
}

.idx-product-title {
  display: block;
  font-family: 'montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: -0.1px;
  line-height: 1.2;
  margin-bottom: 3px;
}

.idx-product-brands {
  display: block;
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.idx-product-chevron {
  width: 28px; height: 28px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.idx-product-card:hover .idx-product-chevron {
  background: var(--verde);
}

.idx-product-chevron svg {
  width: 12px; height: 12px;
  stroke: #5a5a5a;
  fill: none;
  transition: stroke 0.25s ease;
}

.idx-product-card:hover .idx-product-chevron svg {
  stroke: white;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .idx-industry-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .idx-product-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 768px) {
  .idx-industry-grid { grid-template-columns: 1fr; gap: 12px; }
  .idx-industry-card { height: 155px; }
  .idx-product-grid  { grid-template-columns: 1fr; gap: 10px; }
}
/* ══════════════════════════════════════════
   RESPONSIVIDADE COMPLETA — index.css
   Breakpoints: 1200px | 1024px | 768px | 480px
══════════════════════════════════════════ */

/* ── Logo fix: remover negative margins no mobile ── */
.footer-logo img {
  margin-left: 0 !important;
  width: auto !important;
  max-width: 140px;
  height: 36px;
}

/* ── TABLET LARGO (≤ 1200px) ── */
@media (max-width: 1200px) {
  .hero { height: 520px; }
  .slide-content { padding: 0 52px; max-width: 600px; }
  .services-section { padding: 52px 36px; }
  .why-section { padding: 72px 36px 80px; }
  .faq-banner { padding: 60px 36px 52px; gap: 52px; }
  .faq-section { padding: 0 36px 64px; }
  .footer-body { gap: 40px; padding: 60px 40px 52px; }
}

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {
  /* Navbar */
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .btn-book { display: none; }

  /* Hero */
  .hero { height: 460px; margin: 8px; width: calc(100% - 16px); }
  .slide-content { padding: 0 40px; max-width: 540px; }

  /* Sections */
  .services-section { padding: 44px 24px; margin: 8px; width: calc(100% - 16px); }
  .why-section { padding: 64px 28px 72px; margin: 0 8px 8px; width: calc(100% - 16px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; column-gap: 32px; }

  /* FAQ */
  .faq-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 56px 28px 48px;
    margin: 0 8px;
    width: calc(100% - 16px);
  }
  .faq-banner-right { grid-template-columns: repeat(2, 1fr); }
  .faq-section { padding: 0 28px 56px; margin: 0 8px 8px; width: calc(100% - 16px); }

  /* Industry + product grids */
  .idx-industry-grid { grid-template-columns: repeat(3, 1fr); }
  .idx-product-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-body { grid-template-columns: 1fr 1fr; gap: 36px; padding: 52px 28px; }
  .footer-bottom { padding: 20px 28px; }
}

/* ── TABLET PORTRAIT (≤ 768px) ── */
@media (max-width: 768px) {
  /* Navbar */
  nav { padding: 0 16px; height: 64px; }
 

  /* Hero */
  .hero { height: 380px; margin: 6px; width: calc(100% - 12px); border-radius: 6px; }
  .slide-content { padding: 0 24px; max-width: 100%; }
  .slide-title { font-size: 1.9rem; }
  .slide-desc { font-size: 0.85rem; margin-top: 12px; }
  .slide-cta { margin-top: 20px; }
  .arrow { display: none; }

  /* Sections */
  .services-section { padding: 36px 16px; margin: 6px; width: calc(100% - 12px); border-radius: 6px; }
  .section-header { margin-bottom: 32px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .section-title { font-size: 1.8rem; }

  /* Why section */
  .why-section { padding: 52px 16px 60px; margin: 0 6px 6px; width: calc(100% - 12px); border-radius: 6px; }
  .why-grid { grid-template-columns: 1fr; row-gap: 32px; }
  .section-head { margin-bottom: 48px; }

  /* Industry + product grids */
  .idx-industry-grid { grid-template-columns: 1fr; gap: 12px; }
  .idx-industry-card { height: 155px; }
  .idx-product-grid { grid-template-columns: 1fr; gap: 10px; }

  /* FAQ */
  .faq-banner {
    grid-template-columns: 1fr;
    padding: 44px 16px 40px;
    margin: 0 6px;
    width: calc(100% - 12px);
    border-radius: 6px 6px 0 0;
  }
  .faq-banner-right { grid-template-columns: 1fr; }
  .mini-stat.wide { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 8px; }
  .faq-section { padding: 0 16px 48px; margin: 0 6px 6px; width: calc(100% - 12px); border-radius: 0 0 6px 6px; }
  .faq-list { max-width: 100%; }
  .faq-question { padding: 18px 20px; }
  .faq-answer-inner { padding: 0 20px 20px; padding-top: 16px; }

  /* Footer */
  footer { margin: 0 6px 6px; width: calc(100% - 12px); border-radius: 6px; }
  .footer-body { grid-template-columns: 1fr; gap: 40px; padding: 44px 24px; text-align: center; }
  .footer-logo { justify-content: center; }
  .social-links { justify-content: center; }
  .footer-col-title::after,
  .footer-contact-title::after { left: 50%; transform: translateX(-50%); }
  .footer-nav li a { justify-content: center; }
  .footer-phone { justify-content: center; }
  .footer-address { justify-content: center; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 16px; gap: 12px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

/* ── MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  nav { padding: 0 14px; }

  .hero { height: 320px; margin: 4px; width: calc(100% - 8px); }
  .slide-title { font-size: 1.55rem; letter-spacing: -0.5px; }
  .slide-desc { display: none; }
  .btn-cta { padding: 11px 24px; font-size: 0.85rem; }

  .services-section { padding: 28px 12px; margin: 4px; width: calc(100% - 8px); }
  .why-section { padding: 40px 12px 48px; }
  .why-item { gap: 16px; }
  .why-icon { width: 52px; height: 52px; }

  .idx-industry-card { height: 135px; }
  .idx-product-card { padding: 12px 14px; gap: 12px; }
  .idx-product-img { width: 54px; height: 54px; }

  .faq-banner { padding: 36px 12px 32px; }
  .banner-title { font-size: 1.5rem; }
  .faq-section { padding: 0 12px 36px; }

  footer { margin: 0 4px 4px; }
  .footer-body { padding: 36px 16px; }
  .footer-bottom { padding: 16px 12px; }
  .footer-bottom-links { gap: 12px; }
  .footer-phone-num { font-size: 1.1rem; }
}

/* ══════════════════════════════════════════
   MOBILE NAV — substitui o drawer em mobile
   Activa-se em ≤ 1024px
══════════════════════════════════════════ */

/* Painel de navegação mobile */
.mobile-nav-panel {
  display: none;
  position: fixed;
  top: var(--nav-h, 80px);
  left: 0;
  right: 0;
  z-index: 990;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--verde, #499c41);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease;
  padding: 12px 0 20px;
}

.mobile-nav-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

/* Links dentro do painel */
.mobile-nav-panel ul {
  list-style: none;
  margin: 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-panel ul li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-family: 'montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-panel ul li a:hover,
.mobile-nav-panel ul li a.active {
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.mobile-nav-panel ul li a.active {
  color: var(--verde, #499c41);
}

/* Linha divisória e botão CTA no painel */
.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 12px 16px;
}

.mobile-nav-cta {
  margin: 8px 16px 0;
}

.mobile-nav-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  background: var(--verde, #499c41);
  color: #ffffff !important;
  font-family: 'montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.mobile-nav-cta a:hover { background: #3a8033 !important; }

/* Overlay escuro atrás do painel */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-h, 80px);
  background: rgba(0,0,0,0.4);
  z-index: 980;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* Só mostrar em mobile — ocultar em desktop */
@media (min-width: 1025px) {
  .mobile-nav-panel,
  .mobile-nav-overlay { display: none !important; }
}

@media (max-width: 1024px) {
  .mobile-nav-panel { display: block; }
  .mobile-nav-overlay { display: block; }
}

@media (max-width: 768px) {
  .mobile-nav-panel { top: 64px; }
  .mobile-nav-overlay { top: 64px; }
}

