
@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Montserrat",  sans-serif;
  --nav-font: "Poppins",  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: #222222; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #333; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #0c449c; 
  --accent-color-cbps:#00943A;/* 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: #ffffff; /* 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. */
--electric-blue: #2EA3F2;
}

/* 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: #222222;  /* The default color of the main navmenu links */
  --nav-hover-color: #0c449c; /* 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: #222222; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #0c449c; /* 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: #F7F8FB;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0c449c;
  --default-color: #e3e3e3;
  --heading-color: #ffffff;
  --accent-color: #bdb5b5;
  --surface-color: #252525;
  --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);
  font-size: 1rem;
}

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

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

p {
   text-align: justify;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 48px;
  margin-right: 8px;
}

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

.scrolled .header {
  isolation: isolate;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.scrolled .header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: none;
  z-index: -1;
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 8px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 11px;
    line-height: 0;
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  /* .navmenu>ul>li>a::after {
    content: "";
    position: absolute;
    left: 18px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
  } */

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

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

  .navmenu>ul>li:hover>a i {
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 20px;
    background: var(--nav-dropdown-background-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 20px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.18);
    min-width: 220px;
    overflow: visible;
  }

  .navmenu .dropdown ul li {
    min-width: 100%;
  }

  .navmenu .dropdown ul a {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
  }

  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateY(-50%);
  }

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

  .navmenu .dropdown ul a i {
    font-size: 10px;
  }

  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 24px;
  }

  .navmenu .dropdown ul a:hover::before {
    width: 12px;
  }

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

  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover>a::before {
    width: 12px;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: -20px;
    left: auto;
    right: calc(100% + 10px);
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: -20px;
    right: calc(100% + 10px);
    visibility: visible;
  }
}

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

  .mobile-nav-toggle:hover {
    color: var(--accent-color);
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 0 0 0;
    padding: 30px 24px;
    margin: 0;
    border-radius: 0;
    background-color: var(--nav-mobile-background-color);
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    transition: 0.3s ease;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 16px 0;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }

  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    color: var(--accent-color);
  }

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

  .navmenu a:hover::before {
    width: 40px;
  }

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

  .navmenu .active::before,
  .navmenu .active:focus::before {
    width: 40px;
  }

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

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0 10px 20px;
    margin: 0;
    background: transparent;
    border-left: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    transition: all 0.3s ease-in-out;
    box-shadow: none;
    inset: unset;
  }

  .navmenu .dropdown ul a {
    padding: 12px 0;
    font-size: 16px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 95%);
  }

  .navmenu .dropdown ul ul {
    padding-left: 16px;
    border-left-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
  }

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

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 14px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s ease;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: var(--background-color);
  color: var(--default-color);
  font-size: 15px;
  padding: 40px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.footer .footer-top a {
  color: var(--contrast-color);
}

.footer .footer-top a:hover {
  color: var(--electric-blue);
}


.footer .footer-main {
  margin-bottom: 80px;
}

.footer .brand-section .logo {
  text-decoration: none;
}

.footer .footer-about .logo img {
margin-right: 6px;
  background-color: var(--contrast-color);
  border-radius: 10px;
  padding: 1rem;
  max-width: 150px;
}

.footer .brand-section .logo .sitename {
  font-family: var(--heading-font);
  font-size: 32px;
  font-weight: 300;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.footer .brand-section .brand-description {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-weight: 300;
  max-width: 380px;
  margin: 0;
}

.footer .brand-section .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.footer .brand-section .contact-info .contact-item i {
  font-size: 16px;
  color: var(--accent-color);
  margin-right: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer .brand-section .contact-info .contact-item span {
  line-height: 1.6;
}

.footer .footer-nav-wrapper {
  padding-left: 60px;
}

@media (max-width: 991px) {
  .footer .footer-nav-wrapper {
    padding-left: 0;
    margin-top: 50px;
  }
}

.footer .nav-column {
  margin-bottom: 40px;
}

.footer .nav-column h6 {
  font-family: var(--heading-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}

.footer .nav-column .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer .nav-column .footer-nav a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-decoration: none;
  font-size: 15px;
  font-weight: 300;
  transition: all 0.3s ease;
  line-height: 1.4;
}

.footer .nav-column .footer-nav a:hover {
  color: var(--accent-color);
  transform: translateX(4px);
}

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

.footer .footer-social .newsletter-section h5 {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 300;
  color: var(--heading-color);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}

.footer .footer-social .newsletter-section p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  margin: 0;
  line-height: 1.6;
  max-width: 340px;
}

.footer .footer-social .social-section {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 991px) {
  .footer .footer-social .social-section {
    justify-content: flex-start;
    margin-top: 30px;
  }
}

.footer .footer-social .social-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

@media (max-width: 576px) {
  .footer .footer-social .social-links {
    gap: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-social .social-links .social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link span {
  transition: all 0.3s ease;
}

.footer .footer-social .social-links .social-link:hover {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.footer .footer-social .social-links .social-link:hover i {
  transform: scale(1.1);
}

.footer .footer-bottom {
  padding: 30px 0;
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  font-weight: 300;
}

.footer .footer-bottom .copyright p .sitename {
  color: var(--heading-color);
  font-weight: 400;
}

.footer .footer-bottom .legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 20px;
    flex-wrap: wrap;
  }
}

.footer .footer-bottom .legal-links a {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

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

.footer .footer-bottom .legal-links .credits {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 576px) {
  .footer .footer-bottom .legal-links .credits {
    margin-left: 0;
    padding-left: 0;
    border-left: none;
    width: 100%;
    margin-top: 12px;
  }
}

.footer .footer-bottom .legal-links .credits a {
  color: var(--accent-color);
  font-size: 12px;
}

.footer .footer-bottom .legal-links .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 0 0;
  }

  .footer .brand-section {
    text-align: center;
    margin-bottom: 50px;
  }

  .footer .brand-section .brand-description {
    max-width: none;
  }

  .footer .brand-section .contact-info {
    text-align: left;
    display: inline-block;
  }

  .footer .footer-nav-wrapper .nav-column {
    text-align: left;
  }

  .footer .footer-nav-wrapper .nav-column h6 {
    margin-bottom: 16px;
  }

  .footer .footer-nav-wrapper .nav-column .footer-nav {
    gap: 10px;
  }

  .footer .footer-social {
    text-align: center;
  }

  .footer .footer-social .newsletter-section p {
    max-width: none;
  }

  .footer .footer-social .social-links {
    justify-content: center;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .footer-bottom .legal-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color-cbps);
  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: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 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: 60px 0;
  scroll-margin-top: 76px;
  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: 2.8rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.5rem;
  }
}

.section-title p {
  font-size: 1rem;
  line-height: 1.8;

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 90px 0 20px;
  background-color: var(--background-color);
  overflow: hidden;
}

.hero.banner1::before, .hero.banner2::before, .hero.banner3::before, .hero.banner4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}

.hero.banner1::before {
  background-image: url("../img/hero-aire-de-precision-banner-proyecto.webp");
}

.hero.banner2::before {
  background-image: url("../img/hero-aire-de-precision-banner-proyectos.webp");
}

.hero.banner3::before {
  background-image: url("../img/hero-clima-de-precision-banner-proyectos.webp");
}

.hero.banner4::before {
  background-image: url("../img/hero-equipos-de-aire-acondicionado-precisión-banner-proyecto.webp");
}


.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.hero .hero-content h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .hero .hero-content h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 22px;
    text-align: center;
  }
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}


@media (max-width: 576px) {
  .hero .hero-buttons {
    gap: 10px;
  }
}

.hero .hero-buttons .btn-primary, .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary {
background-color: var(--accent-color);
  color: var(--contrast-color);
}

.btn-primary {
background-color: var(--accent-color-cbps);
  color: var(--contrast-color);
}

.hero .hero-buttons .btn-primary:hover, .btn-primary:hover {

  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
}

.btn-primary:hover {
   background-color: color-mix(in srgb, var(--accent-color-cbps), black 15%);
}

.hero .hero-buttons .btn-secondary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--background-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover, .btn-secondary:hover {
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }

   .hero .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 575px){
  .hero .hero-buttons .btn-secondary, .footer .btn-secondary, .hero .hero-buttons .btn-primary {
    font-size: .8rem;
  }

  .footer .btn-secondary {
    margin-bottom: 1rem;
  }
}

.hero .trust-badges .badge-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 50%;
  width: 54px;
  height: 54px;
  background-color: var(--accent-color);
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}

.hero .trust-badges .badge-item img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  max-width: 40px;
  object-fit: contain;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .hero .trust-badges .badge-item::before {
    width: 50px;
    height: 50px;
  }

  .hero .trust-badges .badge-item img {
    width: 38px;
    height: 38px;
    max-width: 38px;
  }
}


.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
    font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.25;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); */
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}


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

  .hero .hero-content {
    margin-bottom: 50px;
  }
}



/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .intro-row {
  margin-bottom: 0;
}


.why-us .intro-content {
  padding-right: 40px;
}

@media (max-width: 992px) {
  .why-us .intro-content {
    padding-right: 0;
    text-align: center;
  }
}

.why-us .intro-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent-color);
  margin-bottom: 18px;
}

.why-us .intro-content .eyebrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

@media (max-width: 992px) {
  .why-us .intro-content .eyebrow::before {
    display: none;
  }
}

.why-us .intro-content h2 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 22px;
}

.why-us .intro-content h2 em {
  font-style: italic;
  color: var(--accent-color);
  font-weight: 700;
}

@media (max-width: 768px) {
  .why-us .intro-content h2 {
    font-size: 2rem;
  }
}

.why-us .intro-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 30px;
}

.why-us .intro-content .learn-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-color);
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 60%);
  padding-bottom: 3px;
  transition: all 0.3s ease;
}

.why-us .intro-content .learn-link i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.why-us .intro-content .learn-link:hover {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}

.why-us .intro-content .learn-link:hover i {
  transform: translateX(5px);
}

.why-us .visual-panel {
  position: relative;
  padding: 20px 20px 55px 0;
}



.why-us .visual-panel img {
  border-radius: 14px;
  width: 100%;
  position: relative;
  z-index: 1;
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 84%);
}

.why-us .visual-panel .badge-metric {
  position: absolute;
  bottom: 20px;
  left: 30px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 16px 22px;
  border-radius: 10px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.why-us .visual-panel .badge-metric .metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us .visual-panel .badge-metric .metric-label {
  font-size: 0.7rem;
  opacity: 0.9;
  margin-top: 4px;
  white-space: nowrap;
}

.why-us .visual-panel .badge-years {
  position: absolute;
  top: 50px;
  left: 50px;
  background-color: var(--surface-color);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-left: 4px solid var(--accent-color);
  z-index: 2;
}

.why-us .visual-panel .badge-years .years-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

.why-us .visual-panel .badge-years .years-label {
  font-size: 0.65rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-top: 4px;
  white-space: nowrap;
  font-weight: 600;
}

.why-us .features-row {
  position: relative;
}

.why-us .features-row::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 12px;
  right: 12px;
  height: 1px;
  background: linear-gradient(to right, transparent, color-mix(in srgb, var(--default-color), transparent 80%), transparent);
}

.why-us .feat-card {
  background-color: var(--surface-color);
  border-radius: 14px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 93%);
  border-bottom: 3px solid transparent;
  height: 100%;
  transition: all 0.3s ease;
}

.why-us .feat-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom-color: var(--accent-color);
}

.why-us .feat-card:hover .feat-icon {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 14px;
}

.why-us .feat-card:hover .feat-num {
  opacity: 0.06;
}

.why-us .feat-card .feat-icon {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.why-us .feat-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-us .feat-card p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 38%);
  margin: 0;
}

.why-us .feat-card .feat-num {
  position: absolute;
  bottom: 12px;
  right: 20px;
  font-size: 4.2rem;
  font-weight: 800;
  font-family: var(--heading-font);
  color: var(--heading-color);
  opacity: 0.032;
  line-height: 1;
  transition: opacity 0.3s ease;
  pointer-events: none;
  user-select: none;
}


button {
  border: transparent;
}


.ventajas {
background: #5D81B9;
background: linear-gradient(270deg, rgba(93, 129, 185, 1) 52%, rgba(37, 70, 122, 1) 100%);
  border-radius: 4px;
  color: var(--contrast-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 */
}

/* =========================================================
APLICACIONES
========================================================= */

.applications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;

  /* margin-top: 60px; */
}

.application-item {
  position: relative;
  padding: 30px 20px;
  text-align: center;
}

/* Separador entre elementos */

.application-item::after {
  content: '';
  position: absolute;
  top: 15%;
  right: 0;
  width: 1px;
  height: 70%;
  background-color: var(--border-color);
}

.application-item:last-child::after {
  display: none;
}

/* Círculo de fondo */

.application-item::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  transform: translateX(-50%);
}

/* Bootstrap Icons */

.application-item i {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 24px;
  font-size: 34px;
  color: var(--accent-color);
}

/* Imagen */

.application-item img {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 38px;
  height: 78px;
  margin-bottom: 24px;
  object-fit: contain;
}

/* Títulos */

.application-item h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
}

/* =========================
BRANDS
========================= */

.brands-slider {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
}

.brand-item img {
max-height: 90px;
  opacity: 1;
  transition: .3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: .5rem;
  border-radius: 1rem;
}

/* .brand-item img:hover {
    opacity: 1;
} */

/* =========================================================
METRICS
========================================================= */

/* .metrics-section {
  background-color: var(--light-background);
} */

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

.metric-item {
  position: relative;
  text-align: center;
}

.metric-item::after {
  content: '';

  position: absolute;
  top: 10%;
  right: -15px;

  width: 1px;
  height: 80%;

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

.metric-item:last-child::after {
  display: none;
}

.metric-item h3 {
  margin-bottom: 10px;

  font-size: 58px;
  font-weight: 800;

  color: var(--accent-color-cbps);
}

.metric-item p {
  margin: 0;
  color: var(--default-color);
  text-align: center;
}

/* =========================================================
MODELS SECTION
========================================================= */

.precision-models-section {
    position: relative;
    overflow: hidden;

    background-color: var(--background-color);
}

.section-description {
    max-width: 760px;
    margin: 0 auto;

    color: var(--default-color);
    opacity: .82;
}


/* =========================================================
NAV TABS
========================================================= */

.precision-tabs {
    gap: 14px;
    margin-bottom: 60px;
}

.precision-tabs .nav-link {
    display: flex;
    align-items: center;
    gap: 10px;

    padding: 14px 26px;

    border-radius: 100px;
    border: 1px solid rgba(12, 68, 156, 0.12);

    background-color: transparent;

    color: var(--heading-color);

    font-size: 15px;
    font-weight: 600;

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

.precision-tabs .nav-link i {
    font-size: 18px;
}

.precision-tabs .nav-link:hover {
    border-color: rgba(12, 68, 156, 0.32);

    background-color: rgba(12, 68, 156, 0.04);

    color: var(--accent-color);

    transform: translateY(-2px);
}

.precision-tabs .nav-link.active {
    background-color: var(--accent-color);
    border-color: var(--electric-blue);

    color: var(--contrast-color);

    box-shadow:
        0 10px 24px rgba(12, 68, 156, 0.18);
}


/* =========================================================
GRID
========================================================= */

.models-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}


/* =========================================================
CARD
========================================================= */

.precision-model-card {
    position: relative;

    overflow: hidden;

    border-radius: 28px;

    background-color: var(--surface-color);

    border: 1px solid rgba(46, 60, 84, 0.08);

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

.precision-model-card:hover {
    transform: translateY(-8px);

    border-color: rgba(12, 68, 156, 0.14);

    box-shadow:
        0 28px 60px rgba(15, 32, 56, 0.10);
}


/* =========================================================
IMAGE AREA
========================================================= */

.model-image-wrapper {
    position: relative;

    padding: 48px 48px 20px;

    background:
        linear-gradient(
            to bottom,
            rgba(12, 68, 156, 0.03),
            rgba(12, 68, 156, 0)
        );
}

.model-image-wrapper img {
    width: 100%;
    height: 320px;

    object-fit: contain;

    transition:
        transform .55s ease;
}

.precision-model-card:hover .model-image-wrapper img {
    transform: scale(1.03);
}


/* =========================================================
BADGE
========================================================= */

.model-badge {
    position: absolute;
    top: 24px;
    left: 24px;

    padding: 8px 14px;

    border-radius: 100px;

    background-color: rgba(12, 68, 156, 0.08);

    color: var(--accent-color);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}


/* =========================================================
BODY
========================================================= */

.model-card-body {
    padding: 34px;
}


/* =========================================================
HEADER
========================================================= */

.model-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;

    margin-bottom: 18px;
}

.model-header h3 {
    margin: 0;

    font-size: 28px;
    line-height: 1.15;
    font-weight: 700;

    color: var(--heading-color);
}

.model-capacity {
    flex-shrink: 0;

    padding: 8px 12px;

    border-radius: 12px;

    background-color: rgba(12, 68, 156, 0.06);

    color: var(--accent-color-cbps);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
DESCRIPTION
========================================================= */

.model-description {
    margin-bottom: 28px;

    color: var(--default-color);
    opacity: .85;
}


/* =========================================================
QUICK SPECS
========================================================= */

.model-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;

    margin-bottom: 30px;
}

.spec-item {
    padding: 16px;

    border-radius: 16px;

    background-color: rgba(12, 68, 156, 0.03);

    border: 1px solid rgba(12, 68, 156, 0.06);
}

.spec-item span {
    display: block;
    margin-bottom: 4px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: .03em;
    text-transform: uppercase;

    color: var(--default-color);
    opacity: .7;
}

.spec-item strong {
    color: var(--heading-color);

    font-size: 15px;
    font-weight: 700;
}


/* =========================================================
FEATURES
========================================================= */

.model-features {
    display: flex;
    flex-direction: column;
    gap: 12px;

    margin: 0 0 34px;
    padding: 0;

    list-style: none;
}

.model-features li {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--default-color);
}

.model-features li i {
    color: var(--accent-color-cbps);

    font-size: 18px;
}


/* =========================================================
ACTIONS
========================================================= */

.model-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn-model-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 14px;

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

    color: var(--contrast-color);

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;

    transition:
        background-color .35s ease,
        transform .35s ease;
}

.btn-model-primary:hover {
    background-color: #08367d;

    color: var(--contrast-color);

    transform: translateY(-2px);
}

.btn-model-link {
    position: relative;

    color: var(--accent-color);

    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.btn-model-link::after {
    content: '';

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 100%;
    height: 1px;

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

    transform: scaleX(0);
    transform-origin: left;

    transition: transform .35s ease;
}

.btn-model-link:hover::after {
    transform: scaleX(1);
}


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

@media (max-width: 1199px) {

    .models-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {

    .precision-tabs {
        flex-wrap: wrap;
        overflow-x: auto;

        padding-bottom: 10px;
        margin-bottom: 0;
    }

    .precision-tabs::-webkit-scrollbar {
        height: 4px;
    }

    .precision-tabs::-webkit-scrollbar-thumb {
        background-color: rgba(12, 68, 156, 0.22);
        border-radius: 100px;
    }

    .precision-tabs .nav-link {
        white-space: nowrap;
    }

    .model-image-wrapper {
        padding: 40px 28px 10px;
    }

    .model-image-wrapper img {
        height: 240px;
    }

    .model-card-body {
        padding: 28px;
    }

    .model-header {
        flex-direction: column;
    }

    .model-header h3 {
        font-size: 24px;
    }

    .model-specs {
        grid-template-columns: 1fr;
    }

    .model-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-model-primary {
        width: 100%;
    }

    .btn-model-link {
        text-align: center;
    }
}

/* =========================================================
CTA BANNER
========================================================= */

.cta-banner {
  position: relative;

  background:
    linear-gradient(
      rgba(10, 18, 32, 0.82),
      rgba(10, 18, 32, 0.82)
    ),
    url('../img/banner-cta.webp') center/cover no-repeat;

  color: var(--contrast-color);
}

.cta-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-banner h2 {
  margin-bottom: 12px;

  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;

  color: var(--contrast-color);
}

.cta-banner p {
  margin: 0;
  color: rgba(255,255,255,.82);
}


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

@media (max-width: 991px) {

  section {
    padding: 80px 0;
  }

  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metrics-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-banner-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-floating-card {
    position: relative;
    top: auto;
    right: auto;

    margin-top: 30px;
  }
}

@media (max-width: 767px) {

  .hero-title {
    font-size: 2.7rem;
  }

  .applications-grid,
  .metrics-wrapper {
    grid-template-columns: 1fr;
  }

  .application-item::after,
  .metric-item::after {
    display: none;
  }

  .feature-item {
    min-width: calc(50% - 12px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
  }
}


.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;
}

/*--------------------------------------------------------------
# Related Solutions / Graphic Menu
--------------------------------------------------------------*/

.explora-mas {
  max-width: 1200px;
}

.explora-mas .section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
  text-align: center;
}

.explora-mas .section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.explora-mas .section-heading h2 {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.explora-mas .section-heading p {
  margin: 0;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 25%
  );
  font-size: 1rem;
  line-height: 1.7;
}


/*--------------------------------------------------------------
# Solution Card
--------------------------------------------------------------*/

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  border-radius: 8px;
  color: var(--default-color);
  text-decoration: none;
  box-shadow: 0 5px 25px color-mix(
    in srgb,
    var(--default-color),
    transparent 94%
  );
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.solution-card:hover {
  color: var(--default-color);
  transform: translateY(-6px);
  border-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 55%
  );
  box-shadow: 0 16px 40px color-mix(
    in srgb,
    var(--default-color),
    transparent 86%
  );
}


/*--------------------------------------------------------------
# Card Image
--------------------------------------------------------------*/

.solution-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--background-color);
}

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

.solution-card:hover .solution-card-image img {
  transform: scale(1.04);
}



/*--------------------------------------------------------------
# Card Body
--------------------------------------------------------------*/

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

.solution-card-body h3 {
  margin: 0 0 20px;
  color: var(--heading-color);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}


/*--------------------------------------------------------------
# Card CTA
--------------------------------------------------------------*/

.solution-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--accent-color);
  font-size: 0.82rem;
  font-weight: 700;
  transition: gap 0.3s ease;
}

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

.solution-card:hover .solution-card-link {
  gap: 11px;
}

.solution-card:hover .solution-card-link i {
  transform: translateX(2px);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .explora-mas .section-heading {
    margin-bottom: 32px;
  }

  .explora-mas .section-heading h2 {
    font-size: 1.75rem;
  }

  .solution-card-body {
    padding: 20px;
  }

}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/

.why-us {
  overflow: hidden;
}


/*--------------------------------------------------------------
# Intro Content
--------------------------------------------------------------*/

.why-us .intro-content {
  padding-right: 35px;
}

.why-us .intro-content h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  /* margin-bottom: 35px; */
  color: var(--heading-color);
}



/*--------------------------------------------------------------
# Benefits Accordion
--------------------------------------------------------------*/

.why-us .benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-us .benefit-item {
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

/* Header */

.why-us .benefit-header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 5px;
  border: 0;
  background: transparent;
  color: var(--heading-color);
  text-align: left;
  font: inherit;
  cursor: pointer;
}

/* Check icon */

.why-us .benefit-header > i:first-child {
  flex-shrink: 0;
  font-size: 21px;
  color: var(--accent-color-cbps);
}

/* Benefit title */

.why-us .benefit-header > span {
  flex: 1;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

/* Chevron */

.why-us .benefit-header .benefit-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */

.why-us .benefit-header:not(.collapsed) .benefit-arrow {
  transform: rotate(180deg);
}

/* Content */

.why-us .benefit-content {
  padding: 0 42px 18px 40px;
}

.why-us .benefit-content p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* Hover */

.why-us .benefit-header:hover > span {
  color: var(--accent-color-cbps);
}

.why-us .benefit-header:hover .benefit-arrow {
  color: var(--accent-color-cbps);
}

/* Keyboard focus */

.why-us .benefit-header:focus-visible {
  outline: 2px solid var(--electric-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/*--------------------------------------------------------------
# Benefits Accordion Responsive
--------------------------------------------------------------*/

@media (max-width: 767px) {

  .why-us .benefits-list {
    gap: 5px;
  }

  .why-us .benefit-header {
    gap: 11px;
    padding: 14px 2px;
  }

  .why-us .benefit-header > i:first-child {
    font-size: 19px;
  }

  .why-us .benefit-header > span {
    font-size: 1rem;
  }

  .why-us .benefit-content {
    padding: 0 30px 16px 32px;
  }

  .why-us .benefit-content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

}

/*--------------------------------------------------------------
# Image Gallery
--------------------------------------------------------------*/

.why-us .visual-panel {
  position: relative;
  padding: 15px 0 15px 15px;
}

/* Decorative blue corner */

.why-us .visual-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 90px;
  height: 90px;
  border-top: 3px solid var(--electric-blue);
  border-right: 3px solid var(--electric-blue);
  border-radius: 0 14px 0 0;
  z-index: 10;
}

/* Main image */

.why-us .gallery-main {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 14px;
  background-color: var(--surface-color);
}

.why-us .gallery-main img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-us .gallery-main:hover img {
  transform: scale(1.03);
}

/* Secondary images */

.why-us .gallery-secondary {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.why-us .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--surface-color);
}

.why-us .gallery-item img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.why-us .gallery-item:hover img {
  transform: scale(1.06);
}

.why-us .gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}

.why-us .gallery-trigger:focus-visible {
  outline: 3px solid var(--electric-blue);
  outline-offset: 4px;
  border-radius: 14px;
}

/*--------------------------------------------------------------
# Description
--------------------------------------------------------------*/

.why-us .intro-description {
  max-width: 1100px;
  margin: 10px auto 0;
}

.why-us .intro-description p {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
}

.why-us .intro-description p:last-of-type {
  margin-bottom: 28px;
}

.why-us .intro-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1199px) {

  .why-us .intro-content {
    padding-right: 15px;
  }

  .why-us .intro-content h1 {
    font-size: 2.35rem;
  }

  .why-us .benefits-list {
    gap: 20px;
  }

  .why-us .benefit-item p {
    font-size: 0.92rem;
  }
}

@media (max-width: 991px) {

 
  .why-us .intro-content {
    padding-right: 0;
  }

  .why-us .intro-content h1 {
    font-size: 2.3rem;
  
  }

  .why-us .visual-panel {
    padding: 15px 0 0;
  }

  .why-us .gallery-main img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 767px) {

  .why-us .intro-content h1 {
    font-size: 2rem;
  }

  .why-us .benefits-list {
    gap: 22px;
  }

  .why-us .benefit-item {
    gap: 12px;
  }

  .why-us .benefit-item > i {
    font-size: 19px;
  }

  .why-us .benefit-item h3 {
    font-size: 1rem;
  }

  .why-us .benefit-item p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .why-us .visual-panel::before {
    width: 65px;
    height: 65px;
  }

  .why-us .gallery-secondary {
    gap: 8px;
  }

  .why-us .gallery-main {
    margin-bottom: 8px;
  }

  .why-us .intro-description {
    margin-top: 5px;
  }

  .why-us .intro-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

@media (max-width: 575px) {

  .why-us .intro-content h1 {
    font-size: 1.85rem;
  }

  .why-us .gallery-secondary {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-us .gallery-main img {
    aspect-ratio: 4 / 5;
  }
}

/*--------------------------------------------------------------
# Clientes Section
--------------------------------------------------------------*/

.clientes {
  overflow: hidden;
}

.clientes .clientes-wrap {
  position: relative;
}

.clientes .clientes-slider .swiper-wrapper {
  align-items: stretch;
}

.clientes .clientes-slider .swiper-slide {
  height: auto;
  display: flex;
}

.clientes .cliente-logo {
  width: 100%;
  min-height: 150px;
  padding: 25px 30px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.clientes .cliente-logo img {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 80px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.clientes .cliente-logo:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-3px);
}

.clientes .cliente-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.clientes .clientes-controls {
  margin-top: 32px;
  gap: 16px;
}

.clientes .clientes-btn-prev,
.clientes .clientes-btn-next {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  border-radius: 8px;
  background: transparent;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.clientes .clientes-btn-prev:hover,
.clientes .clientes-btn-next:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.clientes .clientes-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.clientes .clientes-pagination .swiper-pagination-bullet {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background-color: color-mix(in srgb, var(--default-color), transparent 78%);
  opacity: 1;
  margin: 0;
  transition: all 0.3s ease;
}

.clientes .clientes-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 44px;
  background-color: var(--accent-color);
}

@media (max-width: 768px) {

  .clientes .cliente-logo {
    min-height: 130px;
    padding: 20px;
  }

  .clientes .cliente-logo img {
    max-width: 150px;
    height: 65px;
  }

  .clientes .clientes-controls {
    margin-top: 26px;
  }

}

@media (max-width: 576px) {

  .clientes .cliente-logo {
    min-height: 120px;
    padding: 18px 15px;
  }

  .clientes .cliente-logo img {
    max-width: 130px;
    height: 55px;
  }

  .clientes .clientes-controls {
    margin-top: 22px;
    gap: 12px;
  }

  .clientes .clientes-btn-prev,
  .clientes .clientes-btn-next {
    width: 38px;
    height: 38px;
    font-size: 0.88rem;
  }

}

/*--------------------------------------------------------------
# Tipos de Aire Acondicionado de Precisión
--------------------------------------------------------------*/

.precision-types {
  background-color: var(--background-color);
}


/* Main selector */

.precision-selector {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 5px;
  align-items: stretch;
  margin-top: 35px;
}


/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/

.precision-tabs {
  display: flex;
  flex-direction: column;
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.precision-tab {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 105px;
  padding: 18px 20px;
  border: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  background: transparent;
  color: var(--default-color);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.precision-tab:first-child {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.precision-tab:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.precision-tab-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  transition: color 0.3s ease;
}

.precision-tab-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.precision-tab-content strong {
  font-size: 0.95rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--heading-color);
}

.precision-tab-content small {
  font-size: 0.76rem;
  line-height: 1.45;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.precision-tab > i {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 45%);
  transition: transform 0.3s ease, color 0.3s ease;
}


/* Active tab */

.precision-tab.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.precision-tab.active .precision-tab-number,
.precision-tab.active .precision-tab-content strong,
.precision-tab.active .precision-tab-content small,
.precision-tab.active > i {
  color: var(--contrast-color);
}

.precision-tab.active > i {
  transform: translateX(4px);
}

.precision-tab.active:hover {
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.precision-content {
  position: relative;
  min-width: 0;
}

.precision-panel {
   display: none;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  grid-template-rows: auto 1fr;
  gap: 10px;
  align-items: center;

  min-height: 510px;
  padding: 28px;

  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 14px;
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 94%);
}


.precision-panel.active {
  display: grid;
  animation: precisionPanelFade 0.35s ease;
}

@keyframes precisionPanelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.precision-heading {
  grid-column: 1 / -1;
}

.precision-heading .precision-label {
  display: inline-block;
  margin-bottom: 10px;
}

.precision-heading h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--heading-color);
}


/*--------------------------------------------------------------
# Image
--------------------------------------------------------------*/



.precision-image img {
  transition: transform 0.5s ease;
}

.precision-panel:hover .precision-image img {
  transform: scale(1.025);
}


/*--------------------------------------------------------------
# Information
--------------------------------------------------------------*/

.precision-info {
  grid-column: 2;
  grid-row: 2;

  padding: 15px 15px 15px 0;
}

.precision-label {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent-color);
}

.precision-info h3 {
  margin-bottom: 22px;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--heading-color);
}

.precision-description {
  margin-bottom: 28px;
}

.precision-description p {
  margin-bottom: 17px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.precision-description p:last-child {
  margin-bottom: 0;
}


/* CTA */

.precision-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 20px;
  background-color: var(--accent-color-cbps);
  color: var(--contrast-color);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.precision-cta i {
  transition: transform 0.3s ease;
}

.precision-cta:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 78%);
}

.precision-cta:hover i {
  transform: translateX(4px);
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 1199px) {

  .precision-selector {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 30px;
  }

  .precision-panel {
    grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    padding: 22px;
  }

  .precision-image {
    height: 410px;
  }

  .precision-info h3 {
    font-size: 1.6rem;
  }

}


/*--------------------------------------------------------------
# Mobile / Small Tablet
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .precision-selector {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .precision-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 0;
    gap: 10px;
  }

  .precision-tab,
  .precision-tab:first-child {
    min-height: 95px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 8px;
  }

  .precision-panel {
    grid-template-columns: 1fr 1fr;
    min-height: 450px;
  }

  .precision-image {
    height: 390px;
  }

}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767px) {

  .precision-types .section-title p {
    line-height: 1.7;
  }

  .precision-selector {
    margin-top: 40px;
  }

  .precision-tabs {
    grid-template-columns: 1fr;
  }

  .precision-tab {
    min-height: 82px;
  }

  .precision-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 16px;
    min-height: auto;
       scroll-margin-top: 350px;
  }

  .precision-image {
    height: auto;
    order: 1;
    display: flex;
    justify-content: center;
  }

  .precision-info {
    grid-column: 1;
    order: 2;
    padding: 5px 5px 15px;
  }

  .precision-info h3 {
    font-size: 1.45rem;
  }

  .precision-description p {
    font-size: 0.92rem;
    line-height: 1.75;
  }

}


/*--------------------------------------------------------------
# Small Mobile
--------------------------------------------------------------*/

@media (max-width: 575px) {

  .precision-tab {
    grid-template-columns: 32px minmax(0, 1fr) 18px;
    gap: 10px;
    padding: 15px;
  }

  .precision-tab-content strong {
    font-size: 0.9rem;
  }

  .precision-tab-content small {
    display: none;
  }

  .precision-image {
    height: auto;
  }

  .precision-info h3 {
    font-size: 1.35rem;
  }

  .precision-cta {
    width: 100%;
    justify-content: center;
  }

}

/*--------------------------------------------------------------
# Aire de Precisión Section
--------------------------------------------------------------*/

.aire-precision {
  background-color: var(--background-color);
}

.aire-precision .section-heading {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.aire-precision .section-heading h2 {
  margin: 0;
  font-size: 2.3rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--heading-color);
}

.aire-precision-content {
  max-width: 1000px;
  margin: 0 auto;
}

.aire-precision-content p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--default-color);
}

.aire-precision-image {
  position: relative;
  margin: 35px 0;
  overflow: hidden;
  border-radius: 12px;
}

.aire-precision-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(
    in srgb,
    var(--accent-color),
    transparent 82%
  );
  border-radius: 12px;
  pointer-events: none;
}

.aire-precision-image img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.aire-precision-image:hover img {
  transform: scale(1.02);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 992px) {

  .aire-precision .section-heading h2 {
    font-size: 2rem;
  }

  .aire-precision-image img {
    height: 300px;
  }

}

@media (max-width: 768px) {

  .aire-precision .section-heading {
    text-align: left;
  }

  .aire-precision .section-heading h2 {
    font-size: 1.8rem;
  }

  .aire-precision-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .aire-precision-image {
    margin: 28px 0;
  }

  .aire-precision-image img {
    height: 240px;
  }

}

@media (max-width: 576px) {

  .aire-precision .section-heading h2 {
    font-size: 1.6rem;
  }

  .aire-precision-image img {
    height: 200px;
  }

}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/

.how-it-works {
  background-color: var(--surface-color);
}

.how-it-works .section-heading {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works .section-heading h2 {
  margin: 0;
  font-size: 2.3rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--heading-color);
}


/*--------------------------------------------------------------
# Function Cards
--------------------------------------------------------------*/

.how-it-works .precision-function-card {
  position: relative;
  height: 100%;
  padding: 34px 28px 30px;
  background-color: var(--background-color);
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.how-it-works .precision-function-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.how-it-works .precision-function-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 70%
  );
  box-shadow: 0 14px 35px color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
}

.how-it-works .precision-function-card:hover::before {
  transform: scaleX(1);
}


/*--------------------------------------------------------------
# Function Icon
--------------------------------------------------------------*/

.how-it-works .function-icon {
  position: relative;
  width: 76px;
  height: 76px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works .function-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 92%
  );
}

.how-it-works .function-icon img {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  object-fit: contain;
}


/*--------------------------------------------------------------
# Function Content
--------------------------------------------------------------*/

.how-it-works .function-content {
  position: relative;
}

.how-it-works .function-number {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.how-it-works .function-content h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
}

.how-it-works .function-content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.75;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 15%
  );
  text-align: center;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 1199px) {

  .how-it-works .precision-function-card {
    padding: 30px 24px;
  }

}

@media (max-width: 992px) {

  .how-it-works .section-heading h2 {
    font-size: 2rem;
  }

}

@media (max-width: 768px) {

  .how-it-works .section-heading {
    text-align: left;
  }

  .how-it-works .section-heading h2 {
    font-size: 1.8rem;
  }

  .how-it-works .precision-function-card {
    padding: 28px 24px;
  }

}

@media (max-width: 576px) {

  .how-it-works .precision-function-card {
    padding: 26px 22px;
  }

  .how-it-works .function-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 22px;
  }

  .how-it-works .function-icon img {
    width: 38px;
    height: 38px;
  }

  .how-it-works .function-content h3 {
    font-size: 1.05rem;
  }

}
/*--------------------------------------------------------------
# Monitoring and Control Section
--------------------------------------------------------------*/

.monitoring-control {
  background-color: var(--background-color);
}


/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/

.monitoring-heading {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.monitoring-heading .section-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-color-cbps);
}

.monitoring-heading h3 {
  margin: 0 0 18px;
  font-size: 2.3rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--heading-color);
}

.monitoring-heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Main Features
--------------------------------------------------------------*/

.monitoring-main {
  margin-bottom: 24px;
}

.monitoring-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 26px;
  height: 100%;
  padding: 32px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.monitoring-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background-color: var(--accent-color);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}




/*--------------------------------------------------------------
# Feature Icon
--------------------------------------------------------------*/

.monitoring-feature-icon {
  position: relative;
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitoring-feature-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: color-mix(
    in srgb,
    var(--accent-color-cbps),
    transparent 92%
  );
}

.monitoring-feature-icon img {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  object-fit: contain;
}


/*--------------------------------------------------------------
# Feature Content
--------------------------------------------------------------*/

.monitoring-feature-content {
  min-width: 0;
}

.monitoring-number {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.monitoring-feature-content h4 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--heading-color);
}

.monitoring-feature-content p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Protocol List
--------------------------------------------------------------*/

.protocol-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.protocol-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--heading-color);
}

.protocol-list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.monitoring-feature-content .protocol-description {
  margin-top: 8px;
}


/*--------------------------------------------------------------
# Secondary Features
--------------------------------------------------------------*/

.monitoring-secondary {
  display: flex;
  flex-direction: column;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
}

.monitoring-row {

  padding: 28px 10px;
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  transition: background-color 0.3s ease;
}

.monitoring-row:hover {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 97%
  );
}

.monitoring-row-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--accent-color);
  padding-top: 3px;
}

.monitoring-row-content h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.monitoring-row-content p {
 
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Systems Gallery
--------------------------------------------------------------*/

.monitoring-gallery {
  margin-top: 55px;
}

.gallery-heading {
  margin-bottom: 24px;
}

.gallery-heading span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-color-cbps);
}

.gallery-heading h4 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--heading-color);
}

.system-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 90%
  );
}

.system-image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid color-mix(
    in srgb,
    var(--accent-color),
    transparent 88%
  );
  border-radius: 10px;
  pointer-events: none;
}

.system-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.system-image:hover img {
  transform: scale(1.03);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 992px) {

  .monitoring-heading h3 {
    font-size: 2rem;
  }

  .monitoring-feature {
    padding: 28px;
  }

}

@media (max-width: 768px) {

  .monitoring-heading {
    text-align: left;
    margin-bottom: 35px;
  }

  .monitoring-heading h3 {
    font-size: 1.8rem;
  }

  .monitoring-feature {
    gap: 20px;
    padding: 26px 24px;
  }

  .monitoring-feature-icon {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
  }

  .monitoring-feature-icon img {
    width: 36px;
    height: 36px;
  }

  .monitoring-row {
    padding: 24px 4px;
  }

}

@media (max-width: 576px) {

  .monitoring-feature {
    flex-direction: column;
    gap: 18px;
    padding: 24px 20px;
  }

  .monitoring-feature-icon {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
  }

  .protocol-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }

  .monitoring-row {
    grid-template-columns: 35px minmax(0, 1fr);
    gap: 12px;
  }

  .gallery-heading h4 {
    font-size: 1.25rem;
  }

}

/*--------------------------------------------------------------
# Capacidades de Aire de Precisión
--------------------------------------------------------------*/

.capacidades {
  background-color: var(--background-color);
}

.capacidades .section-title {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.capacidades-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 35px color-mix(in srgb, var(--default-color), transparent 93%);
}

/* Header */

.capacidades-header {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 32px;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-bottom: 1px solid color-mix(in srgb, var(--accent-color), transparent 82%);
}

.capacidades-header-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 86%);
  color: var(--accent-color);
  font-size: 1.45rem;
}

.capacidades-header span {
  display: block;
  margin-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-color);
}

.capacidades-header h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

/* Technical list */

.capacidades-list {
  padding: 8px 30px;
}

.capacidad-item {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
  min-height: 78px;
  padding: 18px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 91%);
}

.capacidad-item:last-child {
  border-bottom: 0;
}

/* Label */

.capacidad-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--heading-color);
}

.capacidad-label i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  font-size: 1rem;
}

.capacidad-label span {
  font-size: 0.9rem;
  font-weight: 700;
}

/* Value */

.capacidad-value {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--default-color);
}

.capacidad-value strong {
  color: var(--heading-color);
  font-weight: 700;
}

/* Technology tags */

.technology-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 5px 12px;
  margin: 3px 5px 3px 0;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 72%);
  border-radius: 6px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
  color: var(--heading-color);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Hover */

.capacidad-item {
  transition: background-color 0.25s ease;
}

.capacidad-item:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.capacidad-item:hover .capacidad-label i {
  background-color: color-mix(in srgb, var(--accent-color), transparent 84%);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .capacidades-wrapper {
    border-radius: 12px;
  }

  .capacidades-header {
    padding: 22px 24px;
  }

  .capacidades-list {
    padding: 5px 24px;
  }

  .capacidad-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }

  .capacidad-value {
    padding-left: 46px;
  }

}

@media (max-width: 576px) {

  .capacidades-header {
    gap: 14px;
    padding: 20px;
  }

  .capacidades-header-icon {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  .capacidades-header h3 {
    font-size: 1.05rem;
  }

  .capacidades-list {
    padding: 4px 20px;
  }

  .capacidad-label {
    gap: 10px;
  }

  .capacidad-label i {
    width: 32px;
    height: 32px;
  }

  .capacidad-value {
    padding-left: 42px;
    font-size: 0.9rem;
  }

}

/*--------------------------------------------------------------
# Tecnologías de Enfriamiento
--------------------------------------------------------------*/

.tecnologias-enfriamiento {
  background-color: var(--light-background-color, var(--background-color));
}

.tecnologias-enfriamiento .section-title {
  max-width: 850px;
  margin: 0 auto 45px;
  text-align: center;
}

.cooling-technologies {
  max-width: 1050px;
  margin: 0 auto;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 86%
  );
}

.cooling-technology {
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
  min-height: 150px;
  padding: 30px 25px;
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  position: relative;
  transition: background-color 0.3s ease;
}

/* Indicador lateral */

.cooling-technology::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 3px;
  border-radius: 3px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.cooling-technology:hover {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 97%
  );
}

.cooling-technology:hover::before {
  background-color: var(--accent-color);
}

/* Technology name */

.cooling-technology-name {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cooling-indicator {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 91%
  );
  position: relative;
  transition: background-color 0.3s ease;
}

.cooling-indicator::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--accent-color);
  box-shadow:
    0 0 0 5px color-mix(
      in srgb,
      var(--accent-color),
      transparent 82%
    );
}

.cooling-technology:hover .cooling-indicator {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 84%
  );
}

.cooling-category {
  display: block;
  margin-bottom: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--accent-color);
}

.cooling-technology h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
}

/* Description */

.cooling-technology-description {
  padding-left: 30px;
  border-left: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
}

.cooling-technology-description p {
  margin: 0;
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.8;
}

.cooling-technology-description strong {
  color: var(--heading-color);
  font-weight: 700;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .cooling-technology {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 20px;
  }

  .cooling-technology-description {
    padding-left: 60px;
    border-left: 0;
  }

  .cooling-technology::before {
    top: 20px;
    bottom: 20px;
  }

}

@media (max-width: 576px) {

  .cooling-technology {
    padding: 24px 15px 24px 18px;
  }

  .cooling-technology-name {
    gap: 14px;
  }

  .cooling-indicator {
    width: 38px;
    height: 38px;
  }

  .cooling-technology h3 {
    font-size: 1.05rem;
  }

  .cooling-category {
    font-size: 0.62rem;
  }

  .cooling-technology-description {
    padding-left: 52px;
  }

  .cooling-technology-description p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

}

/*--------------------------------------------------------------
# Marcas Líderes en Aire de Precisión
--------------------------------------------------------------*/

.marcas-precision {
  background-color: var(--light-background-color, var(--background-color));
}

.marcas-precision-content {
  max-width: 1050px;
  margin: 0 auto;
}

/* Heading */

.marcas-precision-heading {
  margin-bottom: 40px;
}

.marcas-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent-color);
}

.marcas-precision-heading h2 {
  margin: 0 0 16px;
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
}

.marcas-precision-heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--default-color);
  text-align: center;
}


/*--------------------------------------------------------------
# Brand Showcase
--------------------------------------------------------------*/

.marcas-showcase {
  display: flex;
  align-items: stretch;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 84%
  );
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 84%
  );
}

.marca {
  position: relative;
  flex: 1;
  min-height: 115px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px 30px;
  text-align: center;
}

.marca:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 25%;
  right: 0;
  width: 1px;
  height: 50%;
  background-color: color-mix(
    in srgb,
    var(--default-color),
    transparent 82%
  );
}

.marca strong {
  font-size: 1.35rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--heading-color);
  transition: color 0.3s ease, transform 0.3s ease;
}

.marca:hover strong {
  color: var(--accent-color);
  transform: translateY(-2px);
}

.marca-more strong {
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  font-size: 1.05rem;
  font-weight: 600;
}


/*--------------------------------------------------------------
# Engineering Message
--------------------------------------------------------------*/

.marcas-engineering {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 32px;
  padding: 22px 25px;
  border-left: 3px solid var(--accent-color);
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 96%
  );
}

.marcas-engineering i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.3rem;
  color: var(--accent-color);
}

.marcas-engineering p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .marcas-showcase {
    flex-wrap: wrap;
  }

  .marca {
    flex: 0 0 50%;
    min-height: 90px;
  }

  .marca:nth-child(2)::after {
    display: none;
  }

  .marca:nth-child(-n + 2) {
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 88%
    );
  }

  .marca:nth-child(3)::after {
    display: block;
  }

}

@media (max-width: 576px) {

  .marcas-precision-heading h2 {
    font-size: 1.55rem;
  }

  .marcas-showcase {
    display: block;
  }

  .marca {
    min-height: 70px;
    padding: 18px;
  }

  .marca:not(:last-child)::after {
    top: auto;
    right: 15%;
    bottom: 0;
    width: 70%;
    height: 1px;
  }

  .marca strong {
    font-size: 1.15rem;
  }

  .marca-more strong {
    font-size: 0.95rem;
  }

  .marcas-engineering {
    padding: 20px;
  }

}

/*--------------------------------------------------------------
# Configuraciones Disponibles en Aire de Precisión
--------------------------------------------------------------*/

.configurations-section {
  background-color: var(--background-color);
}


/*--------------------------------------------------------------
# Selector de configuraciones
--------------------------------------------------------------*/

.configurations-selector {
  margin-top: 40px;
}


/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/

.configuration-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 45px;
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 85%
  );
}

.configuration-tab {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 260px;
  padding: 18px 24px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--default-color);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.configuration-tab-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.configuration-tab-description {
  display: block;
  margin-top: 3px;
  font-size: 0.76rem;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  transition: color 0.3s ease;
}

.configuration-tab i {
  margin-left: auto;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
  transition: transform 0.3s ease, color 0.3s ease;
}


/* Hover */

.configuration-tab:hover {
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 94%
  );
}

.configuration-tab:hover .configuration-tab-title,
.configuration-tab:hover .configuration-tab-description,
.configuration-tab:hover i {
  color: var(--accent-color);
}


/* Active */

.configuration-tab.active {
  border-bottom-color: var(--accent-color);
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 94%
  );
}

.configuration-tab.active .configuration-tab-title,
.configuration-tab.active .configuration-tab-description,
.configuration-tab.active i {
  color: var(--accent-color);
}

.configuration-tab.active i {
  transform: translateX(4px);
}


/*--------------------------------------------------------------
# Panel
--------------------------------------------------------------*/

.configuration-panel {
  display: none;
}

.configuration-panel.active {
  display: block;
}


/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/

.configuration-heading {
  max-width: 850px;
  margin: 0 auto 5px;
  text-align: center;
}

.configuration-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.configuration-heading h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  color: var(--heading-color);
}

.configuration-heading p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--accent-color);
  text-align: center;
}


/*--------------------------------------------------------------
# Producto
--------------------------------------------------------------*/

.configuration-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px) minmax(0, 1fr);
  gap: 45px;
  align-items: center;
}


/*--------------------------------------------------------------
# Características
--------------------------------------------------------------*/

.configuration-features {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.configuration-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.configuration-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 92%
  );
  color: var(--accent-color);
  font-size: 1.1rem;
}

.configuration-feature h4 {
  margin: 2px 0 8px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--heading-color);
}

.configuration-feature p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--default-color);
}


/*--------------------------------------------------------------
# Imagen del producto
--------------------------------------------------------------*/

.configuration-product-image {
  text-align: center;
}

.configuration-image-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 25px;
}

.configuration-image-frame::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background-color: color-mix(
    in srgb,
    var(--accent-color),
    transparent 94%
  );
  z-index: 0;
}

.configuration-image-frame img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: 410px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.configuration-product-image:hover img {
  transform: translateY(-5px);
}

.configuration-product-caption {
  display: block;
  margin-top: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 25%
  );
}


/*--------------------------------------------------------------
# Ideal para
--------------------------------------------------------------*/

.configuration-ideal {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 82%
  );
  border-bottom: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 82%
  );
}

.configuration-ideal-title {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.configuration-ideal-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.configuration-ideal-list span {
  position: relative;
  padding: 0 8px;
  font-size: 0.75rem;
  color: var(--default-color);
}

.configuration-ideal-list span:first-child {
  padding-left: 0;
}

.configuration-ideal-list span:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .configuration-product {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
    gap: 35px;
  }

  .configuration-features-left {
    grid-column: 1;
  }

  .configuration-product-image {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .configuration-features-right {
    grid-column: 1;
  }

  .configuration-image-frame {
    min-height: 360px;
  }

  .configuration-image-frame::before {
    width: 220px;
    height: 220px;
  }

  .configuration-ideal {
    align-items: flex-start;
  }

}


@media (max-width: 767px) {

  .configuration-tabs {
    flex-direction: column;
    gap: 0;
    margin-bottom: 35px;
  }

  .configuration-tab {
    width: 100%;
    min-width: 0;
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 88%
    );
  }

  .configuration-tab.active {
    border-bottom-color: var(--accent-color);
  }

  .configuration-product {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /*
   * En móvil la imagen aparece entre las características.
   * Esto permite identificar visualmente el producto sin
   * desplazarla al final del contenido.
   */
  .configuration-product-image {
    order: 2;
  }

  .configuration-features-left {
    order: 1;
  }

  .configuration-features-right {
    order: 3;
  }

  .configuration-image-frame {
    min-height: 300px;
  }

  .configuration-image-frame::before {
    width: 200px;
    height: 200px;
  }

  .configuration-feature {
    gap: 13px;
  }

  .configuration-ideal {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: 35px;
  }

  .configuration-ideal-list {
    row-gap: 12px;
  }

}


@media (max-width: 575px) {

  .configuration-heading {
    margin-bottom: 30px;
  }

  .configuration-heading h3 {
    font-size: 1.6rem;
  }

  .configuration-feature h4 {
    font-size: 0.95rem;
  }

  .configuration-feature p {
    font-size: 0.86rem;
  }

  .configuration-image-frame {
    min-height: 260px;
    padding: 15px;
  }

  .configuration-image-frame::before {
    width: 170px;
    height: 170px;
  }

  .configuration-ideal-list span {
    padding: 0 10px;
  }

}

/*--------------------------------------------------------------
# Clima de Precisión
--------------------------------------------------------------*/

.precision-climate {
  background-color: var(--background-color);
}


/*--------------------------------------------------------------
# Intro
--------------------------------------------------------------*/

.precision-climate .climate-intro {
  margin: 0 auto 20px;
  text-align: center;
}


.precision-climate .climate-lead {
  margin: 0 auto;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.75;
}


/*--------------------------------------------------------------
# Imagen principal
--------------------------------------------------------------*/

.precision-climate .climate-image {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 55px;
  overflow: hidden;
  border-radius: 14px;
  position: relative;
}

.precision-climate .climate-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--heading-color), transparent 92%),
    transparent 45%,
    color-mix(in srgb, var(--accent-color), transparent 94%)
  );
  pointer-events: none;
}

.precision-climate .climate-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 8;
  object-fit: cover;
}


/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/

.precision-climate .climate-content {
  max-width: 920px;
  margin: 0 auto;
}

.precision-climate .climate-content h2 {
  margin-bottom: 24px;
  color: var(--heading-color);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  position: relative;
  padding-left: 18px;
}

.precision-climate .climate-content h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 4px;
  height: calc(100% - 8px);
  border-radius: 4px;
  background-color: var(--accent-color);
}

.precision-climate .climate-content p {
  margin-bottom: 20px;
  color: var(--default-color);
  font-size: 1rem;
  line-height: 1.85;
}

.precision-climate .climate-content p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 768px) {

  .precision-climate .climate-intro {
    margin-bottom: 30px;
  }

  .precision-climate .climate-lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .precision-climate .climate-image {
    margin-bottom: 40px;
    border-radius: 10px;
  }

  .precision-climate .climate-image img {
    aspect-ratio: 16 / 8;
  }

  .precision-climate .climate-content h2 {
    margin-bottom: 20px;
  }

  .precision-climate .climate-content p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

}

/*--------------------------------------------------------------
# Soluciones para maximizar la disponibilidad
--------------------------------------------------------------*/

.climate-solutions-content {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
  margin-top: 35px;
}


/*--------------------------------------------------------------
# Imagen
--------------------------------------------------------------*/

.climate-solutions-image {
  position: relative;
}

.climate-solutions-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--surface-color);
}

.climate-solutions-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.climate-solutions-image-frame:hover img {
  transform: scale(1.025);
}


/*--------------------------------------------------------------
# Lista de soluciones
--------------------------------------------------------------*/

.climate-solutions-list {
  display: flex;
  flex-direction: column;
}

.climate-solution {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 85%);
}

.climate-solution:first-child {
  padding-top: 0;
}

.climate-solution:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}


/*--------------------------------------------------------------
# Marcadores
--------------------------------------------------------------*/

.climate-solution-marker {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid
    color-mix(in srgb, var(--accent-color), transparent 45%);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 1rem;
}

.climate-solution-content h4 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--heading-color);
}

.climate-solution-content p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}


/*--------------------------------------------------------------
# Hover
--------------------------------------------------------------*/

.climate-solution:hover .climate-solution-marker {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

.climate-solution:hover h4 {
  color: var(--accent-color);
  transition: color 0.3s ease;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .climate-solutions-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .climate-solutions-image {
    max-width: 700px;
    margin: 0 auto;
  }

}


@media (max-width: 767px) {

  .climate-solutions-content {
    gap: 30px;
    margin-top: 25px;
  }

  .climate-solution {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .climate-solution:first-child {
    padding-top: 0;
  }

  .climate-solution-marker {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .climate-solution-content h4 {
    font-size: 1rem;
  }

  .climate-solution-content p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

}

/*--------------------------------------------------------------
# Applications
--------------------------------------------------------------*/

.applications-section {
  background-color: var(--background-color);
}
.applications-section .applications-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
}


/*--------------------------------------------------------------
# Application Item
--------------------------------------------------------------*/

 .applications-section .application-item {
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 88%
  );
  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

 .applications-section .application-item:hover {
  border-color: color-mix(
    in srgb,
    var(--accent-color-cbps),
    transparent 45%
  );

  transform: translateY(-3px);
}


/*--------------------------------------------------------------
# Application Image
--------------------------------------------------------------*/

.application-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background-color: var(--surface-color);
}

.application-image a {
  display: block;
  width: 100%;
  height: 100%;
}

.application-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.application-item:hover .application-image img {
  transform: scale(1.03);
}


/*--------------------------------------------------------------
# Application Content
--------------------------------------------------------------*/

.application-content {
  position: relative;
  padding: 22px 24px 25px;
  min-height: 165px;
}

.application-content h3 {
  margin: 0 38px 10px 0;
  font-size: 1.15rem;
  line-height: 1.35;
  font-weight: 700;
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.application-item:hover .application-content h3 {
  color: var(--accent-color-cbps);
}

.application-content p {
  margin: 0;
  padding-right: 10px;
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 12%
  );
}



/*--------------------------------------------------------------
# Application Modal
--------------------------------------------------------------*/

.applications-section .modal-content {
  border: 0;
  border-radius: 0;
  background-color: var(--background-color);
}

.applications-section .modal-body {
  padding: 0 20px 20px;
}

.applications-section .modal-body img {
  max-height: 80vh;
  width: auto;
  max-width: 100%;
}

.applications-section .btn-close {
  position: relative;
  z-index: 2;
}


/*--------------------------------------------------------------
# Applications Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .applications-section .applications-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 22px;
  }

}

@media (max-width: 767px) {

  .applications-section .applications-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .application-content {
    padding: 20px 20px 23px;
    min-height: auto;
  }

  .application-content h3 {
    font-size: 1.08rem;
    margin-right: 35px;
  }

  .application-content p {
    font-size: 0.92rem;
    line-height: 1.6;

  }

  .application-indicator {
    right: 20px;
    bottom: 22px;
  }

  .applications-section .modal-body {
    padding: 0 12px 12px;
  }

}

/*--------------------------------------------------------------
# Engineering Specialized
--------------------------------------------------------------*/


.engineering-section .container {
 border-top: 1px solid var(--accent-color);
 border-bottom: 1px solid var(--accent-color);
}

.engineering-content {
  position: relative;

  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.5fr);

  gap: 70px;

  padding: 65px 0;
}


/*--------------------------------------------------------------
# Heading
--------------------------------------------------------------*/

.engineering-heading {
  position: relative;
  padding-left: 25px;
}

.engineering-heading::before {
  content: "";
  position: absolute;

  top: 4px;
  bottom: 4px;
  left: 0;

  width: 3px;

  background-color: var(--accent-color-cbps);
}

.engineering-label {
  display: block;

  margin-bottom: 14px;

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

  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--accent-color);
}

.engineering-heading h3 {
  margin: 0;

  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 1.2;
  font-weight: 700;

  color: var(--heading-color);
}


/*--------------------------------------------------------------
# Description
--------------------------------------------------------------*/

.engineering-description {
  max-width: 850px;
}

.engineering-description p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.75;

  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 8%
  );
}

.engineering-description p + p {
  margin-top: 22px;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .engineering-content {
    grid-template-columns: 1fr;
    gap: 30px;

    padding: 50px 0;
  }

  .engineering-heading {
    max-width: 650px;
  }

}

@media (max-width: 767px) {

  .engineering-content {
    gap: 25px;
    padding: 40px 0;
  }

  .engineering-heading {
    padding-left: 18px;
  }

  .engineering-heading::before {
    width: 2px;
  }

  .engineering-label {
    font-size: 0.72rem;
  }

  .engineering-heading h3 {
    font-size: 1.55rem;
  }

  .engineering-description p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .engineering-description p + p {
    margin-top: 18px;
  }

}

/*--------------------------------------------------------------
# Especificaciones de Aire de Precisión
--------------------------------------------------------------*/

.precision-specifications {
  background-color: var(--background-color);
}

.precision-specifications .section-heading {
  margin-bottom: 35px;
}

.precision-specifications .section-heading h2 {
  max-width: 900px;
}


/*--------------------------------------------------------------
# Panel
--------------------------------------------------------------*/

.precision-specifications .precision-panel {
  display: none;
}

.precision-specifications .precision-panel.active {
  display: block;
}


/*--------------------------------------------------------------
# Encabezado del panel
--------------------------------------------------------------*/

.precision-spec-heading {
  margin-bottom: 30px;
}

.precision-spec-heading .precision-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-color);
}

.precision-spec-heading h3 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.25;
  color: var(--heading-color);
}

.precision-spec-subtitle {
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


/*--------------------------------------------------------------
# Imagen + descripción
--------------------------------------------------------------*/

.precision-spec-main {
  display: grid;
  grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
  gap: 45px;
  align-items: center;
  padding-bottom: 35px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}


.precision-spec-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
}

.precision-spec-description {
  max-width: 700px;
}

.precision-spec-description p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}


/*--------------------------------------------------------------
# Información técnica
--------------------------------------------------------------*/

.precision-spec-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 35px;
}

.precision-spec-detail {
  min-width: 0;
  padding: 0 28px;
}

.precision-spec-detail:first-child {
  padding-left: 0;
}

.precision-spec-detail:last-child {
  padding-right: 0;
}

.precision-spec-detail + .precision-spec-detail {
  border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 86%);
}


/*--------------------------------------------------------------
# Encabezados de información
--------------------------------------------------------------*/

.precision-spec-detail-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.precision-spec-detail-heading img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.precision-spec-detail-heading h4 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--heading-color);
}


/*--------------------------------------------------------------
# Listas
--------------------------------------------------------------*/

.precision-spec-detail ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.precision-spec-detail li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 9px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.precision-spec-detail li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color-cbps);
}


/*--------------------------------------------------------------
# Modelos por fabricante
--------------------------------------------------------------*/

.precision-spec-brands > strong {
  display: block;
  margin-top: 16px;
  margin-bottom: 7px;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--accent-color);
}

.precision-spec-brands > strong:first-child {
  margin-top: 0;
}


/*--------------------------------------------------------------
# Ventajas
--------------------------------------------------------------*/

.precision-spec-advantages li {
  padding-left: 21px;
}

.precision-spec-advantages li::before {
  content: "✓";
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-color-cbps);
}


/*--------------------------------------------------------------
# Hover de los bloques técnicos
--------------------------------------------------------------*/

.precision-spec-detail-heading h4 {
  transition: color 0.3s ease;
}

/* .precision-spec-detail:hover .precision-spec-detail-heading h4 {
  color: var(--accent-color-cbps);
} */


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .precision-spec-main {
    grid-template-columns: minmax(230px, 38%) minmax(0, 1fr);
    gap: 30px;
  }

  .precision-spec-details {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .precision-spec-detail {
    padding: 0 0 28px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
  }

  .precision-spec-detail:first-child {
    padding-left: 0;
  }

  .precision-spec-detail:last-child {
    padding-right: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .precision-spec-detail + .precision-spec-detail {
    border-left: 0;
  }

}


@media (max-width: 767px) {

  .precision-specifications .section-heading {
    margin-bottom: 25px;
  }

  .precision-spec-main {
    grid-template-columns: 1fr;
    gap: 25px;
  }



  .precision-spec-image img {
    max-height: 240px;
  }

  .precision-spec-heading {
    margin-bottom: 25px;
  }

  .precision-spec-heading h3 {
    font-size: 1.4rem;
  }

  .precision-spec-subtitle {
    font-size: 0.94rem;
  }

  .precision-spec-description p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .precision-spec-details {
    margin-top: 28px;
  }

  .precision-spec-detail {
    padding-bottom: 24px;
  }

}

/*--------------------------------------------------------------
# Brand Portfolio
--------------------------------------------------------------*/

.brand-portfolio-header {
  margin-bottom: 40px;
}




/*--------------------------------------------------------------
# Brand List
--------------------------------------------------------------*/

.brand-portfolio-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}

.brand-portfolio-item {
  padding: 45px;
}

.brand-portfolio-item + .brand-portfolio-item {
  padding-left: 45px;
  border-left: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 85%
  );
}

.brand-portfolio-item:last-child {
  padding-right: 0;
}

.brand-portfolio-item h3 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading-color);
}


.brand-portfolio-item ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-portfolio-item li {
  position: relative;
  padding-left: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 12%
  );
}

.brand-portfolio-item li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--accent-color);
}


/*--------------------------------------------------------------
# Available Brands
--------------------------------------------------------------*/

.available-brands {
  background-color: var(--background-color);
}



/*--------------------------------------------------------------
# Manufacturer
--------------------------------------------------------------*/

.manufacturer-list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.manufacturer-item {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 60px;
  align-items: center;
}

.manufacturer-item-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.manufacturer-item-reverse .manufacturer-image {
  order: 2;
}

.manufacturer-item-reverse .manufacturer-content {
  order: 1;
}


/*--------------------------------------------------------------
# Manufacturer Image
--------------------------------------------------------------*/

.manufacturer-image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 30px;
}

.manufacturer-image::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  width: 45px;
  height: 45px;
  border-top: 2px solid var(--accent-color-cbps);
  border-left: 2px solid var(--accent-color-cbps);
  border-radius: 14px 0  0  0;
}

.manufacturer-image::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 45px;
  height: 45px;
  border-right: 2px solid var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  border-radius:  0  0 14px 0 ;
}

.manufacturer-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}


/*--------------------------------------------------------------
# Manufacturer Content
--------------------------------------------------------------*/

.manufacturer-label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-color-cbps);
}

.manufacturer-content h3 {
  margin: 0 0 15px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  line-height: 1.2;
  color: var(--heading-color);
}

.manufacturer-content h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  margin-top: 12px;
  background-color: var(--accent-color);
}

.manufacturer-content > p {
  max-width: 650px;
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.75;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 12%
  );
}


/*--------------------------------------------------------------
# Compliance
--------------------------------------------------------------*/

.manufacturer-compliance {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid color-mix(
    in srgb,
    var(--default-color),
    transparent 87%
  );
}

.compliance-label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(
    in srgb,
    var(--default-color),
    transparent 35%
  );
}

.compliance-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.compliance-logos img {
  width: auto;
  max-width: 110px;
  height: 90px;
  object-fit: contain;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991px) {

  .brand-portfolio-item {
    padding-right: 25px;
  }

  .brand-portfolio-item + .brand-portfolio-item {
    padding-left: 25px;
  }

  .manufacturer-item,
  .manufacturer-item-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .manufacturer-image {
    min-height: 280px;
  }

}


@media (max-width: 767px) {

  /* Brand portfolio */

  .brand-portfolio-header {
    margin-bottom: 30px;
  }

  .brand-portfolio-list {
    grid-template-columns: 1fr;
    gap: 25px;
    justify-items: center;
  }

  .brand-portfolio-item,
  .brand-portfolio-item + .brand-portfolio-item {
    padding: 0 0 25px;
    border-left: 0;
    border-bottom: 1px solid color-mix(
      in srgb,
      var(--default-color),
      transparent 88%
    );
  }



  .brand-portfolio-item ul {
    grid-template-columns: 1fr 1fr;
  }


  /* Available brands */

  .manufacturer-list {
    gap: 50px;
  }

  .manufacturer-item,
  .manufacturer-item-reverse {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  .manufacturer-item-reverse .manufacturer-image,
  .manufacturer-item-reverse .manufacturer-content {
    order: initial;
  }

  .manufacturer-image {
    width: 100%;
    min-height: 240px;
    padding: 20px;
  }

  .manufacturer-image img {
    max-height: 240px;
  }

  .manufacturer-content h3 {
    font-size: 1.5rem;
  }

  .manufacturer-content > p {
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .manufacturer-compliance {
    margin-top: 25px;
  }

  .compliance-logos {
    gap: 14px;
  }

  .compliance-logos img {
    max-width: 90px;
    height: 40px;
  }

}

/*--------------------------------------------------------------
# Maintenance Section
--------------------------------------------------------------*/

.maintenance-section {
  background: var(--background-color);
}


/*--------------------------------------------------------------
# Maintenance Header
--------------------------------------------------------------*/

.maintenance-header {
  margin: 0 auto 45px;
  text-align: center;
}

.maintenance-header .section-label,
.maintenance-parts .section-label {
  display: block;
  margin-bottom: 10px;
  color: var(--accent-color-cbps);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.maintenance-header h2 {
  margin-bottom: 20px;
}

.maintenance-header p {
  margin: 0 auto;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.7;
}


/*--------------------------------------------------------------
# Maintenance Services
--------------------------------------------------------------*/

.maintenance-services {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.maintenance-service {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 14px 22px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.maintenance-service:nth-child(odd) {
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.maintenance-service i {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color-cbps), transparent 90%);
  color: var(--accent-color-cbps);
  font-size: 1rem;
}

.maintenance-service span {
  color: var(--heading-color);
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.45;
}

.maintenance-service:hover {
  background: color-mix(in srgb, var(--accent-color-cbps), transparent 97%);
}


/*--------------------------------------------------------------
# Original Parts
--------------------------------------------------------------*/

.maintenance-parts {
  max-width: 1000px;
  margin: 65px auto 0;
  padding: 35px 0 0;
  border-top: 2px solid var(--accent-color-cbps);
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 50px;
}

.maintenance-parts-heading h3 {
  margin: 0;
  font-size: 1.6rem;
}

.maintenance-parts-content {
  padding-top: 5px;
}

.maintenance-parts-content p {
  margin: 0 0 16px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  line-height: 1.7;
}

.maintenance-parts-content p:last-child {
  margin-bottom: 0;
}

.maintenance-parts-content strong {
  color: var(--heading-color);
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 767px) {

  .maintenance-header {
    margin-bottom: 35px;
    text-align: left;
  }

  .maintenance-services {
    grid-template-columns: 1fr;
  }

  .maintenance-service {
    min-height: 62px;
    padding: 13px 8px;
  }

  .maintenance-service:nth-child(odd) {
    border-right: 0;
  }

  .maintenance-parts {
    margin-top: 45px;
    padding-top: 28px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .maintenance-parts-heading h3 {
    font-size: 1.4rem;
  }

}

/*--------------------------------------------------------------
# Maintenance Closing
--------------------------------------------------------------*/

.maintenance-closing {
  grid-column: 1 / -1;
  margin-top: 15px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 88%);
}

.maintenance-closing p {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

@media (max-width: 767px) {

  .maintenance-closing {
    margin-top: 5px;
    padding-top: 22px;
  }

  .maintenance-closing p {
    text-align: left;
  }

}