*, *::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 { scroll-behavior: smooth; }

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--black);
}

/* ══════════════════════════════
   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: auto;
    max-width: 180px;
    height: 34px;
    object-fit: contain;
  }

.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 6px; 
  list-style: none; 
}
.nav-links a {
  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 a.active { background: rgba(255,255,255,0.15); }

.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: 500; 
  cursor: pointer;
  transition: all 0.2s; 
  white-space: nowrap; 
  font-family: 'Barlow', 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; 
}
.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); }

/* ══════════════════════════════
   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); }

.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: 30px;
    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; }
.drawer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 32px;
  flex-shrink: 0;
}
.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;
}
.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; }
.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; }
.drawer-about {
  font-size: 0.88rem; line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 22px;
}
.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; }

/* ══════════════════════════════
   PAGE BANNER
══════════════════════════════ */
.page-banner {
  position: relative;
  width: calc(100% - 24px); 
  margin: 12px;
  margin-top: 0;
  height: 380px; 
  border-radius: 8px;
  overflow: hidden; 
  border-top: 3px solid var(--orange);
}
.page-banner-bg {
  position: absolute; 
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1553413077-190dd305871c?w=1600&q=80');
  background-size: cover; 
  background-position: center;
  filter: grayscale(50%); 
  transform: scale(1.04);
}
.page-banner-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(95deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.70) 45%, rgba(10,10,10,0.50) 100%);
}
.page-banner-content {
  position: absolute; 
  inset: 0; 
  z-index: 10;
  display: flex; 
  flex-direction: column;
  align-items: center; 
  justify-content: center;
  text-align: center; 
  padding-top: var(--nav-h);
}
.page-banner-content h1 {
  font-family: 'montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 400; 
  color: var(--white);
  letter-spacing: -0.5px; 
  margin-bottom: 14px;
}
.breadcrumb {
  display: flex; 
  align-items: center; 
  gap: 8px;
  font-size: 0.88rem; 
  color: rgba(255,255,255,0.8);
}
.breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.breadcrumb a:hover { color: white; }
.breadcrumb .sep { color: var(--orange); }
.breadcrumb .current { color: white; font-weight: 600; }

/* ══════════════════════════════
   CONTENT WRAP
══════════════════════════════ */
.content-wrap {
  width: calc(100% - 24px);
  margin: 0 12px; 
  padding: 64px 52px 80px;
}

/* ══════════════════════════════
   CARDS SECTION HEADER
══════════════════════════════ */
.cards-section {
  margin-bottom: 56px;
}

.cards-section-header {
  margin-bottom: 28px;
}

.cards-section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 8px;
}

.cards-section-title {
  font-family: 'montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
  position: relative;
  padding-bottom: 16px;
}

.cards-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 3px;
  background: var(--verde);
  border-radius: 2px;
}

/* ══════════════════════════════
   INDUSTRY CARDS GRID
══════════════════════════════ */
.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.25s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.industry-card.active {
  border-color: var(--verde);
  box-shadow: 0 0 0 4px rgba(73, 156, 65, 0.15), 0 16px 40px rgba(0,0,0,0.2);
}

.industry-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: grayscale(40%);
}

.industry-card:hover .industry-card-bg,
.industry-card.active .industry-card-bg {
  transform: scale(1.06);
  filter: grayscale(0%);
}

.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.85) 0%,
    rgba(10,10,10,0.65) 50%,
    rgba(10,10,10,0.45) 100%
  );
  transition: background 0.3s ease;
}

.industry-card.active .industry-card-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,10,10,0.80) 0%,
    rgba(10,10,10,0.55) 60%,
    rgba(73,156,65,0.25) 100%
  );
}

.industry-card-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 22px;
}

.industry-card-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 6px;
  display: block;
}

.industry-card-title {
  font-family: 'montserrat', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.industry-card-arrow {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  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;
}

.industry-card:hover .industry-card-arrow,
.industry-card.active .industry-card-arrow {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.1);
}

.industry-card-arrow svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
}

/* ══════════════════════════════
   PRODUCT CARDS GRID
══════════════════════════════ */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
  border-radius: 0 2px 2px 0;
}

.product-card:hover {
  border-color: #c8c8c8;
  box-shadow: 0 8px 24px rgba(0,0,0,0.09);
  transform: translateY(-3px);
}

.product-card:hover::before {
  transform: scaleY(1);
}

.product-card.active {
  border-color: var(--orange);
  background: #fafff9;
  box-shadow: 0 0 0 3px rgba(73,156,65,0.12), 0 8px 24px rgba(0,0,0,0.08);
}

.product-card.active::before {
  transform: scaleY(1);
}

.product-card-img-wrap {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  filter: grayscale(30%);
}

.product-card:hover .product-card-img-wrap img,
.product-card.active .product-card-img-wrap img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.product-card-body {
  flex: 1;
  min-width: 0;
}

.product-card-title {
  font-family: 'montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-card-brands {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.product-card-chevron {
  width: 28px;
  height: 28px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.product-card:hover .product-card-chevron,
.product-card.active .product-card-chevron {
  background: var(--orange);
}

.product-card-chevron svg {
  width: 12px;
  height: 12px;
  stroke: var(--mid);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  transition: stroke 0.25s ease;
}

.product-card:hover .product-card-chevron svg,
.product-card.active .product-card-chevron svg {
  stroke: white;
}

/* ══════════════════════════════
   SERVICE DETAIL SECTION
══════════════════════════════ */
.service-detail-section {
  display: none;
  border-top: 2px solid var(--light);
  padding-top: 52px;
  margin-top: 20px;
  animation: fadeSlideIn 0.4s ease;
}

.service-detail-section.visible {
  display: block;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.detail-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1.5px solid var(--light);
  color: var(--mid);
  font-family: 'montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.detail-back-btn:hover {
  background: var(--white);
  border-color: var(--black);
  color: var(--black);
}

.detail-back-btn svg {
  width: 16px;
  height: 16px;
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--mid);
}

.detail-sep {
  color: var(--orange);
  font-size: 1rem;
}

.detail-current {
  color: var(--black);
  font-weight: 600;
}

/* ══════════════════════════════
   SERVICE CONTENT
══════════════════════════════ */
.service-content {
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
  margin-bottom: 64px;
}

.service-label {
  font-size: 0.75rem; 
  font-weight: 700;
  letter-spacing: 3px; 
  text-transform: uppercase;
  color: var(--orange); 
  display: block; 
  margin-bottom: 16px;
}

.service-title {
  font-family: 'montserrat', sans-serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 800; 
  color: var(--verde);
  line-height: 1.2; 
  margin-bottom: 24px;
}

.service-desc {
  font-size: 1rem; 
  color: var(--mid); 
  line-height: 1.8; 
  margin-bottom: 16px;
}

.service-image-block {
  position: relative;
  border-radius: 12px; 
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image-block img {
  width: 100%; 
  height: 300px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s, transform 0.5s;
  border-radius: 12px;
}

.service-image-block:hover img { 
  filter: grayscale(20%); 
  transform: scale(1.02);
}

.image-caption {
  position: absolute;
  bottom: 0; 
  left: 0; 
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem; 
  line-height: 1.7;
  padding: 30px 24px 24px;
  border-top: 3px solid var(--orange);
}

.features-title {
  font-family: 'montserrat', sans-serif;
  font-size: 1.6rem; 
  font-weight: 800;
  color: var(--black); 
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light);
  display: flex; 
  align-items: center; 
  gap: 16px;
}

.features-title::before {
  content: '';
  width: 40px; 
  height: 4px;
  background: var(--orange);
  border-radius: 2px; 
  flex-shrink: 0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  border-radius: 12px;
  background: var(--bg);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  background: var(--white);
  border-color: var(--light);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 56px; 
  height: 56px; 
  flex-shrink: 0;
  background: var(--black);
  border-radius: 12px;
  display: flex; 
  align-items: center; 
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background: var(--orange);
  transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
  width: 24px; 
  height: 24px;
  stroke: white; 
  fill: none; 
  stroke-width: 2;
  stroke-linecap: round; 
  stroke-linejoin: round;
}

.feature-body h4 {
  font-family: 'montserrat', sans-serif;
  font-size: 1.1rem; 
  font-weight: 700;
  color: var(--black); 
  margin-bottom: 10px;
}

.feature-body p {
  font-size: 0.95rem; 
  color: var(--mid); 
  line-height: 1.7;
}

/* ══════════════════════════════
   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 — servicos.css
   320 | 480 | 768 | 1024 | 1200
══════════════════════════════════════════ */

/* ── Logo fix ── */
.logo img        { width: auto; max-width: 180px; height: 34px; object-fit: contain; margin-left: 0; }
.footer-logo img { width: auto; max-width: 160px; height: 34px; object-fit: contain; margin-left: 0; }

/* ── 1200px ── */
@media (max-width: 1200px) {
  .navbar       { padding: 0 32px; }
  .content-wrap { padding: 52px 32px 64px; }
  .footer-body   { gap: 40px; padding: 60px 40px 52px; }
  .footer-bottom { padding: 24px 40px; }
}

/* ── 1024px ── */
@media (max-width: 1024px) {
  .navbar    { padding: 0 20px; }
  .nav-links { display: none; }
  .btn-book  { display: none; }
  .logo img  { max-width: 150px; }

  .page-banner  { height: 280px; margin: 8px; width: calc(100% - 16px); }
  .content-wrap { padding: 48px 24px 60px; margin: 0 8px; width: calc(100% - 16px); }

  .industry-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-cards-grid  { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .service-intro  { grid-template-columns: 1fr; gap: 32px; }
  .features-grid  { grid-template-columns: 1fr 1fr; gap: 20px; }

  .footer-body   { grid-template-columns: 1fr 1fr; gap: 36px; padding: 48px 24px; }
  .footer-bottom { padding: 20px 24px; }
}

/* ── 768px ── */
@media (max-width: 768px) {
  .navbar { padding: 0 16px; height: 64px; }
  .logo img { max-width: 130px; height: 28px; }

  .page-banner { height: 220px; margin: 6px; width: calc(100% - 12px); border-radius: 6px; }
  .page-banner-content h1 { font-size: 1.85rem; }

  .content-wrap { padding: 36px 14px 48px; margin: 0 6px; width: calc(100% - 12px); }

  .cards-section-title    { font-size: 1.3rem; }
  .industry-cards-grid    { grid-template-columns: 1fr; gap: 10px; }
  .industry-card          { height: 150px; }
  .industry-card-title    { font-size: 1.5rem; }
  .product-cards-grid     { grid-template-columns: 1fr; gap: 10px; }

  .service-title          { font-size: 1.6rem; }
  .service-desc           { font-size: 0.9rem; }
  .service-image-block img { height: 210px; }
  .features-grid          { grid-template-columns: 1fr; gap: 14px; }
  .feature-item           { padding: 18px 16px; gap: 14px; }
  .feature-icon           { width: 44px; height: 44px; border-radius: 10px; }
  .features-title         { font-size: 1.3rem; }
  .detail-section-header  { flex-direction: column; align-items: flex-start; gap: 10px; }

  footer { margin: 0 6px 6px; width: calc(100% - 12px); border-radius: 6px; }
  .footer-body { grid-template-columns: 1fr; gap: 32px; padding: 40px 20px; text-align: center; }
  .footer-logo { justify-content: center; }
  .footer-logo img { margin: 0 auto; }
  .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: 18px 14px; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }
}

/* ── 480px ── */
@media (max-width: 480px) {
  .navbar { padding: 0 12px; height: 60px; }
  .logo img { max-width: 110px; height: 26px; }

  .page-banner { height: 180px; margin: 4px; width: calc(100% - 8px); }
  .page-banner-content h1 { font-size: 1.45rem; }

  .content-wrap { padding: 28px 10px 40px; }

  .cards-section-title     { font-size: 1.15rem; }
  .industry-card           { height: 130px; }
  .industry-card-title     { font-size: 1.25rem; }
  .industry-card-subtitle  { font-size: 0.62rem; }
  .product-card            { padding: 12px; gap: 12px; }
  .product-card-img-wrap   { width: 56px; height: 56px; }
  .product-card-title      { font-size: 0.95rem; }

  .service-title           { font-size: 1.4rem; }
  .service-image-block img { height: 180px; }
  .feature-body h4         { font-size: 0.95rem; }
  .feature-body p          { font-size: 0.86rem; }

  footer { margin: 0 4px 4px; }
  .footer-body   { padding: 28px 12px; gap: 24px; }
  .footer-bottom { padding: 14px 10px; }
  .footer-phone-num { font-size: 1.1rem; }
}

/* ── 320px ── */
@media (max-width: 320px) {
  .navbar { padding: 0 10px; height: 56px; }
  .logo img { max-width: 90px; height: 22px; }
  .page-banner  { height: 145px; }
  .page-banner-content h1 { font-size: 1.2rem; }
  .content-wrap { padding: 20px 8px 32px; }
  .industry-card { height: 115px; }
  .footer-body   { padding: 20px 10px; }
}

/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
.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, #71ab44);
  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; }
.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: #fff; }
.mobile-nav-panel ul li a.active { color: var(--verde, #71ab44); }
.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, #71ab44); color: #fff !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: #5a9235 !important; }
.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; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
@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; } }
@media (max-width: 480px)  { .mobile-nav-panel { top: 60px; } .mobile-nav-overlay { top: 60px; } }
@media (max-width: 320px)  { .mobile-nav-panel { top: 56px; } .mobile-nav-overlay { top: 56px; } }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 46px; height: 46px; background: var(--verde);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 8px 24px rgba(113,171,68,0.4);
  transition: all 0.3s ease; z-index: 999; text-decoration: none;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-top:hover { transform: translateY(-4px) scale(1.1); background: #5a9235; }
.back-top svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2.5; stroke-linecap: round; }