﻿/* ========================================
       GLOBAL RESET & BASE
    ======================================== */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #17251F;
      background-color: #FFFFFF;
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }

    ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* ========================================
       UTILITY CLASSES
    ======================================== */
    .container-shepody {
      max-width: 1200px;
      margin: 0 auto;
      padding-left: 15px;
      padding-right: 15px;
    }

    .section-padding {
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 12px;
      text-align: center;
    }

    .section-subtitle {
      font-size: 1rem;
      color: #5B6A63;
      text-align: center;
      max-width: 700px;
      margin: 0 auto 50px;
      line-height: 1.7;
    }

    /* Brand green underline decoration */
    .title-underline {
      display: block;
      width: 60px;
      height: 4px;
      background-color: #27B97A;
      margin: 16px auto 0;
      border-radius: 2px;
    }

    /* ========================================
       1. TOP BAR
    ======================================== */
    .top-bar {
      height: 40px;
      background-color: #1A7A52;
      color: #FFFFFF;
      font-size: 0.85rem;
    }

    .top-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .top-bar-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .top-bar-left a {
      color: #FFFFFF;
      opacity: 0.9;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
    }

    .top-bar-left a:hover {
      opacity: 1;
      color: #27B97A;
    }

    .top-bar-left i {
      font-size: 0.9rem;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .top-bar-right a {
      color: #FFFFFF;
      opacity: 0.85;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .top-bar-right a:hover {
      opacity: 1;
      color: #27B97A;
    }

    /* Mobile top bar */
    .top-bar-mobile {
      display: none;
    }

    @media (max-width: 767.98px) {
      .top-bar-desktop {
        display: none;
      }
      .top-bar-mobile {
        display: flex;
        height: 36px;
        background-color: #1A7A52;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-size: 0.8rem;
      }
      .top-bar-mobile a {
        color: #FFFFFF;
        opacity: 0.9;
        display: flex;
        align-items: center;
        gap: 5px;
      }
      .top-bar {
        display: none;
      }
    }

    /* ========================================
       2. HEADER / NAVIGATION
    ======================================== */
    .main-header {
      height: 85px;
      background-color: #FFFFFF;
      position: relative;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .main-header.sticky {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 70px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
      from { transform: translateY(-100%); }
      to { transform: translateY(0); }
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .header-logo {
      height: 60px;
      display: flex;
      align-items: center;
    }

    .header-logo img {
      height: 60px;
      width: auto;
    }

    .main-header.sticky .header-logo img {
      height: 50px;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .main-nav > li > a {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 10px 14px;
      font-size: 0.95rem;
      font-weight: 500;
      color: #17251F;
      border-radius: 6px;
      transition: all 0.3s ease;
    }

    .main-nav > li > a:hover,
    .main-nav > li > a.active {
      color: #27B97A;
      background-color: rgba(73, 179, 47, 0.06);
    }

    .main-nav > li > a i {
      font-size: 0.7rem;
      margin-top: 2px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .lang-switch {
      font-size: 0.9rem;
      font-weight: 500;
      color: #5B6A63;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .lang-switch span {
      color: #27B97A;
      font-weight: 600;
    }

    .lang-switch:hover {
      color: #17251F;
    }

    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      background-color: #27B97A;
      color: #FFFFFF;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid #27B97A;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta:hover {
      background-color: #3da128;
      border-color: #3da128;
      color: #FFFFFF;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(73, 179, 47, 0.3);
    }

    .btn-cta-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      background-color: transparent;
      color: #27B97A;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid #27B97A;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta-outline:hover {
      background-color: #27B97A;
      color: #FFFFFF;
      transform: translateY(-1px);
    }

    /* Hamburger menu */
    .hamburger-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #17251F;
      cursor: pointer;
      padding: 8px;
    }

    /* Mobile Navigation */
    .mobile-nav-overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0,0,0,0.5);
      z-index: 1999;
    }

    .mobile-nav-overlay.active {
      display: block;
    }

    .mobile-nav {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100vh;
      background-color: #FFFFFF;
      z-index: 2000;
      transition: left 0.3s ease;
      overflow-y: auto;
      padding: 30px 20px;
    }

    .mobile-nav.active {
      left: 0;
    }

    .mobile-nav-close {
      position: absolute;
      top: 15px;
      right: 15px;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #17251F;
      cursor: pointer;
    }

    .mobile-nav-logo {
      height: 50px;
      margin-bottom: 30px;
    }

    .mobile-nav-logo img {
      height: 50px;
    }

    .mobile-nav-menu {
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    .mobile-nav-menu a {
      padding: 12px 0;
      font-size: 1rem;
      font-weight: 500;
      color: #17251F;
      border-bottom: 1px solid #DDEEE6;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .mobile-nav-menu a:hover {
      color: #27B97A;
    }

    .mobile-nav-cta {
      margin-top: 25px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .mobile-nav-cta .btn-cta,
    .mobile-nav-cta .btn-cta-outline {
      justify-content: center;
    }

    @media (max-width: 991.98px) {
      .main-nav {
        display: none;
      }
      .hamburger-btn {
        display: block;
      }
      .header-actions .lang-switch {
        display: none;
      }
      .header-actions .btn-cta {
        display: none;
      }
    }

    @media (max-width: 767.98px) {
      .main-header {
        height: 70px;
      }
      .header-logo img {
        height: 45px;
      }
    }

    /* ========================================
       3. HERO SECTION
    ======================================== */
    .hero-section {
      position: relative;
      height: 550px;
      background: url('../img/hero-production-line.webp') center center / cover no-repeat;
      display: flex;
      align-items: center;
    }

    .hero-carousel {
      overflow: hidden;
      background: #17251F;
    }

    .hero-carousel .carousel-slide {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      background-position: center center;
      background-size: cover;
      background-repeat: no-repeat;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.75s ease;
    }

    .hero-carousel .carousel-slide.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 1;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      margin-bottom: 14px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(39, 185, 122, 0.18);
      color: #A7F3D0;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .hero-banner-stats {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-stat {
      min-width: 112px;
      padding: 12px 14px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 8px;
      background: rgba(0,0,0,0.2);
      backdrop-filter: blur(4px);
    }

    .hero-stat h4 {
      margin: 0 0 3px;
      color: #FFFFFF;
      font-size: 1.25rem;
      font-weight: 800;
    }

    .hero-stat p {
      margin: 0;
      color: rgba(255,255,255,0.78);
      font-size: 0.78rem;
      line-height: 1.35;
    }

    .carousel-controls {
      position: absolute;
      left: 50%;
      bottom: 84px;
      z-index: 5;
      display: inline-flex;
      align-items: center;
      gap: 12px;
      transform: translateX(-50%);
    }

    .carousel-arrow,
    .carousel-dot {
      border: 0;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .carousel-arrow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.14);
      color: #FFFFFF;
      backdrop-filter: blur(6px);
    }

    .carousel-arrow:hover {
      background: #27B97A;
      color: #FFFFFF;
    }

    .carousel-dots {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 0 2px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(255,255,255,0.45);
      padding: 0;
    }

    .carousel-dot.active {
      width: 28px;
      background: #27B97A;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
      width: 100%;
    }

    .hero-text-area {
      max-width: 60%;
    }

    .hero-title {
      font-size: 2.75rem;
      font-weight: 800;
      color: #FFFFFF;
      line-height: 1.2;
      margin-bottom: 18px;
      text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .hero-subtitle {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.9);
      line-height: 1.7;
      margin-bottom: 30px;
      max-width: 540px;
    }

    .hero-buttons {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background-color: #27B97A;
      color: #FFFFFF;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid #27B97A;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-hero-primary:hover {
      background-color: #3da128;
      border-color: #3da128;
      color: #FFFFFF;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(73, 179, 47, 0.35);
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background-color: transparent;
      color: #FFFFFF;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-hero-secondary:hover {
      background-color: rgba(255,255,255,0.1);
      border-color: #FFFFFF;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    /* Hero trust badges */
    .hero-trust-bar {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      z-index: 2;
    }

    .hero-trust-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 18px 15px;
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #FFFFFF;
      font-size: 0.9rem;
      font-weight: 500;
    }

    .trust-item i {
      font-size: 1.1rem;
      color: #27B97A;
    }

    @media (max-width: 991.98px) {
      .hero-text-area {
        max-width: 80%;
      }
      .hero-title {
        font-size: 2.2rem;
      }
    }

    @media (max-width: 767.98px) {
      .hero-section {
        height: 500px;
      }
      .hero-eyebrow {
        font-size: 0.7rem;
      }
      .hero-text-area {
        max-width: 100%;
      }
      .hero-title {
        font-size: 1.8rem;
      }
      .hero-subtitle {
        font-size: 0.95rem;
      }
      .hero-buttons {
        flex-direction: column;
      }
      .hero-banner-stats {
        gap: 8px;
        margin-top: 20px;
      }
      .hero-stat {
        min-width: 92px;
        padding: 9px 10px;
      }
      .hero-stat h4 {
        font-size: 1rem;
      }
      .hero-stat p {
        font-size: 0.7rem;
      }
      .carousel-controls {
        bottom: 104px;
      }
      .carousel-arrow {
        width: 34px;
        height: 34px;
      }
      .btn-hero-primary,
      .btn-hero-secondary {
        width: 100%;
        justify-content: center;
      }
      .hero-trust-inner {
        justify-content: center;
        gap: 12px 25px;
      }
      .trust-item {
        font-size: 0.8rem;
      }
    }

    /* ========================================
       4. PRODUCTOS SECTION
    ======================================== */
    .productos-section {
      background-color: #F5FAF7;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .producto-card {
      background-color: #FFFFFF;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #DDEEE6;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .producto-card:hover {
      border-color: #27B97A;
      box-shadow: 0 8px 30px rgba(73, 179, 47, 0.12);
      transform: translateY(-4px);
    }

    .producto-card-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
    }

    .producto-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .producto-card:hover .producto-card-img img {
      transform: scale(1.05);
    }

    .producto-card-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .producto-card-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #27B97A;
      margin-bottom: 8px;
    }

    .producto-card-desc {
      font-size: 0.9rem;
      color: #5B6A63;
      line-height: 1.6;
      margin-bottom: 14px;
      flex: 1;
    }

    .producto-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #27B97A;
      transition: all 0.3s ease;
    }

    .producto-card-link i {
      font-size: 0.75rem;
      transition: transform 0.3s ease;
    }

    .producto-card-link:hover {
      gap: 10px;
    }

    .producto-card-link:hover i {
      transform: translateX(3px);
    }

    /* ========================================
       5. WHY CHOOSE SECTION
    ======================================== */
    .why-section {
      background-color: #FFFFFF;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .why-item {
      text-align: center;
      padding: 20px 10px;
    }

    .why-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background-color: #27B97A;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .why-icon-wrap i {
      font-size: 1.8rem;
      color: #FFFFFF;
    }

    .why-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 10px;
    }

    .why-desc {
      font-size: 0.9rem;
      color: #5B6A63;
      line-height: 1.6;
    }

    @media (max-width: 991.98px) {
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .why-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========================================
       6. CASOS SECTION
    ======================================== */
    .casos-section {
      background-color: #F5FAF7;
      padding-top: 80px;
      padding-bottom: 80px;
    }

    .caso-card {
      background-color: #FFFFFF;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #DDEEE6;
      box-shadow: 0 2px 8px rgba(0,0,0,0.04);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .caso-card:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      transform: translateY(-4px);
    }

    .caso-card-img {
      position: relative;
      overflow: hidden;
      aspect-ratio: 16 / 10;
    }

    .caso-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .caso-card:hover .caso-card-img img {
      transform: scale(1.05);
    }

    .caso-badge {
      position: absolute;
      top: 14px;
      left: 14px;
      padding: 5px 12px;
      background-color: #1F5FBF;
      color: #FFFFFF;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 20px;
    }

    .caso-card-body {
      padding: 22px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .caso-card-title {
      font-size: 1.15rem;
      font-weight: 700;
      color: #17251F;
      margin-bottom: 6px;
    }

    .caso-card-desc {
      font-size: 0.9rem;
      color: #5B6A63;
      margin-bottom: 16px;
    }

    .btn-caso {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 20px;
      background-color: transparent;
      color: #27B97A;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 6px;
      border: 2px solid #27B97A;
      transition: all 0.3s ease;
      cursor: pointer;
      align-self: flex-start;
    }

    .btn-caso:hover {
      background-color: #27B97A;
      color: #FFFFFF;
    }

    @media (max-width: 767.98px) {
      .caso-card {
        margin-bottom: 20px;
      }
    }

    /* ========================================
       7. CTA SECTION
    ======================================== */
    .cta-section {
      background-color: #27B97A;
      padding-top: 80px;
      padding-bottom: 80px;
      text-align: center;
    }

    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      color: #FFFFFF;
      margin-bottom: 16px;
    }

    .cta-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.9);
      max-width: 650px;
      margin: 0 auto 35px;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-cta-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background-color: #FFFFFF;
      color: #27B97A;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid #FFFFFF;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta-white:hover {
      background-color: transparent;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    .btn-cta-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      background-color: transparent;
      color: #FFFFFF;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid rgba(255,255,255,0.6);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-cta-outline-white:hover {
      background-color: rgba(255,255,255,0.1);
      border-color: #FFFFFF;
      color: #FFFFFF;
      transform: translateY(-2px);
    }

    @media (max-width: 767.98px) {
      .cta-title {
        font-size: 1.6rem;
      }
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      .btn-cta-white,
      .btn-cta-outline-white {
        width: 100%;
        max-width: 320px;
        justify-content: center;
      }
    }

    /* ========================================
       8. FOOTER
    ======================================== */
    .main-footer {
      background-color: #17251F;
      color: #FFFFFF;
      padding-top: 60px;
      padding-bottom: 30px;
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-col p {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      line-height: 1.7;
    }

    .footer-logo {
      height: 50px;
      margin-bottom: 18px;
    }

    .footer-logo img {
      height: 50px;
      width: auto;
    }

    .footer-title {
      font-size: 1.05rem;
      font-weight: 600;
      color: #FFFFFF;
      margin-bottom: 18px;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: #27B97A;
      padding-left: 4px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      color: rgba(255,255,255,0.7);
      font-size: 0.9rem;
    }

    .footer-contact-item i {
      color: #27B97A;
      margin-top: 3px;
      font-size: 0.9rem;
    }

    .footer-social {
      display: flex;
      gap: 14px;
      margin-top: 16px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background-color: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFFFFF;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .footer-social a:hover {
      background-color: #27B97A;
      transform: translateY(-2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
    }

    .footer-bottom p {
      color: rgba(255,255,255,0.5);
      font-size: 0.85rem;
      margin: 0;
    }

    @media (max-width: 991.98px) {
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 575.98px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }

    /* ========================================
       9. MOBILE FIXED BOTTOM BAR
    ======================================== */
    .mobile-bottom-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 1500;
      background-color: #FFFFFF;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }

    .mobile-bottom-bar-inner {
      display: flex;
      height: 56px;
    }

    .mobile-bottom-btn {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      color: #FFFFFF;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .mobile-bottom-btn.whatsapp {
      background-color: #25D366;
    }

    .mobile-bottom-btn.whatsapp:hover {
      background-color: #1ebe52;
    }

    .mobile-bottom-btn.cotizacion {
      background-color: #27B97A;
    }

    .mobile-bottom-btn.cotizacion:hover {
      background-color: #3da128;
    }

    @media (max-width: 767.98px) {
      .mobile-bottom-bar {
        display: block;
      }
      body {
        padding-bottom: 56px;
      }
    }

    /* ========================================
       SCROLL ANIMATIONS
    ======================================== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.7s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       MEGA MENU
    ======================================== */

    /* Container 鈥?overlaps header by 10px to eliminate gap */
    .megamenu {
      position: absolute;
      top: calc(100% - 10px);
      left: 0;
      right: 0;
      padding-top: 10px;
      background: transparent;
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 12px 40px rgba(23, 37, 31, 0.12);
      border-top: 1px solid #DDEEE6;
    }

    .megamenu.open {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    /* Backdrop overlay */
    .megamenu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(23, 37, 31, 0.25);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.35s ease;
    }

    .megamenu-overlay.open {
      opacity: 1;
      visibility: visible;
    }

    /* Inner wrapper */
    .megamenu-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 36px 24px 40px;
      display: flex;
      background: #FFFFFF;
      box-shadow: 0 12px 40px rgba(23, 37, 31, 0.12);
      border-top: 1px solid #DDEEE6;
    }

    /* Column - 2 column layout */
    .megamenu-inner-2col .megamenu-col {
      flex: 1;
      padding: 0 32px;
      border-right: 1px solid #E8F0EC;
    }

    .megamenu-inner-2col .megamenu-col:first-child {
      padding-left: 8px;
    }

    .megamenu-inner-2col .megamenu-col-last {
      border-right: none;
      padding-right: 8px;
    }

    /* Flat link list (no sub-groups) */
    .megamenu-list {
      list-style: none;
      padding: 0;
    }

    .megamenu-list li {
      margin-bottom: 3px;
    }

    .megamenu-list li a {
      display: block;
      padding: 7px 10px;
      font-size: 0.88rem;
      color: #5B6A63;
      border-radius: 6px;
      transition: all 0.2s ease;
    }

    .megamenu-list li a:hover {
      color: #27B97A;
      background: #E9F8F1;
      padding-left: 14px;
    }

    .megamenu-list li a[href="#"] {
      color: #999;
    }

    /* Column header: icon + title */
    .megamenu-col-header {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 2px solid #E9F8F1;
    }

    .megamenu-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: #27B97A;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      flex-shrink: 0;
    }

    .megamenu-col-header h4 {
      font-size: 0.88rem;
      font-weight: 700;
      color: #17251F;
      margin: 0;
    }

    /* Group (sub-category) */
    .megamenu-group {
      margin-bottom: 16px;
    }

    .megamenu-group-title {
      display: block;
      font-size: 0.72rem;
      font-weight: 600;
      color: #27B97A;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      margin-bottom: 8px;
    }

    /* Links */
    .megamenu-group ul li {
      margin-bottom: 2px;
    }

    .megamenu-group ul li a {
      display: block;
      padding: 5px 0;
      font-size: 0.82rem;
      color: #5B6A63;
      transition: all 0.25s ease;
      border-radius: 4px;
    }

    .megamenu-group ul li a:hover {
      color: #27B97A;
      padding-left: 8px;
    }

    /* CTA in last column */
    .megamenu-cta {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid #E9F8F1;
    }

    .megamenu-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: #27B97A;
      color: #fff;
      font-size: 0.82rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
    }

    .megamenu-cta-btn:hover {
      background: #1F9A65;
      color: #fff;
    }

    /* Mega menu trigger: hover to open */
    .has-megamenu {
      position: relative;
    }

    /* Hover bridge: invisible area connecting <li> to mega menu */
    .has-megamenu::after {
      content: '';
      position: absolute;
      left: -10px;
      right: -10px;
      bottom: -50px;
      height: 50px;
      background: transparent;
      z-index: 2002;
      pointer-events: auto;
    }

    .has-megamenu > a .fa-chevron-down {
      font-size: 0.65rem;
      margin-left: 4px;
      transition: transform 0.3s ease;
    }

    .has-megamenu.active > a .fa-chevron-down {
      transform: rotate(180deg);
    }

    /* Header z-index: above page content, below open megamenu */
    .main-header {
      position: relative;
      z-index: 2001;
    }

    /* Responsive: hide megamenu on tablet/mobile */
    @media (max-width: 991px) {
      .megamenu,
      .megamenu-overlay {
        display: none !important;
      }
    }
