@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Archivo Black", sans-serif;
  --nav-font: "Archivo Black", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #37423b;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #272213;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009036;
  --accent-color-2: #E30C1C;
  --accent-color-industrial: #41A62A;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #E5E5E5;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #37423b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #009036;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #37423b;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #009036;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7f5f2;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #2D2D2D;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #E5E5E5;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

p {
  text-align: justify;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  text-align: center;
}

h3 {
  color: var(--accent-color-industrial);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0.9);
  --default-color: #37423b;
  --heading-color: #272213;
  background: color-mix(in srgb, var(--background-color) 92%, transparent);
  padding: 16px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  transition: all 0.3s ease;
  z-index: 997;
}

.header .logo img {
  max-height: 50px;
  margin-right: 8px;
  margin-left: 5px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .header-actions {
  margin: 0 16px;
}

.header .header-actions .action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--default-color);
}

.header .header-actions .action-link i {
  font-size: 18px;
  color: var(--accent-color);
}

.header .btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: 24px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.header .btn-quote:hover {
  background: color-mix(in srgb, var(--accent-color) 90%, black);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
    margin-right: auto;
  }

  .header .btn-quote {
    order: 2;
    margin-right: 12px;
    padding: 10px 20px;
  }

  .header .header-actions {
    display: none !important;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (max-width: 576px) {
  .header .logo {
    gap: 8px;
  }

  .header .logo .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.scrolled .header {
  background: color-mix(in srgb, var(--background-color) 98%, transparent);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color) 12%, transparent);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.98);
  --default-color: #37423b;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1199px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 8px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 16px 5px;
    font-size: 13px;
    font-family: var(--nav-font);
    /* font-weight: 600; */
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a:after,
  .navmenu a:focus:after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 8px;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu li:hover>a:after,
  .navmenu .active:after,
  .navmenu .active:focus:after {
    transform: scaleX(1);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 12px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: 120%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    z-index: 99;
    box-shadow: 0 12px 30px color-mix(in srgb, var(--default-color) 12%, transparent);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a:after {
    display: none;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul a.active,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
}


@media (max-width: 1200px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 70px 20px 20px 20px;
    padding: 12px 0;
    margin: 0;
    border-radius: 12px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0 18px 40px color-mix(in srgb, var(--default-color) 12%, transparent);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color) 12%, transparent);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: color-mix(in srgb, var(--accent-color) 6%, transparent);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: var(--contrast-color);
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: color-mix(in srgb, var(--default-color) 75%, transparent);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    height: fit-content;
  }
}

@media (min-width: 1199px) and (max-width: 1346px) {

  .navmenu a,
  .navmenu a:focus {

    font-size: 11px;

  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer p.fas span {
  font-size: 1.2rem;
  color: var(--contrast-color);
  font-weight: 600;
  font-style: italic;
}

.footer a {
  color: var(--background-color);
  font-weight: 700;
  text-decoration: underline;
}

.footer .footer-top {
  padding-top: 50px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  margin-right: 6px;
  background-color: var(--contrast-color);
  border-radius: 10px;
}

.footer .footer-about .logo span {
  color: var(--heading-color);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

/* .footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
} */

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 40px 0;
  scroll-margin-top: 88px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

/* .section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
} */

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 66px 0 0;
  overflow: hidden;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 42, 68, 0.92) 0%, rgba(15, 42, 68, 0.75) 100%);
}

.hero .container {
  z-index: 2;
}

.hero .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero .badge-label i {
  font-size: 16px;
}

.hero h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--contrast-color);
  text-align: start;
}

.hero h2 .accent {
  color: var(--accent-color-industrial);
}

.hero .lead {
  font-size: 18px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  max-width: 580px;
  margin-bottom: 32px;
}

.hero .hero-actions {
  margin-bottom: 80px;
  /* display: flex;
  justify-content: center; */
}

.hero .hero-actions .btn-main,
.footer .btn-main,
.btn-main,
.explora-mas .btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer a.btn-main {
  text-decoration: none;
}

@media (max-width: 465px) {
  .footer a.btn-main {
 font-size: 13px;
}
}

.footer .btn-main {
  background-color: var(--heading-color);
}

.hero .hero-actions .btn-main:hover,
.footer .btn-main:hover,
.btn-main:hover,
.explora-mas .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-actions .btn-outline {
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero .hero-actions .btn-outline:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
}

/* .hero .hero-counters {
  background: var(--accent-color);
  border-radius: 8px 8px 0 0;
  padding: 32px;
}

.hero .hero-counters .counter-item {
  text-align: center;
}

.hero .hero-counters .counter-item h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.hero .hero-counters .counter-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin: 4px 0 0;
} */

@media (max-width: 991px) {
  .hero {
    padding: 80px 0 0;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero .hero-actions {
    margin-bottom: 48px;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 64px 0 0;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero .lead {
    font-size: 16px;
  }

  .hero .hero-actions {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero .hero-actions .btn-main,
  .hero .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }

  /* .hero .hero-counters {
    padding: 24px 16px;
  }

  .hero .hero-counters .counter-item h3 {
    font-size: 28px;
  } */
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content .subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.about .content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about .content p {
  /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
  margin-bottom: 2rem;
}

.about .content .features-list {
  list-style: none;
  padding: 0;
  /* margin-bottom: 2.5rem; */
}

.about .content .features-list li {
  display: flex;
  align-items: center;
  padding-bottom: 1rem;
  font-weight: 500;
}

.about .content .features-list li i {
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-right: 0.75rem;
}

.about .content .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about .content .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.about .image-composition {
  position: relative;
  /* padding: 2rem; */
}

@media (max-width: 768px) {
  .about .image-composition {
    padding: 1rem;
  }
}

.about .image-composition .image-main {
  position: relative;
  z-index: 2;
}

.about .image-composition .image-main img {
  border-radius: 3px;
  box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
  /* border: 5px solid color-mix(in srgb, var(--default-color), transparent 70%); */
}

.about .image-composition .image-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  z-index: 3;
}

.about .image-composition .image-secondary img {
  border-radius: 8px;
  border: 5px solid color-mix(in srgb, var(--default-color), transparent 70%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.about .image-composition .stats-card {
  position: absolute;
  bottom: -80px;
  right: 0;
  z-index: 4;
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  gap: 2rem;
}

@media (min-width:1400px) {
  .about .image-composition .stats-card {
  bottom: 10px;
}
}

@media (max-width: 991px) {
  .about .image-composition .stats-card {
    bottom: 0;

  }
}

@media (max-width: 576px) {
  .about .image-composition .stats-card {
    padding: 1rem;
    gap: 1rem;
    flex-direction: column;
  }
}

.about .image-composition .stats-card .stats-item {
  text-align: center;
}

.about .image-composition .stats-card .stats-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
  line-height: 1;
}

@media (max-width: 992px) {
  .about .image-composition .stats-card .stats-item h3 {
    font-size: 2rem;
  }
}

.about .image-composition .stats-card .stats-item p {
  margin: 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
  margin-top: 0.5rem;
}

/* .about .image-composition::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  z-index: 1;
} */

/* =========================================================
   CATÁLOGO ANDAMIOS
========================================================= */

.catalogo-andamios {
  background: var(--background-color);
}

/* Heading */

.catalogo-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-color-2);
}

.catalogo-title {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
}

.catalogo-description {
  margin: 0;
  color: #6b6b6b;
  font-size: 15px;
  line-height: 1.7;
}

/* Card */

.andamio-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, .06);
  overflow: hidden;
  transition: .35s ease;
  height: 100%;
}

.andamio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.andamio-card-img {
  overflow: hidden;
}

.andamio-card-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform .6s ease;
  border-radius: 3px;
}

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

/* Body */

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

/* Category */

.andamio-category {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent-color-2);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
}

/* Title */

.andamio-title {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.1;
  min-height: 70px;

  display: flex;
  align-items: center;
}

/* Description */

.andamio-text {
  margin-bottom: 26px;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.7;
}

/* Specs */

.andamio-specs {
  border-top: 1px solid rgba(0, 0, 0, .08);
  padding-top: 18px;
  margin-bottom: 24px;
}

.andamio-specs h4 {
  font-size: 1rem;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
}

.spec-item span {
  color: #6d6d6d;
  font-size: 13px;
  line-height: 1.4;
}

.spec-item strong {
  color: var(--heading-color);
  font-size: 13px;
  font-weight: 700;
  text-align: right;
}

/* Link */

.andamio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-color-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  transition: .3s ease;
}

.andamio-link::after {
  content: "→";
  transition: transform .3s ease;
}

.andamio-link:hover {
  color: var(--heading-color);
}

.andamio-link:hover::after {
  transform: translateX(4px);
}

/* Responsive */

@media (max-width: 991.98px) {

  .andamio-card-img img {
    height: 240px;
  }

}

@media (max-width: 575.98px) {

  .catalogo-title br {
    display: none;
  }

  .andamio-card-body {
    padding: 22px 20px;
  }

  .andamio-title {
    font-size: 1.3rem;
  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .services-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.services .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 42, 68, 0.95) 0%, rgba(15, 42, 68, 0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.services .services-image .image-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.services .services-image .image-overlay .overlay-link {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.services .services-image .image-overlay .overlay-link:hover {
  gap: 12px;
}

.services .service-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: 8px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  transition: all 0.3s ease;
}

.services .service-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.services .service-item:hover .service-icon {
  background: var(--accent-color);
}

.services .service-item:hover .service-icon i {
  color: var(--contrast-color);
}

.services .service-item .service-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-item .service-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-item .service-body h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.services .service-item .service-body p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (max-width: 991px) {
  .services .services-image {
    min-height: 300px;
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .services .service-item {
    flex-direction: column;
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 80px 0;
}

.stats .stats-content .label-tag {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.stats .stats-content h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.stats .stats-content p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 24px;
}

.stats .stats-content .stats-link {
  font-weight: 600;
  font-size: 16px;
  color: var(--accent-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.stats .stats-content .stats-link:hover {
  gap: 12px;
}

.stats .counter-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.3s ease;
  height: 100%;
}

.stats .counter-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stats .counter-card .counter-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats .counter-card .counter-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.stats .counter-card .counter-data h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
}

.stats .counter-card .counter-data p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 4px 0 0;
}

@media (max-width: 991px) {
  .stats .stats-content {
    margin-bottom: 16px;
  }

  .stats .stats-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .stats {
    padding: 48px 0;
  }

  .stats .counter-card {
    padding: 24px;
  }

  .stats .counter-card .counter-data h3 {
    font-size: 28px;
  }
}

/*--------------------------------------------------------------
# Projects Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
.projects .container-fluid {
  margin-bottom: 3px;
}

.projects .projects-gallery-container {
  padding-right: 12px;
}

.projects .projects-gallery {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.projects .projects-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all ease-in-out 0.4s;
}

.projects .projects-gallery:hover img {
  transform: scale(1.1);
}


.projects .projects-gallery:hover .card-overlay {
  background: linear-gradient(to top, rgba(64, 65, 63, 0.95) 0%, rgba(64, 65, 63, 0.2) 100%);
}

.projects .projects-gallery:hover .card-actions .card-action {
  opacity: 1;
  transform: translateY(0);
}

.projects .projects-gallery .card-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(64, 65, 63, 0.85) 0%, transparent 60%); */
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  transition: background 0.4s ease;
}

.projects .projects-gallery .card-content {
  width: 100%;
}

.projects .projects-gallery .card-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.projects .projects-gallery .card-content p {
  font-size: 14px;
  color: color-mix(in srgb, #ffffff, transparent 25%);
  margin: 8px 0 0;
  line-height: 1.5;
}

.projects .projects-gallery .card-actions {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  gap: 8px;

  z-index: 2;
}

.projects .projects-gallery .card-action {
  width: 94px;
  height: 44px;
  min-width: 44px;
  border-radius: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  /* font-size: 16px; */
  opacity: 0;
  transform: scale(.9);
  transition: all 0.3s ease;
}

.projects .projects-gallery:hover .card-actions .card-action {
  opacity: 1;
  transform: scale(1);
}

.projects .projects-gallery .card-action:nth-child(2) {
  transition-delay: 0.1s;
}

.projects .projects-gallery .card-action:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 991px) {
  .projects .projects-gallery {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .projects .projects-gallery {
    height: 340px;
  }

  .projects .projects-gallery .card-content h3 {
    font-size: 18px;
  }

  .projects .projects-gallery .card-actions .card-action {
    opacity: 1;
    transform: translateY(0);
  }
}

/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process .process-step {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.process .process-step .step-number {
  font-size: 56px;
  font-weight: 800;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  line-height: 1;
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.process .process-step .step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.process .process-step .step-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.process .process-step h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.process .process-step p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

@media (min-width: 992px) {
  .process .process-step::after {
    content: "";
    position: absolute;
    top: 110px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: color-mix(in srgb, var(--accent-color), transparent 60%);
  }

  .process .col-lg-3:last-child .process-step::after {
    display: none;
  }
}

@media (max-width: 575px) {
  .process .process-step {
    padding: 24px 16px;
  }

  .process .process-step .step-number {
    font-size: 44px;
  }

  .process .process-step .step-icon {
    width: 64px;
    height: 64px;
  }

  .process .process-step .step-icon i {
    font-size: 24px;
  }

  .process .process-step h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.team .member-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.team .member-card:hover .member-img .social-links {
  opacity: 1;
  bottom: 16px;
}

.team .member-img {
  position: relative;
  overflow: hidden;
}

.team .member-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.team .member-img .social-links {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: all 0.4s ease;
}

.team .member-img .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.team .member-img .social-links a:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
}

.team .member-info {
  padding: 24px;
  text-align: center;
}

.team .member-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.team .member-info span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 400;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .swiper-wrapper {
  height: auto !important;
}

.testimonials .testimonial-card {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials .testimonial-card .stars {
  margin-bottom: 16px;
}

.testimonials .testimonial-card .stars i {
  color: #ffc107;
  font-size: 16px;
}

.testimonials .testimonial-card>p {
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 24px;
}

.testimonials .testimonial-card .client-info {
  gap: 16px;
}

.testimonials .testimonial-card .client-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonials .testimonial-card .client-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
}

.testimonials .testimonial-card .client-info span {
  font-size: 14px;
  color: var(--accent-color);
}

.testimonials .swiper-pagination {
  margin-top: 32px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--default-color), transparent 80%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

@media (max-width: 575px) {
  .testimonials .testimonial-card {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-item {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 8px;
  padding: 24px 32px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-right: 32px;
  line-height: 1.4;
  cursor: pointer;
  transition: 0.3s;
}

.faq .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.faq .faq-item .faq-toggle {
  position: absolute;
  right: 32px;
  top: 28px;
  font-size: 16px;
  line-height: 0;
  color: var(--default-color);
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-active {
  border-color: var(--accent-color);
}

.faq .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 16px;
}

.faq .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

@media (max-width: 575px) {
  .faq .faq-item {
    padding: 16px 24px;
  }

  .faq .faq-item .faq-toggle {
    right: 24px;
    top: 20px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .info-block {
  padding-right: 30px;
}

@media (max-width: 992px) {
  .call-to-action .info-block {
    padding-right: 0;
  }
}

.call-to-action .info-block .tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.call-to-action .info-block h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.2;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .call-to-action .info-block h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .call-to-action .info-block h2 {
    font-size: 1.75rem;
  }
}

.call-to-action .info-block>p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.call-to-action .highlight-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.call-to-action .highlight-cards .highlight-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--surface-color);
  padding: 22px 25px;
  border-radius: 14px;
  box-shadow: 0 6px 25px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.call-to-action .highlight-cards .highlight-card:hover {
  transform: translateX(8px);
  border-left-color: var(--accent-color);
  box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

.call-to-action .highlight-cards .highlight-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.call-to-action .highlight-cards .highlight-card .card-icon i {
  font-size: 1.4rem;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.call-to-action .highlight-cards .highlight-card:hover .card-icon {
  background: var(--accent-color);
}

.call-to-action .highlight-cards .highlight-card:hover .card-icon i {
  color: var(--contrast-color);
}

.call-to-action .highlight-cards .highlight-card .card-body-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.call-to-action .highlight-cards .highlight-card .card-body-content p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
  line-height: 1.5;
}

.call-to-action .action-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .call-to-action .action-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.call-to-action .action-row .btn-get-started {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.call-to-action .action-row .btn-get-started i {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.call-to-action .action-row .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.call-to-action .action-row .btn-get-started:hover i {
  transform: translateX(5px);
}

.call-to-action .action-row .phone-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-to-action .action-row .phone-block .phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: phone-ring 2s ease-in-out infinite;
}

.call-to-action .action-row .phone-block .phone-icon i {
  font-size: 1.1rem;
  color: var(--accent-color);
}

.call-to-action .action-row .phone-block .phone-details .phone-label {
  display: block;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.call-to-action .action-row .phone-block .phone-details .phone-number {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.call-to-action .action-row .phone-block .phone-details .phone-number:hover {
  color: var(--accent-color);
}

@keyframes phone-ring {

  0%,
  100% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(12deg);
  }

  20% {
    transform: rotate(-10deg);
  }

  30% {
    transform: rotate(8deg);
  }

  40% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(0deg);
  }
}

.call-to-action .image-block {
  position: relative;
  padding: 20px;
}

@media (max-width: 992px) {
  .call-to-action .image-block {
    padding: 10px;
  }
}

.call-to-action .image-block .main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px color-mix(in srgb, var(--default-color), transparent 82%);
}

.call-to-action .image-block .main-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.call-to-action .image-block .main-image:hover img {
  transform: scale(1.03);
}

.call-to-action .image-block .counter-badge {
  position: absolute;
  top: -10px;
  right: 0;
  z-index: 2;
}

@media (max-width: 576px) {
  .call-to-action .image-block .counter-badge {
    top: -5px;
    right: -5px;
  }
}

.call-to-action .image-block .counter-badge .counter-inner {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 24px 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 45px color-mix(in srgb, var(--accent-color), transparent 50%);
}

.call-to-action .image-block .counter-badge .counter-inner .counter-value {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--heading-font);
}

@media (max-width: 576px) {
  .call-to-action .image-block .counter-badge .counter-inner .counter-value {
    font-size: 1.8rem;
  }
}

.call-to-action .image-block .counter-badge .counter-inner .counter-text {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.call-to-action .image-block .accent-badge {
  position: absolute;
  bottom: 0;
  left: -10px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-color);
  padding: 16px 24px;
  border-radius: 14px;
  box-shadow: 0 10px 35px color-mix(in srgb, var(--default-color), transparent 85%);
}

@media (max-width: 576px) {
  .call-to-action .image-block .accent-badge {
    left: 0;
    bottom: -5px;
  }
}

.call-to-action .image-block .accent-badge i {
  font-size: 1.6rem;
  color: var(--accent-color);
}

.call-to-action .image-block .accent-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-cards .info-card {
  padding: 24px;
  margin-bottom: 16px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.contact .info-cards .info-card:last-child {
  margin-bottom: 0;
}

.contact .info-cards .info-card:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact .info-cards .info-card .icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact .info-cards .info-card .icon-box i {
  font-size: 24px;
  color: var(--accent-color);
}

.contact .info-cards .info-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact .info-cards .info-card p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.6;
}

.contact .contact-form-wrap {
  background: var(--surface-color);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .contact-form-wrap input[type=text],
.contact .contact-form-wrap input[type=email],
.contact .contact-form-wrap input[type=tel],
.contact .contact-form-wrap select,
.contact .contact-form-wrap textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  padding: 12px 16px;
  border-radius: 4px;
  min-height: 48px;
}

.contact .contact-form-wrap input[type=text]:focus,
.contact .contact-form-wrap input[type=email]:focus,
.contact .contact-form-wrap input[type=tel]:focus,
.contact .contact-form-wrap select:focus,
.contact .contact-form-wrap textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .contact-form-wrap input[type=text]::placeholder,
.contact .contact-form-wrap input[type=email]::placeholder,
.contact .contact-form-wrap input[type=tel]::placeholder,
.contact .contact-form-wrap select::placeholder,
.contact .contact-form-wrap textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .contact-form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

.contact .contact-form-wrap select {
  appearance: auto;
}

.contact .contact-form-wrap .btn-submit {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 14px 40px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  min-height: 48px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact .contact-form-wrap .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

@media (max-width: 575px) {
  .contact .contact-form-wrap {
    padding: 24px;
  }
}

/*--------------------------------------------------------------
# Project Details Section
--------------------------------------------------------------*/
.project-details .hero-banner {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.project-details .hero-banner .banner-slider .swiper-wrapper {
  height: auto !important;
}

.project-details .hero-banner .banner-slider .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.project-details .hero-banner .banner-slider .slider-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  background: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 6px 14px;
  border-radius: 30px;
}

.project-details .hero-banner .banner-slider .swiper-button-next,
.project-details .hero-banner .banner-slider .swiper-button-prev {
  position: static;
  width: 30px;
  height: 30px;
  margin: 0;
}

.project-details .hero-banner .banner-slider .swiper-button-next::after,
.project-details .hero-banner .banner-slider .swiper-button-prev::after {
  font-size: 14px;
  color: var(--contrast-color);
}

.project-details .hero-banner .banner-slider .swiper-pagination {
  position: static;
  width: auto;
  color: var(--contrast-color);
  font-size: 13px;
  font-weight: 600;
}

.project-details .hero-banner .banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px 24px;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 10%), transparent);
  z-index: 5;
}

.project-details .hero-banner .banner-overlay .tag {
  display: inline-block;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.project-details .hero-banner .banner-overlay h2 {
  color: var(--contrast-color);
  font-size: 30px;
  font-weight: 700;
  margin: 0;
}

.project-details .detail-tabs .nav-tabs {
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  gap: 4px;
}

.project-details .detail-tabs .nav-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  margin-bottom: -2px;
}

.project-details .detail-tabs .nav-tabs .nav-link i {
  font-size: 16px;
}

.project-details .detail-tabs .nav-tabs .nav-link:hover {
  color: var(--accent-color);
  border-bottom-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.project-details .detail-tabs .nav-tabs .nav-link.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
  background: transparent;
}

.project-details .detail-tabs .tab-content {
  padding: 28px 0;
}

.project-details .detail-tabs .tab-content .summary {
  font-size: 17px;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 16px;
  font-weight: 500;
}

.project-details .detail-tabs .tab-content p {
  font-size: 15px;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.project-details .photo-grid h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .photo-grid img {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: all 0.3s;
  cursor: pointer;
}

.project-details .photo-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px color-mix(in srgb, var(--default-color), transparent 80%);
}

.project-details .sticky-sidebar {
  position: sticky;
  top: 100px;
}

.project-details .sticky-sidebar .meta-header {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--default-color) 30%));
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.project-details .sticky-sidebar .meta-header .status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .meta-header .status-badge i {
  font-size: 14px;
}

.project-details .sticky-sidebar .meta-header .meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--contrast-color), transparent 80%);
}

.project-details .sticky-sidebar .meta-header .meta-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .meta-header .meta-row i {
  font-size: 16px;
  opacity: 0.85;
}

.project-details .sticky-sidebar .specs-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .specs-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 18px;
}

.project-details .sticky-sidebar .specs-card .spec-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.project-details .sticky-sidebar .specs-card .spec-row:last-child {
  margin-bottom: 0;
}

.project-details .sticky-sidebar .specs-card .spec-item {
  flex: 1;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-number {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.project-details .sticky-sidebar .specs-card .spec-item .spec-label {
  display: block;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.project-details .sticky-sidebar .capabilities-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.project-details .sticky-sidebar .capabilities-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .capabilities-card .capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag i {
  color: var(--accent-color);
  font-size: 15px;
}

.project-details .sticky-sidebar .capabilities-card .cap-tag:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 82%);
}

.project-details .sticky-sidebar .client-card {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 12px;
  padding: 24px;
}

.project-details .sticky-sidebar .client-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 16px;
}

.project-details .sticky-sidebar .client-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.project-details .sticky-sidebar .client-card ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.project-details .sticky-sidebar .client-card ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-details .sticky-sidebar .client-card ul li:first-child {
  padding-top: 0;
}

.project-details .sticky-sidebar .client-card ul li .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}

.project-details .sticky-sidebar .client-card ul li .value {
  font-size: 13px;
  font-weight: 600;
  color: var(--heading-color);
}

.project-details .bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 60px;
  padding: 24px 0;
  border-top: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.project-details .bottom-nav .btn-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.project-details .bottom-nav .btn-nav i {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s;
}

.project-details .bottom-nav .btn-nav .btn-text {
  display: flex;
  flex-direction: column;
}

.project-details .bottom-nav .btn-nav .btn-text .btn-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.project-details .bottom-nav .btn-nav .btn-text .btn-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--default-color);
  transition: color 0.3s;
}

.project-details .bottom-nav .btn-nav.prev-btn:hover i {
  transform: translateX(-4px);
}

.project-details .bottom-nav .btn-nav.prev-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.next-btn {
  text-align: right;
}

.project-details .bottom-nav .btn-nav.next-btn:hover i {
  transform: translateX(4px);
}

.project-details .bottom-nav .btn-nav.next-btn:hover .btn-title {
  color: var(--accent-color);
}

.project-details .bottom-nav .btn-nav.center-btn {
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 14px;
}

.project-details .bottom-nav .btn-nav.center-btn i {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn span {
  color: var(--contrast-color);
}

.project-details .bottom-nav .btn-nav.center-btn:hover {
  background: color-mix(in srgb, var(--accent-color), var(--default-color) 15%);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 50%);
}

@media (max-width: 992px) {
  .project-details .hero-banner .banner-overlay h2 {
    font-size: 24px;
  }

  .project-details .sticky-sidebar {
    position: static;
    margin-top: 20px;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (max-width: 576px) {
  .project-details .hero-banner .banner-overlay {
    padding: 30px 20px 18px;
  }

  .project-details .hero-banner .banner-overlay h2 {
    font-size: 20px;
  }

  .project-details .hero-banner .banner-overlay .tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .project-details .hero-banner .banner-slider .slider-controls {
    bottom: 10px;
    right: 10px;
    padding: 4px 10px;
  }

  .project-details .detail-tabs .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .project-details .detail-tabs .nav-tabs .nav-link {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 12px;
  }

  .project-details .sticky-sidebar .specs-card .spec-item .spec-number {
    font-size: 20px;
  }

  .project-details .sticky-sidebar .meta-header,
  .project-details .sticky-sidebar .specs-card,
  .project-details .sticky-sidebar .capabilities-card,
  .project-details .sticky-sidebar .client-card {
    padding: 20px;
  }

  .project-details .bottom-nav {
    flex-direction: column;
    gap: 16px;
  }

  .project-details .bottom-nav .btn-nav.center-btn {
    order: -1;
  }

  .project-details .bottom-nav .btn-nav.prev-btn .btn-text .btn-title,
  .project-details .bottom-nav .btn-nav.next-btn .btn-text .btn-title {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .swiper-wrapper {
  height: auto !important;
}

.service-details .service-sidebar {
  position: sticky;
  top: 100px;
}

.service-details .service-sidebar .service-overview {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 24px;
}

.service-details .service-sidebar .service-overview .overview-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .service-overview .overview-header i {
  font-size: 24px;
}

.service-details .service-sidebar .service-overview .overview-header h3 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .service-overview .overview-content {
  padding: 32px;
}

.service-details .service-sidebar .service-overview .overview-content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-overview .overview-content p {
  margin-bottom: 24px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.7;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  transition: 0.3s;
  text-align: center;
  width: 100%;
}

.service-details .service-sidebar .service-overview .overview-content .cta-button .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.service-details .service-sidebar .key-benefits {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 24px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .key-benefits h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 16px;
}

.service-details .service-sidebar .key-benefits h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-sidebar .key-benefits ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.service-details .service-sidebar .key-benefits ul li {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 15px;
}

.service-details .service-sidebar .key-benefits ul li:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .key-benefits ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 12px;
  flex-shrink: 0;
}

.service-details .service-sidebar .contact-card {
  background: var(--surface-color);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .contact-card .contact-header {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-details .service-sidebar .contact-card .contact-header i {
  font-size: 24px;
}

.service-details .service-sidebar .contact-card .contact-header h4 {
  color: var(--contrast-color);
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.service-details .service-sidebar .contact-card .contact-info {
  padding: 32px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row:last-child {
  margin-bottom: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div span {
  display: block;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 4px;
}

.service-details .service-sidebar .contact-card .contact-info .info-row div p {
  margin: 0;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 15px;
}

.service-details .service-content .image-gallery {
  margin-bottom: 40px;
}

.service-details .service-content .image-gallery .service-details-slider {
  border-radius: 8px;
  overflow: hidden;
}

.service-details .service-content .image-gallery .service-details-slider img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination {
  bottom: 20px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--contrast-color);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 5px;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--contrast-color);
  border-radius: 50%;
  opacity: 0;
  transition: 0.3s;
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next::after,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev::after {
  font-size: 18px;
  color: var(--accent-color);
}

.service-details .service-content .image-gallery .service-details-slider .swiper-button-next:hover,
.service-details .service-content .image-gallery .service-details-slider .swiper-button-prev:hover {
  opacity: 1;
}

.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-next,
.service-details .service-content .image-gallery .service-details-slider:hover .swiper-button-prev {
  opacity: 0.8;
}

.service-details .service-content .section-header {
  margin-bottom: 24px;
}

.service-details .service-content .section-header h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-details .service-content .section-header .divider {
  width: 48px;
  height: 3px;
  background: var(--accent-color);
}

.service-details .service-content .details-content {
  margin-bottom: 40px;
}

.service-details .service-content .details-content p {
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.8;
  font-size: 15px;
}

.service-details .service-content .details-content p:last-child {
  margin-bottom: 0;
}

.service-details .service-content .service-features {
  margin-bottom: 40px;
}

.service-details .service-content .service-features .feature-card {
  background: var(--surface-color);
  border-radius: 8px;
  padding: 24px;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-content .service-features .feature-card:hover {
  border-color: var(--accent-color);
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper {
  background: var(--accent-color);
}

.service-details .service-content .service-features .feature-card:hover .icon-wrapper i {
  color: var(--contrast-color);
}

.service-details .service-content .service-features .feature-card .icon-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card .icon-wrapper i {
  font-size: 24px;
  color: var(--accent-color);
  transition: 0.3s;
}

.service-details .service-content .service-features .feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .service-features .feature-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-content .implementation-steps .step-container {
  position: relative;
}

.service-details .service-content .implementation-steps .step-container:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .implementation-steps .step-container .step {
  display: flex;
  margin-bottom: 32px;
  position: relative;
}

.service-details .service-content .implementation-steps .step-container .step:last-child {
  margin-bottom: 0;
}

.service-details .service-content .implementation-steps .step-container .step .step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  border-radius: 50%;
  margin-right: 20px;
  z-index: 2;
  font-size: 14px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content {
  flex: 1;
}

.service-details .service-content .implementation-steps .step-container .step .step-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.service-details .service-content .implementation-steps .step-container .step .step-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .service-details .service-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {

  .service-details .service-sidebar .service-overview .overview-content,
  .service-details .service-sidebar .key-benefits,
  .service-details .service-sidebar .contact-card .contact-info {
    padding: 24px;
  }

  .service-details .service-content .section-header h3 {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 100px 0;
}

.error-404 .error-visual {
  text-align: center;
}

.error-404 .error-visual .glitch-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.error-404 .error-visual .glitch-wrapper .digit {
  font-size: 9rem;
  font-weight: 800;
  font-family: var(--heading-font);
  line-height: 1;
  color: var(--accent-color);
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  animation: floatBounce 3s ease-in-out infinite;
}

.error-404 .error-visual .glitch-wrapper .digit.digit-circle i {
  color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}

.error-404 .error-visual .decorative-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  animation: dotPulse 1.5s ease-in-out infinite;
}

.error-404 .error-visual .decorative-dots span:nth-child(2) {
  animation-delay: 0.3s;
  background-color: var(--accent-color);
}

.error-404 .error-visual .decorative-dots span:nth-child(3) {
  animation-delay: 0.6s;
}

.error-404 .error-info .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-404 .error-info h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.error-404 .error-info p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.error-404 .error-info .suggestions {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.error-404 .error-info .suggestions li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.error-404 .error-info .suggestions li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.error-404 .error-info .action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-404 .error-info .action-buttons .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.error-404 .error-info .action-buttons .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.error-404 .error-info .action-buttons .btn-support {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.error-404 .error-info .action-buttons .btn-support:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

@keyframes floatBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@media (max-width: 992px) {
  .error-404 .error-visual {
    margin-bottom: 2rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 7rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 110px;
    height: 110px;
    font-size: 3.5rem;
  }

  .error-404 .error-info {
    text-align: center;
  }

  .error-404 .error-info h2 {
    font-size: 1.85rem;
  }

  .error-404 .error-info .suggestions {
    display: inline-block;
    text-align: left;
  }

  .error-404 .error-info .action-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 5.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 90px;
    height: 90px;
    font-size: 2.8rem;
  }

  .error-404 .error-info h2 {
    font-size: 1.6rem;
  }

  .error-404 .error-info p {
    font-size: 0.95rem;
  }

  .error-404 .error-info .action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .error-404 .error-info .action-buttons .btn-home,
  .error-404 .error-info .action-buttons .btn-support {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-visual .glitch-wrapper .digit {
    font-size: 4.5rem;
  }

  .error-404 .error-visual .glitch-wrapper .digit.digit-circle {
    width: 72px;
    height: 72px;
    font-size: 2.2rem;
  }

  .error-404 .error-visual .decorative-dots {
    margin-top: 1.25rem;
  }

  .error-404 .error-visual .decorative-dots span {
    width: 8px;
    height: 8px;
  }

  .error-404 .error-info h2 {
    font-size: 1.35rem;
  }

  .error-404 .error-info .suggestions li {
    font-size: 0.88rem;
  }
}

button {
  border: transparent;
}

.ventajas {
  background: var(--surface-color);
  border-radius: 4px;
  color: var(--heading-color);
  padding: 10px;
  margin-bottom: .5rem;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}

/* =========================
   FAQ Wiki Section
========================= */

.faq-wiki-section {
  padding: 80px 0;
}

.faq-wiki-section table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
  /* border-collapse: collapse; */
  border: transparent;
  overflow-x: auto;
  display: flex;
}

.faq-wiki-section table th,
.faq-wiki-section table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.faq-wiki-section table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.faq-wiki-section table>tbody>tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}


.faq-header h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.faq-intro {
  font-size: 1rem;
  color: #6c757d;
  max-width: 720px;
  margin: 0 auto;
}

/* Índice */

.faq-index {
  background-color: color-mix(in srgb, var(--heading-color) 80%, transparent);
  padding: 32px;
  border-radius: 8px;
}

.faq-index h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.faq-index ul {
  list-style: none;
  padding-left: 0;
}

.faq-index li {
  margin-bottom: 12px;
}

.faq-index .index-faqs span {
  display: flex;
  gap: 3px;
  flex-wrap: nowrap;
}

.faq-index .index-faqs span i {
  color: var(--contrast-color);
}


.faq-index a {
  text-decoration: none;
  font-weight: 500;
  color: var(--contrast-color);
}

.faq-index a:hover {
  text-decoration: underline;
}

/* FAQ Items */

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 24px;
  background-color: #ffffff;
  scroll-margin-top: 120px;

}

.faq-item h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.faq-item p,
.faq-item li {
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item ol,
.faq-item ul {
  padding-left: 18px;
}

.faq-item {
  transition: all 0.25s ease;
}

.faq-item.is-active {
  border: 1px solid var(--accent-color-industrial);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  position: relative;
}

/* Barra lateral indicadora */
.faq-item.is-active::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 4px;
  background-color: var(--accent-color-industrial);
  border-radius: 8px 0 0 8px;
}

/* Botón volver faq*/
.faq-back {
  margin-top: 24px;
  text-align: right;
}

.back-to-index {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--heading-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.back-to-index:hover {
  color: var(--accent-color-industrial);
}

/* =========================================================
   BOTÓN FAQ INDUSTRIAL
========================================================= */

.btn-faq-industrial {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 18px 26px;

  background: var(--background-color);
  border: 1px solid rgba(0, 0, 0, .08);
  border-left: 5px solid var(--accent-color-industrial);

  border-radius: 16px;

  text-decoration: none;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, .06);

  overflow: hidden;

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

/* Fondo decorativo */

.btn-faq-industrial::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(65, 166, 42, .05),
      rgba(0, 144, 54, 0));

  opacity: 0;

  transition: opacity .35s ease;
}

/* Hover */

.btn-faq-industrial:hover {
  transform: translateY(-4px);

  border-color: rgba(65, 166, 42, .18);

  box-shadow:
    0 18px 40px rgba(0, 0, 0, .12);
}

.btn-faq-industrial:hover::before {
  opacity: 1;
}

/* =========================================================
   PULSE
========================================================= */

.btn-faq-pulse {
  position: absolute;
  left: 22px;

  width: 10px;
  height: 10px;

  background: var(--accent-color-industrial);

  border-radius: 50%;

  box-shadow:
    0 0 0 rgba(65, 166, 42, .45);

  animation: faqPulse 2s infinite;
}

@keyframes faqPulse {

  0% {
    box-shadow:
      0 0 0 0 rgba(65, 166, 42, .45);
  }

  70% {
    box-shadow:
      0 0 0 14px rgba(65, 166, 42, 0);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(65, 166, 42, 0);
  }

}

/* =========================================================
   ICONO
========================================================= */

.btn-faq-icon {
  position: relative;
  z-index: 2;

  /* margin-left: 12px; */

  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg,
      var(--accent-color-industrial),
      var(--accent-color));

  border-radius: 14px;

  color: var(--contrast-color);

  font-size: 1.2rem;

  flex-shrink: 0;

  transition:
    transform .35s ease,
    border-radius .35s ease;
}

.btn-faq-industrial:hover .btn-faq-icon {
  transform: rotate(-6deg) scale(1.05);
  border-radius: 18px;
}

/* =========================================================
   TEXTO
========================================================= */

.btn-faq-text {
  position: relative;
  z-index: 2;

  color: var(--heading-color);

  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;

  transition: color .3s ease;
}

.btn-faq-industrial:hover .btn-faq-text {
  color: var(--accent-color);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 575.98px) {

  .btn-faq-industrial {
    width: 100%;
    padding: 16px 18px;
  }

  .btn-faq-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }

  .btn-faq-text {
    font-size: .95rem;
  }

}

.services .service-image-block {
  height: 100%;
  border-radius: 3px;
  overflow: hidden;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
}

/* .services .service-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.services .service-list-block {
  height: 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.services .service-list-block h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services .service-list-block p {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services .service-list-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  align-items: center;
}

.services .service-list-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.services .service-list-item .service-list-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: color-mix(in srgb, var(--accent-color), transparent 85%); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.services .service-list-item .service-list-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.services .service-list-item .service-list-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  text-align: start;
}

.services .service-list-item .service-list-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container {
  margin-top: 5rem;
  padding: 3rem;
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  border-radius: 10px;
}

.services .cta-container h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.services .cta-container p {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .cta-container .btn-cta {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.services .cta-container .btn-cta:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .services .service-list-block {
    margin-top: 2rem;
  }

  .services .service-card {
    padding: 2rem;
  }

  .services .cta-container {
    padding: 2rem;
  }

  .services .cta-container h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services .service-list-item {
    flex-direction: column;
    gap: 1rem;
  }

  .services .service-list-item .service-list-icon {
    margin-bottom: 0.5rem;
  }
}

/*--------------------------------------------------------------
# Alt Services 2 Section
--------------------------------------------------------------*/
.alt-services-2 a {
  color: var(--accent-color-industrial);
}

.alt-services-2 h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.alt-services-2 .icon-box {
  margin-top: 30px;
  border-left: 2px solid var(--accent-color-2);
  align-items: center;
}

.alt-services-2 .icon-box img {
  max-width: 12%;
}

.alt-services-2 .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services-2 .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.andamios-urgentes {
  position: relative;
  overflow: hidden;
}

.andamios-content {
  max-width: 650px;
}

.andamios-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  margin-bottom: 20px;
  border-radius: 100px;
  background: rgba(65, 166, 42, 0.08);
  color: #41A62A;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
}

.andamios-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  color: #111111;
  margin-bottom: 24px;
}

.andamios-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #5b5b5b;
  margin-bottom: 20px;
}

.andamios-text strong {
  color: #111111;
}

.andamios-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  margin-bottom: 35px;
}

.andamios-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 5px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);
  transition: all .3s ease;
}

.andamios-item:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 166, 42, .2);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.andamios-icon {
  width: 75px;
  min-width: 75px;
  height: 75px;
  border-radius: 16px;
  background: rgba(65, 166, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.andamios-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.andamios-item-text {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #1f1f1f;
}

.andamios-text-last {
  margin-bottom: 0;
}

.andamios-image-wrapper {
  position: relative;
  height: 100%;
}

.andamios-image {
  /* width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover; */
  border-radius: 3px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

@media (max-width: 991.98px) {

  .andamios-image {
    min-height: 420px;
  }

  .andamios-title {
    font-size: 2.2rem;
  }

}

@media (max-width: 575.98px) {

  .andamios-item {
    align-items: flex-start;
  }

  .andamios-icon {
    width: 60px;
    min-width: 60px;
    height: 60px;
    padding: 12px;
  }

  .andamios-title {
    font-size: 1.9rem;
  }

  .andamios-image {
    min-height: 320px;
    border-radius: 22px;
  }

}

/* =========================================================
   BOTÓN TESTIMONIOS INDUSTRIAL
========================================================= */

.btn-testimonios-industrial {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 16px 24px;
  background: linear-gradient(135deg,
      var(--heading-color),
      #1d1a10);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  transition: all .35s ease;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

@media (max-width:1199px) {
  .btn-testimonios-industrial {
    display: inline-block;
  }
}

@media (max-width:991px) {
  .btn-testimonios-industrial {
    display: inline-flex;
  }
}

/* Línea superior industrial */

.btn-testimonios-industrial::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--accent-color-industrial),
      var(--accent-color));
}

/* Hover */

.btn-testimonios-industrial:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* =========================================================
   ICONO
========================================================= */

.btn-testimonios-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg,
      rgba(65, 166, 42, .18),
      rgba(0, 144, 54, .12));

  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;

  color: var(--accent-color-industrial);
  font-size: 1.35rem;

  transition: all .35s ease;
}



.btn-testimonios-industrial:hover .btn-testimonios-icon {
  transform: scale(1.06);
  background:
    linear-gradient(135deg,
      rgba(65, 166, 42, .28),
      rgba(0, 144, 54, .2));
}

/* =========================================================
   CONTENIDO
========================================================= */

.btn-testimonios-content {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.btn-testimonios-content small {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, .62);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.btn-testimonios-content strong {
  color: var(--contrast-color);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .3px;
}

/* =========================================================
   FLECHA
========================================================= */

.btn-testimonios-arrow {
  margin-left: 6px;

  color: var(--contrast-color);
  font-size: 1rem;

  transition: transform .35s ease;
}

.btn-testimonios-industrial:hover .btn-testimonios-arrow {
  transform: translateX(6px);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 575.98px) {

  .btn-testimonios-industrial {
    width: 100%;
    padding: 14px 18px;
  }

  .btn-testimonios-icon {
    width: 50px;
    height: 50px;
  }

  .btn-testimonios-content strong {
    font-size: .95rem;
  }

}


.explora-mas .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.explora-mas .card-body {
  flex: 1;
}

.explora-mas .row.equal-height .col-lg-4 {
  display: flex;
}

.explora-mas .row.equal-height .card {
  flex: 1;
}

.explora-mas .btn-primary {
  --heading-color: #272213;
  background: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
}

/*==================================
PROYECTOS INDUSTRIALES
==================================*/

.casos-exito {
  background: #fff;
}

.section-badge {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(0, 144, 54, .10);
  color: var(--accent-color);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}



.section-text {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
}

.caso-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
  padding: 35px;
  transition: .35s ease;
  position: relative;
  overflow: hidden;
}

.caso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg,
      var(--accent-color),
      var(--accent-color-industrial));
}

.caso-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.caso-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: rgba(0, 144, 54, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.caso-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.caso-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  min-height: 60px;
}

.caso-item {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 15px;
}

.caso-item strong {
  color: var(--accent-color-2);
}

@media (max-width:991px) {

  .caso-card {
    padding: 30px;
  }

  .caso-card h3 {
    min-height: auto;
  }

}

@media (max-width:576px) {

  .caso-card {
    padding: 25px;
  }


}

/*=========================================
FAQ INDUSTRIAL B2B
=========================================*/

.faq-section {
  background: var(--surface-color);
  position: relative;
}

.faq-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(0, 144, 54, .10);
  color: var(--accent-color);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.faq-title {
  color: var(--heading-color);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.2;
  margin-top: 20px;
  margin-bottom: 20px;
}

.faq-description {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.9;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.faq-accordion .accordion-button {
  background: #fff;
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 700;
  padding: 24px 28px;
  box-shadow: none;
}

.faq-accordion .accordion-button i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: var(--heading-color);
  border-left: 5px solid var(--accent-color);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.faq-accordion .accordion-body {
  background: #fff;
  color: var(--default-color);
  padding: 10px 30px 30px;
  line-height: 1.9;
}

.faq-accordion ul {
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 1.25rem;
}

.faq-accordion li {
  margin-bottom: 10px;
}

.faq-accordion .accordion-button::after {
  transition: .3s;
}

@media (max-width:991px) {

  .faq-title {
    font-size: 2.2rem;
  }

  .faq-accordion .accordion-button {
    padding: 20px;
    font-size: 1rem;
  }

  .faq-accordion .accordion-body {
    padding: 10px 20px 25px;
  }

}

@media (max-width:576px) {

  .faq-title {
    font-size: 1.9rem;
  }

  .faq-description {
    font-size: 1rem;
  }

  .faq-accordion .accordion-button {
    align-items: flex-start;
    line-height: 1.5;
  }

}


.about-company {
  background: var(--background-color);
}

.about-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  background: rgba(0, 144, 54, .10);
  color: var(--accent-color);
  font-weight: 700;
}

.about-title {
  color: var(--heading-color);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  margin-top: 20px;
}

.section-label {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.about-content h2,
.certifications-wrapper h2,
.services-wrapper h2,
.why-us h2 {
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about-content p {
  line-height: 1.9;
  color: var(--default-color);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .10);
}

.certification-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  border: 1px solid #e5e5e5;
  height: 100%;
}

.cert-logo {
  max-height: 90px;
  margin-bottom: 20px;
}

.cert-item {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  border-left: 5px solid var(--accent-color);
}

.cert-item i {
  color: var(--accent-color);
  margin-right: 10px;
}

.service-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  transition: .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card i {
  color: var(--accent-color);
  font-size: 2rem;
  display: block;
  margin-bottom: 15px;
}

.training-box {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

.why-card {
  background: #fff;
  border: 2px solid #d9d9d9;
  padding: 30px;
  text-align: center;
  font-weight: 600;
  border-radius: 15px;
  height: 100%;
  transition: .3s;
}

.why-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
}

@media(max-width:768px) {

  .about-title {
    font-size: 2rem;
  }

  .training-box {
    padding: 25px;
  }

}

.certifications-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.certifications-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--default-color);
  line-height: 1.7;
}

.certifications-list li i {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--accent-color);
  margin-top: 2px;
}

.product-detail {
  background: var(--background-color);
}


.product-content h2 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.product-content p {
  color: var(--default-color);
  line-height: 1.9;
}

.product-benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.product-benefits li {
  margin-bottom: 15px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.product-benefits i {
  color: var(--accent-color);
  margin-top: 4px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-primary-custom {
  background: var(--accent-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.btn-primary-custom:hover {
  background: #007c2f;
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.product-detail .product-gallery .main-showcase {
  position: relative;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface-color), color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.product-detail .product-gallery .main-showcase .image-zoom-container {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-detail .product-gallery .main-showcase .image-zoom-container .main-product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-detail .product-gallery .main-showcase .image-zoom-container .main-product-image:hover {
  transform: scale(1.05);
}

.product-detail .product-gallery .main-showcase .image-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-detail .product-gallery .main-showcase .image-navigation .nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.product-detail .product-gallery .main-showcase .image-navigation .nav-arrow:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.product-detail .product-gallery .main-showcase .image-navigation .nav-arrow i {
  font-size: 1.25rem;
}

.product-detail .product-gallery .main-showcase:hover .image-navigation {
  opacity: 1;
}

.product-detail .product-gallery .thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .product-detail .product-gallery .thumbnail-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-detail .product-gallery .thumbnail-grid .thumbnail-wrapper {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--surface-color);
}

.product-detail .product-gallery .thumbnail-grid .thumbnail-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.product-detail .product-gallery .thumbnail-grid .thumbnail-wrapper.active {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.product-detail .product-gallery .thumbnail-grid .thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-tabs {
  gap: 10px;
}

.product-tabs .nav-link {
  color: var(--heading-color);
  background: #f4f4f4;
  border-radius: 8px;
  font-weight: 600;
}

.product-tabs .nav-link.active {
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
}


.product-tab-content {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.specs-table th {
  width: 220px;
  color: var(--heading-color);
}

@media (max-width:991px) {


  .product-content h2 {
    font-size: 1.7rem;
  }

}

@media (max-width:576px) {

  .product-actions {
    flex-direction: column;
  }

  .product-tab-content {
    padding: 25px;
  }

}

/* =====================================
TABLAS INTERIOR DE PRODUCTO
===================================== */

.product-detail table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
}

.product-detail table thead th {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  padding: 16px 20px;
  border: none;
  white-space: nowrap;
}

.product-detail table tbody tr:nth-child(even) {
  background: #fafafa;
}

.product-detail table tbody tr:hover {
  background: rgba(0, 144, 54, .05);
}

.product-detail table th {
  color: var(--heading-color);
  font-weight: 700;
}

.product-detail table td,
.product-detail table th {
  padding: 16px 20px;
  border: 1px solid #ececec;
  vertical-align: middle;
}

.product-detail table p:last-child {
  margin-bottom: 0;
}

.product-detail table ul,
.product-detail table ol {
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.product-detail table img {
  max-width: 100%;
  height: auto;
}

.product-detail .tab-pane {
  overflow-x: auto;
}

.product-detail table {
  min-width: 600px;
}

@media (max-width:768px) {

  .product-detail table {
    min-width: 100%;
  }

  .product-detail table td,
  .product-detail table th {
    padding: 12px;
    font-size: .95rem;
  }

}

.promo-cards .category-card {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.promo-cards .category-card .card-img-wrapper {
  overflow: hidden;
  height: 220px;
}

.promo-cards .category-card .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.promo-cards .category-card .card-body {
  padding: 20px 20px 8px;
  flex: 1;
}

.promo-cards .category-card .card-body h4 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.promo-cards .category-card .card-body .count-label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.promo-cards .category-card .card-action {
  padding: 0 20px 20px;
  margin-top: auto;
}

.promo-cards .category-card .card-action div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: var(--accent-color);
  transition: gap 0.2s ease;
}

.promo-cards .category-card .card-action div i {
  font-size: 12px;
}

.promo-cards .category-card .card-action div:hover {
  gap: 10px;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.promo-cards .category-card:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 90%);
}

.promo-cards .category-card:hover .card-img-wrapper img {
  transform: scale(1.04);
}

@media (max-width: 992px) {
  .promo-cards .category-card .card-img-wrapper {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .promo-cards .category-card .card-img-wrapper {
    height: 180px;
  }
}

/*=====================================
BENEFICIOS VENTA DE ANDAMIOS
=====================================*/

.benefits-sale-section {
  background: var(--background-color);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(0, 144, 54, .08);
  color: var(--accent-color);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 15px;
}



.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  transition: .3s ease;
}

.benefit-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--default-color);
  line-height: 1.6;
  font-weight: 500;
}

.benefits-note {
  margin-top: 35px;
  padding: 24px;
  border-left: 4px solid var(--accent-color);
  background: rgba(0, 144, 54, .04);
  border-radius: 0 12px 12px 0;
}

.benefits-note p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.9;
}

.benefits-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/*=========================
TABLET
=========================*/

@media (max-width:991px) {

  .benefits-grid {
    grid-template-columns: 1fr;
  }

}

/*=========================
MÓVIL
=========================*/

@media (max-width:767px) {

  .benefits-sale-section h2 {
    font-size: 2rem;
  }

  .benefit-item {
    padding: 16px;
  }

}

/*=====================================
SECCIONES GARANTÍA Y TESTIMONIOS
=====================================*/


.testimonials-section {
  background: var(--background-color);
}



/*=========================
LISTADO GARANTÍA
=========================*/

.guarantee-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.guarantee-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: var(--default-color);
  line-height: 1.7;
}

.guarantee-list li i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.guarantee-note {
  margin-top: 30px;
  padding: 24px;
  border-left: 4px solid var(--accent-color);
  background: rgba(0, 144, 54, .04);
  border-radius: 0 12px 12px 0;
}

.guarantee-note p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.9;
}

/*=========================
IMÁGENES
=========================*/

.content-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

/*=====================================
TESTIMONIOS SWIPER
=====================================*/

.testimonials-section {
  background: var(--background-color);
}

.testimonials-section h2 {
  color: var(--heading-color);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 30px;
}

.content-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.testimonialsSwiper {
  padding-bottom: 50px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  transition: .3s;
}

.testimonial-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.testimonial-card i {
  display: block;
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.testimonial-card p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.9;
  font-size: 1.05rem;
}

.testimonialsSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d6d6d6;
  opacity: 1;
}

.testimonialsSwiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

@media (max-width:991px) {

  .testimonial-card {
    padding: 28px;
  }

}

@media (max-width:767px) {

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-card p {
    font-size: 1rem;
  }

}

/*=====================================
SWIPER NAVIGATION
=====================================*/

.testimonialsSwiper {
  position: relative;
  padding-inline: 60px;
}

.testimonialsSwiper .swiper-button-next,
.testimonialsSwiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--contrast-color);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  transition: all .3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.testimonialsSwiper .swiper-button-next:hover,
.testimonialsSwiper .swiper-button-prev:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.testimonialsSwiper .swiper-button-next::after,
.testimonialsSwiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.testimonialsSwiper .swiper-button-prev {
  left: 0;
}

.testimonialsSwiper .swiper-button-next {
  right: 0;
}

/* Estado deshabilitado */

.testimonialsSwiper .swiper-button-disabled {
  opacity: .35;
  pointer-events: none;
}

/*=========================
TABLET
=========================*/

@media (max-width:991px) {

  .testimonialsSwiper {
    padding-inline: 50px;
  }

  .testimonialsSwiper .swiper-button-next,
  .testimonialsSwiper .swiper-button-prev {
    width: 42px;
    height: 42px;
  }

}

/*=========================
MÓVIL
=========================*/

@media (max-width:767px) {

  .testimonialsSwiper {
    padding-inline: 0;
    padding-bottom: 60px;
  }

  .testimonialsSwiper .swiper-button-prev {
    left: calc(50% - 55px);
    top: auto;
    bottom: 0;
  }

  .testimonialsSwiper .swiper-button-next {
    right: calc(50% - 55px);
    top: auto;
    bottom: 0;
  }

}

.section-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}



.mini-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 30px 0 20px;
  color: var(--heading-color);
}

/* Opciones de renta */

.rental-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.option-card {
  text-align: center;
  padding: 20px;
  border: 1px solid rgba(0, 144, 54, .25);
  border-radius: 16px;
  font-weight: 600;
}

/* Caja informativa */

.info-box {
  background: rgba(0, 144, 54, .05);
  border-left: 4px solid var(--accent-color);
  padding: 25px;
  border-radius: 12px;
}

.info-box a {
  color: var(--accent-color);
  font-weight: 700;
}

/* Entregas */

.delivery-box {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
}

.delivery-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 25px;
}

.feature-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: center;
}

/* Requisitos y cobertura */

.requirements-card,
.coverage-card {
  max-width: 900px;
  margin: auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 40px;
}

.requirement-icon,
.coverage-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

/* Regiones */

.regions-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.region-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 120px;
  padding: 20px;
  border: 1px solid rgba(0, 144, 54, .5);
  text-decoration: none;
  color: var(--heading-color);
  transition: .3s;
}

.region-card:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Seguridad */

.compliance-list {
  padding-left: 20px;
}

.compliance-list li {
  margin-bottom: 12px;
}

@media(max-width:991px) {

  .rental-options {
    grid-template-columns: 1fr;
  }

  .regions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:767px) {

  .delivery-features {
    grid-template-columns: 1fr;
  }

  .regions-grid {
    grid-template-columns: 1fr;
  }

}

/*=====================================
GALERÍA DE PROYECTOS
=====================================*/

.project-gallery {
  background: var(--background-color);
}

.gallerySwiper {
  position: relative;
  padding-inline: 60px;
  padding-bottom: 60px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: all .4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/*=====================================
PAGINACIÓN
=====================================*/

.gallerySwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d6d6d6;
  opacity: 1;
}

.gallerySwiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/*=====================================
FLECHAS
=====================================*/

.gallerySwiper .swiper-button-next,
.gallerySwiper .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  transition: .3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.gallerySwiper .swiper-button-next:hover,
.gallerySwiper .swiper-button-prev:hover {
  background: var(--accent-color);
  color: #fff;
}

.gallerySwiper .swiper-button-next::after,
.gallerySwiper .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.gallerySwiper .swiper-button-prev {
  left: 0;
}

.gallerySwiper .swiper-button-next {
  right: 0;
}

/*=====================================
TABLET
=====================================*/

@media (max-width:991px) {

  .gallerySwiper {
    padding-inline: 50px;
  }

  .gallery-item img {
    height: 280px;
  }

}

@media (max-width:767px) {

  .gallerySwiper {
    padding-inline: 0;
    padding-bottom: 80px;
  }

  .gallery-item img {
    height: 250px;
  }

  .gallerySwiper .swiper-button-prev {
    left: calc(50% - 55px);
    top: auto;
    bottom: 0;
  }

  .gallerySwiper .swiper-button-next {
    right: calc(50% - 55px);
    top: auto;
    bottom: 0;
  }

}

/* NAV TABS */

.multidirectional-nav {
  gap: 15px;
}

.multidirectional-nav .nav-link {
  text-align: left;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 18px;
  color: var(--heading-color);
  font-weight: 600;
  background: #fff;
}

.multidirectional-nav .nav-link.active {
  background: transparent;
  border-color: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.tab-content {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 35px;
}

/* TABLAS */

.product-specs-table {
  margin-bottom: 25px;
}

.product-specs-table th {
  width: 35%;
  font-weight: 700;
}

/* MEDIDAS */

.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-grid span {
  padding: 10px 18px;
  border: 1px solid rgba(0, 144, 54, .3);
  border-radius: 30px;
}

/* LISTADOS */

.technical-list {
  margin: 0;
  padding-left: 20px;
}

.technical-list li {
  margin-bottom: 15px;
}

.components-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.components-grid div {
  border: 1px solid rgba(0, 144, 54, .25);
  border-radius: 12px;
  padding: 15px;
  background: #fff;
}

/* IMÁGENES */

.section-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

/* CAJA DE SERVICIO */

.service-box {
  margin-top: 30px;
  padding: 30px;
  background: rgba(0, 144, 54, .05);
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
}

.service-box h3 {
  margin-bottom: 15px;
  color: var(--heading-color);
}

/* RESPONSIVE */

@media(max-width:767px) {

  .components-grid {
    grid-template-columns: 1fr;
  }

  .tab-content {
    padding: 25px;
  }

}

.fas-table {
  border: 1px solid #e5e5e5;
  background: #fff;
  margin: 0;
  text-align: center;
}

.fas-table th {
  white-space: nowrap;
  background: var(--accent-color);
  color: #fff;
  font-weight: 700;
  border: none;
}

.fas-table tr td:first-child {
  font-weight: bold;
}

.fas-table td {
  white-space: nowrap;
  vertical-align: middle;
}

.fas-table td:nth-child(6) {
  white-space: normal;
  min-width: 100px;
}

.fas-table tbody tr:hover {
  background: rgba(0, 144, 54, .05);
}

.custom-accordion .accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 15px;
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: var(--heading-color);
  background: #fff;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--accent-color);
  color: #fff;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.spec-grid div {
  padding: 15px;
  background: #f8f8f8;
  border-radius: 10px;
}

.tech-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.tech-block {
  margin-bottom: 30px;
  padding: 25px;
  background: #fff;
  border-left: 4px solid var(--accent-color);
  border-radius: 12px;
}



@media(max-width:767px) {

  .spec-grid {
    grid-template-columns: 1fr;
  }


}
.technical-specs-section {
    background: var(--background-color);
}

.technical-main-image {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
}

.section-title {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.section-intro {
    color: var(--default-color);
    font-size: 1.05rem;
}

.spec-highlight {
    background: #fff;
    border: 1px solid rgba(0, 144, 54, .15);
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: .3s;
}

.spec-highlight:hover {
    transform: translateY(-4px);
}

.spec-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.spec-label {
    margin-top: 10px;
    font-size: .9rem;
    color: var(--default-color);
}

.technical-accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.technical-accordion .accordion-button {
    font-weight: 700;
    color: var(--heading-color);
    background: #fff;
}

.technical-accordion .accordion-button:not(.collapsed) {
    background: var(--accent-color);
    color: #fff;
}

.technical-accordion .accordion-button:focus {
    box-shadow: none;
}

.technical-accordion .accordion-body {
    padding: 25px;
}

.technical-accordion ul {
    margin-bottom: 0;
}

.sizes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.sizes-grid span {
    background: var(--surface-color);
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
}

.technical-cta {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--accent-color-industrial)
    );
    color: #fff;
    padding: 50px 30px;
    border-radius: 24px;
}

.technical-cta h3 {
    color: #fff;
}

@media (max-width: 991px) {

    .spec-number {
        font-size: 1.6rem;
    }

}
.caso-hidden {
    display: none;
}

#btn-ver-mas {
  border: 3px solid var(--accent-color);
  color: var(--contrast-color);
  background-color: var(--heading-color);
}