*, *::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: 'Barlow', sans-serif;
    background: var(--white);
    color: var(--black);
  }

  #wrapper {
    background: var(--white);
    padding-top: 24px;
  }

  /* ══════════════════════════════
     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 { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .logo svg { width: 36px; }
  .logo-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--white); letter-spacing: -0.5px;
  }

/* Trocar a regra genérica "img" por esta: */
.navbar .logo img {
  width: auto;
  max-width: 180px;
  height: 34px;
  object-fit: contain;
}

/* Logo do drawer — sem interferência */
.drawer-logo img {
  width: auto;
  height: 30px;
  object-fit: contain;
  margin-left: 0;
}

  .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 .chevron { font-size: 0.6rem; opacity: 0.7; }
  .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; }

  /* ══════════════════════════════
     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: 'Barlow Condensed', 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; }

  /* 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: 'Barlow', 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); }


  /* ══════════════════════════════
     PAGE BANNER
  ══════════════════════════════ */
  .page-banner {
    position: relative;
    width: calc(100% - 24px);
    margin: 12px;
    height: 300px;
    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-1497366216548-37526070297c?w=1600&q=80');
    background-size: cover;
    background-position: center;
    filter: grayscale(40%);
    transform: scale(1.04);
  }

  .page-banner-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
      95deg,
      rgba(10,10,10,0.88) 0%,
      rgba(10,10,10,0.65) 40%,
      rgba(10,10,10,0.45) 70%,
      rgba(10,10,10,0.55) 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: 'Barlow', 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.85);
  }
  .breadcrumb a { color: rgba(255,255,255,0.85); 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: 72px 52px;
  }

  /* ══════════════════════════════
     INFO CARDS ROW
  ══════════════════════════════ */
  .info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 72px;
  }

  .info-card {
    border: 1.5px solid var(--light);
    border-radius: 10px;
    padding: 36px 32px;
    background: var(--bg);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    position: relative; overflow: hidden;
  }
  .info-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--black);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.35s ease;
  }
  .info-card:hover::after { transform: scaleX(1); }
  .info-card:hover {
    border-color: var(--black);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  }

  .info-card-icon {
    width: 52px; height: 52px; flex-shrink: 0;
    background: var(--black); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
  }
  .info-card:hover .info-card-icon { background: var(--dark); }
  .info-card-icon svg {
    width: 22px; height: 22px;
    stroke: white; fill: none; stroke-width: 1.8;
  }

  .info-card-body h4 {
    font-family: 'Syne', sans-serif;
    font-size: 1rem; font-weight: 700;
    color: var(--black); margin-bottom: 8px;
  }
  .info-card-body p, .info-card-body a {
    font-size: 0.9rem; color: var(--mid);
    line-height: 1.65; text-decoration: none;
    display: block;
    transition: color 0.2s;
  }
  .info-card-body a:hover { color: var(--black); }

  /* ══════════════════════════════
     MAIN GRID: FORM + MAP
  ══════════════════════════════ */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }

  /* ── FORM ── */
  .form-block {
    background: var(--bg);
    border: 1.5px solid var(--light);
    border-radius: 10px;
    padding: 48px 44px;
    font-family: var(--font-family);
  }

  .form-label-top {
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--mid); margin-bottom: 12px; display: block;
  }

  .form-title {
    font-family: var(--font-family);
    font-size: 2.9rem; font-weight: 800;
    color: var(--black); line-height: 1.2;
    margin-bottom: 32px;
  }
  .form-title em { font-style: normal; color: var(--mid); }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
  }
  .form-group.full { margin-bottom: 16px; }

  .form-group label {
    font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--dark);
    text-transform: uppercase;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem;
    color: var(--black);
    background: var(--white);
    border: 1.5px solid var(--light);
    border-radius: 6px;
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
  }
  .form-group input::placeholder,
  .form-group textarea::placeholder { color: #b0b0b0; }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(10,10,10,0.06);
  }

  .form-group textarea {
    resize: vertical; min-height: 130px;
  }

  .form-group select { cursor: pointer; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a5a5a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
  }

  .btn-submit {
    width: 100%;
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 15px 32px;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.92rem; font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    display: flex; align-items: center;
    justify-content: center; gap: 10px;
    margin-top: 8px;
    transition: background 0.2s, gap 0.2s;
  }
  .btn-submit:hover { background: var(--dark); gap: 14px; }
  .btn-submit svg { width: 16px; height: 16px; stroke: white; fill: none; stroke-width: 2; }

  /* ── ASIDE: MAP + HOURS ── */
  .aside-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .map-block {
    border-radius: 10px;
    overflow: hidden;
    border: 1.5px solid var(--light);
    height: 320px;
    background: var(--bg);
    position: relative;
  }

  .map-block iframe {
    width: 100%; height: 100%;
    border: none; filter: grayscale(100%) contrast(1.05);
    transition: filter 0.4s;
  }
  .map-block:hover iframe { filter: grayscale(20%); }

  .hours-block {
    background: var(--black);
    border-radius: 10px;
    padding: 32px 36px;
    position: relative; overflow: hidden;
  }
  .hours-block::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--orange);
  }

  .hours-block h4 {
    font-family: var(--font-family);
    font-size: 1rem; font-weight: 700;
    color: var(--white); margin-bottom: 20px;
    display: flex; align-items: center; gap: 10px;
  }
  .hours-block h4 svg {
    width: 18px; height: 18px;
    stroke: var(--orange); fill: none; stroke-width: 1.8;
  }

  .hours-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 10px;
  }
  .hours-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .hours-list li:last-child { border-bottom: none; padding-bottom: 0; }
  .hours-list .day { color: rgba(255,255,255,0.6); }
  .hours-list .time { color: white; font-weight: 500; }
  .hours-list .closed { color: rgba(255,255,255,0.3); }

  /* ══════════════════════════════
     SUCCESS STATE (hidden by default)
  ══════════════════════════════ */
  .form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .form-success .check-circle {
    width: 64px; height: 64px;
    background: var(--black);
    border-radius: 50%;
    display: flex; align-items: center;
    justify-content: center; margin: 0 auto 20px;
  }
  .form-success .check-circle svg {
    width: 28px; height: 28px;
    stroke: white; fill: none; stroke-width: 2.5;
  }
  .form-success h3 {
    font-family: 'Syne', sans-serif;
    font-size: 1.4rem; font-weight: 800;
    color: var(--black); margin-bottom: 10px;
  }
  .form-success p { font-size: 0.92rem; color: var(--mid); }

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

/* ── Logo fix ── */
.navbar .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: 60px 36px; }
  .form-block { padding: 44px 36px; }
  .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; }
  .navbar .logo img { max-width: 150px; }

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

  .info-cards   { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-block   { padding: 40px 32px; }
  .map-block    { height: 280px; }

  .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; }
  .navbar .logo img { max-width: 130px; height: 28px; }

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

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

  .info-cards { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .info-card  { padding: 22px 18px; }

  .form-block  { padding: 28px 18px; }
  .form-title  { font-size: 1.5rem; margin-bottom: 24px; }
  .form-row    { grid-template-columns: 1fr; gap: 0; }
  .map-block   { height: 240px; }
  .hours-block { padding: 24px 22px; }

  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; }
  .navbar .logo img { max-width: 110px; height: 26px; }

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

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

  .info-card { padding: 18px 14px; gap: 12px; }
  .info-card-icon { width: 42px; height: 42px; }
  .info-card-body h4 { font-size: 0.9rem; }

  .form-block  { padding: 20px 14px; }
  .form-title  { font-size: 1.3rem; margin-bottom: 18px; }
  .form-group label { font-size: 0.75rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.88rem; padding: 10px 12px; }
  .btn-submit { padding: 13px 20px; font-size: 0.88rem; }

  .map-block   { height: 200px; }
  .hours-block { padding: 18px 16px; }
  .hours-list li { font-size: 0.82rem; }

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

/* ── 320px ── */
@media (max-width: 320px) {
  .navbar { padding: 0 10px; height: 56px; }
  .navbar .logo img { max-width: 90px; height: 22px; }
  .page-banner { height: 140px; }
  .page-banner-content h1 { font-size: 1.2rem; }
  .form-title { font-size: 1.1rem; }
  .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; }