/*--------------------------------------------------------------
# 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: "Nunito", 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: #54595F;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #57b7d4;
  /* Color for headings, subheadings and title throughout the website */
  --core-expense: #F99205;
  /* 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. */
  --accent-color: #9dc157;
}

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

.dark-background {
  --background-color: #1a6a9c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #fff;
  --contrast-color: #ffffff;
}

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

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

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

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

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


p {
  text-align: justify;
}


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

  .contenido {
    font-size: .86rem;
  }
}

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 */
}

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

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

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

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

.header .btn-getstarted,
.header .btn-getstarted:focus,
.btn-brand {
  color: var(--contrast-color);
  background: var(--accent-color);
  /* font-size: 15px; */
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
  font-weight: 500;
}

.btn-brand {
  background-color: var(--core-expense);
  border-radius: 2rem;
  border: 1px solid var(--core-expense);
  color: var(--contrast-color);
  padding: .8rem 2rem;
}

.btn-brand:hover {
  background-color: var(--accent-color);
  border-radius: 2rem;
  border: 1px solid var(--accent-color);
}


.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 0;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/* =========================================================
   Topbar
   ========================================================= */

.topbar {
  background-color: var(--core-expense);
  border-bottom: 1px solid #E7EBF1;
  font-family: var(--nav-font);
  font-size: .8125rem;
  color: var(--contrast-color);
}

.small-screen {
  display: none;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.topbar-row::-webkit-scrollbar {
  display: none;
}

.topbar-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: .55rem 0;
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.topbar-list::-webkit-scrollbar {
  display: none;
}

.topbar-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
}


.topbar-list i {
  color: var(--contrast-color);
  font-size: 1rem;
}

.topbar-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--nav-font);
  font-weight: 600;
  font-size: .78rem;
  color: var(--core-expense);
  background-color: #ffffff;
  padding: .4rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: 0 2px 6px -2px rgba(var(--nav-color-rgb), .25);
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease, gap .2s ease;
}

.topbar-cta i {
  font-size: .8rem;
  transition: transform .2s ease;
}

.topbar-cta:hover,
.topbar-cta:focus-visible {
  color: #e08300;
  background-color: #fff;
  box-shadow: 0 4px 10px -2px rgba(var(--nav-color-rgb), .3);
  transform: translateY(-1px);
}

.topbar-cta:hover i {
  transform: translateX(2px);
}

@media(max-width:388px) {
  .topbar-list {
    display: flex;
    justify-content: center;
    align-items: center;

    .small-screen {
      display: block;
    }
  }

  .topbar-cta {
    display: none;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@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 a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 12px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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



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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

.navmenu .btn-contacto-nav {
  --btn-nav: #20c997;
  border-radius: 1.2rem;
  margin: .5rem;
  padding: .5rem 1rem !important;
  background-color: var(--btn-nav);
  color: #fff !important;
}

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

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

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

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

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

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

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

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

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

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

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

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

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

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

/* Listing Dropdown - Desktop */
@media (min-width: 1200px) {
  .navmenu .listing-dropdown {
    position: static;
  }

  .navmenu .listing-dropdown ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .listing-dropdown ul li {
    flex: 1;
  }

  .navmenu .listing-dropdown ul li a,
  .navmenu .listing-dropdown ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
    background-color: var(--nav-dropdown-background-color);
  }

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

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

/* Listing Dropdown - Mobile */
@media (max-width: 1199px) {
  .navmenu .listing-dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .listing-dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .listing-dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }
}

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

.footer img {
  background-color: var(--contrast-color);
  border-radius: .5rem;
  padding: 1rem;
}

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

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

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

footer p {
  font-size: 1rem;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

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

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

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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



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

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

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

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

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


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

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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: 30px 0;
  scroll-margin-top: 98px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 700;
  padding: 8px 20px;
  margin: 0;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  text-transform: uppercase;
  border-radius: 50px;
  font-family: var(--default-font);

  span {
    color: var(--core-expense)
  }

  ;
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
  background: url(../img/hero-bg.png) top center no-repeat;
  background-size: cover;
}

.hero h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  /* line-height: 56px; */
  color: var(--nav-dropdown-color);

  span {
    color: var(--core-expense);
  }
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 17px;
  font-weight: 400;
}

.hero .hero-img img {
  border-radius: .5rem;
}

@media(max-width:767px) {
  .hero-buttons {
    justify-content: center;
    align-items: start;
    margin-top: 1rem;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started i {
  margin-left: 5px;
  font-size: 18px;
  transition: 0.3s;
}

.hero .btn-get-started:hover {
  /* color: var(--contrast-color); */
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover i {
  transform: translateX(5px);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width:767px) {
  .hero p {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*==============================================================
# BENEFICIOS
==============================================================*/

.benefits-content {
  padding-right: 2rem;
}


.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.benefit-icon {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f5f8fb;
  border: 1px solid rgba(65, 83, 100, .08);
  transition: .35s;
}

.benefit-icon i {
  font-size: 1.35rem;
  color: var(--core-expense);
}

.benefit-item h3 {
  font-size: 1.05rem;
  color: var(--nav-color);
  font-weight: 600;
  margin-bottom: .45rem;
}

.benefit-item p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.7;
  color: var(--default-color);
}

.benefit-item:hover .benefit-icon {

  transform: translateY(-4px);

  background: var(--core-expense);

  border-color: var(--core-expense);

}

.benefit-item:hover .benefit-icon i {

  color: #fff;

}

/*=========================
Responsive
==========================*/

@media (max-width:991.98px) {

  .benefits-content {

    padding-right: 0;

    margin-bottom: 3rem;

  }

  .section-title {

    font-size: 2rem;

  }

}

@media (max-width:767.98px) {

  .benefit-item {

    gap: 15px;

  }

  .section-title {

    font-size: 1.8rem;

  }

}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s;
  border-radius: 5px;
}

.services .service-item .icon {
  font-size: 36px;
  padding: 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: 0.3s;
}

.services .service-item h3 {
  font-size: 24px;
  font-weight: 700;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  padding: 20px 0 0 0;
}

.services .service-item .read-more i {
  line-height: 0;
  margin-left: 5px;
  font-size: 18px;
}

.services .service-item.item-cyan {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-cyan .read-more {
  color: #0dcaf0;
}

.services .service-item.item-cyan:hover {
  background: #0dcaf0;
}

.services .service-item.item-orange {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-orange .read-more {
  color: #fd7e14;
}

.services .service-item.item-orange:hover {
  background: #fd7e14;
}

.services .service-item.item-teal {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-teal .icon {
  color: #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-teal .read-more {
  color: #20c997;
}

.services .service-item.item-teal:hover {
  background: #20c997;
}

.services .service-item.item-red {
  border-bottom: 3px solid #0dcaf0;
}

.services .service-item.item-red .icon {
  color: #0dcaf0;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-red .read-more {
  color: #0dcaf0;
}

.services .service-item.item-red:hover {
  background: #0dcaf0;
}

.services .service-item.item-indigo {
  border-bottom: 3px solid #fd7e14;
}

.services .service-item.item-indigo .icon {
  color: #fd7e14;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-indigo .read-more {
  color: #fd7e14;
}

.services .service-item.item-indigo:hover {
  background: #fd7e14;
}

.services .service-item.item-pink {
  border-bottom: 3px solid #20c997;
}

.services .service-item.item-pink .icon {
  color: #20c997;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item.item-pink .read-more {
  color: #20c997;
}

.services .service-item.item-pink:hover {
  background: #20c997;
}

.services .service-item.item-coral {
  border-bottom: 3px solid #f88379;
}

.services .service-item.item-coral .icon {
  color: #f88379;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-coral .read-more {
  color: #f88379;
}

.services .service-item.item-coral:hover {
  background: #f88379;
}

.services .service-item:hover h3,
.services .service-item:hover p,
.services .service-item:hover .read-more {
  color: #fff;
}

.services .service-item:hover .icon {
  background: #fff;
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/

.clients .swiper {
  position: relative;
  padding: 0 60px;
}


.clients .swiper-slide {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 0.5;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-slide span {
  font-weight: bold;
  text-align: center;
  margin-top: 1rem;
  font-size: .8rem;

  em {
    font-size: .6rem;
  }
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

/* Flechas */
.clients .swiper-button-prev,
.clients .swiper-button-next {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--contrast-color);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  transition: all .3s ease;
}

/* Iconos */
.clients .swiper-button-prev::after,
.clients .swiper-button-next::after {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
}

/* Hover */
.clients .swiper-button-prev:hover,
.clients .swiper-button-next:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.clients .swiper-button-prev:hover::after,
.clients .swiper-button-next:hover::after {
  color: var(--contrast-color);
}

/* Posición */
.clients .swiper-button-prev {
  left: 0;
}

.clients .swiper-button-next {
  right: 0;
}

/* Estado deshabilitado */
.clients .swiper-button-disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* Mobile */
@media (max-width: 991px) {
  .clients .swiper {
    padding: 0 15px;
  }

  .clients .swiper-button-prev,
  .clients .swiper-button-next {
    display: none;
  }
}

/*==============================================================
# CÓMO FUNCIONA
==============================================================*/


.timeline-horizontal {

  position: relative;

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 1.25rem;

}

.timeline-line {

  position: absolute;

  top: 36px;

  left: 10%;

  right: 10%;

  height: 3px;

  background: rgba(249, 146, 5, .18);

  z-index: 1;

}

.timeline-step {

  position: relative;

  flex: 1;

  text-align: center;

  z-index: 2;

}

.timeline-circle {

  width: 72px;

  height: 72px;

  margin: 0 auto 1.5rem;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  background: var(--surface-color);

  border: 2px solid var(--core-expense);

  transition: .35s;

}

.timeline-circle img {
  max-width: 70%;
  border-radius: 20%;
}


.timeline-circle i {

  font-size: 1.8rem;

  color: var(--core-expense);

  transition: .35s;

}

.timeline-step h3 {

  font-size: 1.05rem;

  color: var(--contrast-color);

  margin-bottom: .75rem;

  font-weight: 600;

}

.timeline-step p {

  font-size: .92rem;

  line-height: 1.7;

  margin: 0;

  color: var(--default-color);

  text-align: center;

}

.timeline-step:hover .timeline-circle {

  background: var(--core-expense);

  transform: translateY(-6px);

}

.timeline-step:hover .timeline-circle i {

  color: #fff;

}

/*=========================
Responsive
==========================*/

@media (max-width:991.98px) {

  .timeline-horizontal {

    flex-direction: column;

    gap: 2rem;

    padding-left: 2rem;

  }

  .timeline-line {

    left: 35px;

    top: 0;

    bottom: 0;

    width: 3px;

    height: auto;

    right: auto;

  }

  .timeline-step {

    display: flex;

    align-items: flex-start;

    text-align: left;

    gap: 1.5rem;

  }

  .timeline-circle {

    width: 60px;

    height: 60px;

    min-width: 60px;

    margin: 0;

  }

}

@media (max-width:575.98px) {

  .timeline-step {

    gap: 1rem;

  }

  .timeline-circle {

    width: 54px;

    height: 54px;

    min-width: 54px;

  }

  .timeline-circle i {

    font-size: 1.35rem;

  }

}

button {
  border: transparent;
}

/*==============================================================
# CARACTERÍSTICAS
==============================================================*/

.feature-image {

  text-align: center;

}

.feature-image img {

  max-width: 100%;

  border-radius: 20px;

}

.feature-image .modal-body img {
  border-radius: 0;
}

.feature-list {

  display: flex;

  flex-direction: column;

  gap: 1.75rem;

  margin-top: 2rem;

}

.feature-item {

  display: flex;

  align-items: center;

  gap: 1rem;

}

.feature-icon {

  width: 40px;

  height: 40px;

  min-width: 40px;

  border-radius: 16px;

  display: flex;

  align-items: center;

  justify-content: center;

  background: rgba(249, 146, 5, .08);

  transition: .35s;

}


.feature-icon i {

  font-size: 1.45rem;

  color: var(--core-expense);

  transition: .35s;

}

.feature-item h3 {

  font-size: 1.1rem;

  font-weight: 600;

  color: var(--nav-color);

  margin-bottom: .45rem;

}

.feature-item p {

  margin: 0;

  color: var(--default-color);

  line-height: 1.7;

  font-size: .95rem;

}

.feature-item:hover .feature-icon {

  background: var(--core-expense);

  transform: translateY(-3px);

}

.feature-item:hover .feature-icon i {

  color: #fff;

}

@media (max-width:991.98px) {

  .feature-image {

    margin-bottom: 2rem;

  }

}

@media (max-width:575.98px) {

  .feature-item {

    gap: .85rem;

  }

  .feature-icon {

    width: 50px;

    height: 50px;

    min-width: 50px;

  }

  .feature-icon i {

    font-size: 1.2rem;

  }

}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  transition: 0.3s;
  opacity: 1;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

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

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

/*==============================================================
# CTA FINAL
==============================================================*/

.cta-section {

  padding: 20px 0;

}

.cta-box {

  background: linear-gradient(135deg,
      var(--core-expense),
      #f7a52a);

  border-radius: 28px;

  padding: 4rem;

  box-shadow: 0 25px 60px rgba(65, 83, 100, .18);

  overflow: hidden;

  position: relative;

}

.cta-box::before {

  content: "";

  position: absolute;

  width: 320px;

  height: 320px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .08);

  top: -150px;

  right: -120px;

}

.cta-title {

  color: #fff;

  font-size: 2.3rem;

  font-weight: 700;

  margin-bottom: 1rem;

}

.cta-description {

  color: rgba(255, 255, 255, .9);

  margin: 0;

  line-height: 1.8;

  max-width: 650px;

}

.cta-box .btn {

  border-radius: 50px;

  padding: .95rem 2.5rem;

  font-weight: 600;

  transition: .35s;

}

.cta-box .btn:hover {

  transform: translateY(-3px);

}

@media(max-width:991px) {

  .cta-box {

    padding: 3rem;

    text-align: center;

  }

  .cta-description {

    margin: 0 auto;

  }

}

@media(max-width:576px) {

  .cta-section {

    padding-top: 80px;

    padding-bottom: 80px;

  }

  .cta-box {

    padding: 2.25rem;

  }

  .cta-title {

    font-size: 1.9rem;

  }

  .cta-box .btn {

    width: 100%;

  }

}

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

.section-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.problem-question,
.subtitle {
  color: var(--default-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.problem-section p {
  color: var(--default-color);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.problem-conclusion {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--core-expense);
  background: rgba(249, 146, 5, 0.08);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
}

.problem-conclusion i {
  color: var(--core-expense);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16/9;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .12);
}

.video-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991.98px) {

  .section-title {
    font-size: 2rem;
    text-align: center;
  }

  .problem-question {
    text-align: center;
  }

}

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



.gestiona-card {
  height: 100%;
  background: var(--surface-color);
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all .3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.gestiona-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
  border-color: var(--core-expense);
}

.gestiona-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 15%;
  background: rgba(249, 146, 5, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gestiona-icon i {
  font-size: 2rem;
  color: var(--core-expense);
}

.gestiona-card h3 {
  margin: 0;
  color: var(--default-color);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.6;
}

@media (max-width: 991.98px) {

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

  .gestiona-card {
    padding: 1.75rem 1.25rem;
  }

}

@media (max-width: 767.98px) {

  .gestiona-title {
    font-size: 1.75rem;
  }

  .gestiona-icon {
    width: 64px;
    height: 64px;
  }

  .gestiona-icon i {
    font-size: 1.8rem;
  }

}

/* ==================================================
   Seguridad ISO 27001
================================================== */

.security-section {
  background: linear-gradient(180deg,
      rgba(64, 108, 133, 0.05) 0%,
      rgba(64, 108, 133, 0.02) 100%);
}

.security-card {
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.security-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.security-logo {
  max-width: 220px;
  width: 100%;
  transition: transform .3s ease;
}

.security-card:hover .security-logo {
  transform: scale(1.03);
}

.security-badge {
  display: inline-block;
  background: rgba(64, 108, 133, .10);
  color: var(--surface-blue-color);
  font-size: .85rem;
  font-weight: 600;
  padding: .45rem .9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.security-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.security-card p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Tablet */
@media (max-width: 991px) {

  .security-card {
    padding: 2rem;
    text-align: center;
  }

  .security-logo {
    max-width: 180px;
  }

  .security-title {
    margin-top: .5rem;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .security-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .security-logo {
    max-width: 140px;
  }

  .security-title {
    font-size: 1.5rem;
  }

  .security-card p {
    font-size: .95rem;
    line-height: 1.7;
  }
}

/* ==================================================
   CORE EXPENSE - INSIGHTS
================================================== */

.expense-insights {
  background: var(--background-color);
}

.expense-insight-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 1.75rem;
  transition: all .3s ease;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.expense-insight-card:hover {
  transform: translateY(-4px);
}

.insight-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.insight-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--core-expense), white 88%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.insight-icon i {
  font-size: 1.5rem;
  color: var(--core-expense);
}

.insight-header h2 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 700;
}

.insight-content p {
  color: var(--default-color);
  line-height: 1.9;
  margin-bottom: 1rem;
}

.highlight-card {
  border-left: 5px solid var(--core-expense);
}

.expense-dato {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 12px;
  background: color-mix(in srgb, var(--core-expense), white 92%);
  border: 1px solid color-mix(in srgb, var(--core-expense), white 80%);
  color: var(--default-color);
  line-height: 1.8;
}

.expense-dato strong {
  color: var(--core-expense);
}

/* Tablet */
@media (max-width: 991px) {

  .expense-insight-card {
    padding: 1.75rem;
  }

  .insight-header h2 {
    font-size: 1.55rem;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .expense-insight-card {
    padding: 1.5rem;
  }

  .insight-header {
    flex-direction: column;
    gap: .75rem;
  }

  .insight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .insight-icon i {
    font-size: 1.25rem;
  }

  .insight-header h2 {
    font-size: 1.35rem;
  }

  .insight-content p,
  .expense-dato {
    font-size: .95rem;
    line-height: 1.8;
  }
}

/* ==================================================
   CORE EXPENSE - PASOS
================================================== */

.expense-step-section {
  position: relative;
}

.expense-step-section .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--core-expense), white 88%);
  color: var(--core-expense);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 1rem;
}

.expense-step-section .section-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: .75rem;
}

.expense-step-section .step-title {
  color: var(--core-expense);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.expense-step-section .step-description {
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.expense-step-section .step-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.expense-step-section .step-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
  line-height: 1.6;
}

.expense-step-section .step-feature-list li i {
  color: var(--core-expense);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.expense-step-section .step-image-wrapper {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.expense-step-section .step-image-wrapper img {
  width: 100%;
  display: block;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991.98px) {

  .expense-step-section .step-title {
    font-size: 1.8rem;
  }

  .expense-step-section .step-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 767.98px) {

  .expense-step-section {
    text-align: center;
  }

  .expense-step-section .step-title {
    font-size: 1.6rem;
  }

  .expense-step-section .step-description {
    font-size: 1rem;
  }

  .expense-step-section .step-feature-list li {
    text-align: left;
  }
}

/* ========================================
   PASO 2 - GALERÍA CORE EXPENSE
======================================== */

.expense-gallery {
  position: relative;
}

.expense-gallery-main {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.expense-gallery-main img {
  width: 100%;
  display: block;
}

.expense-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.expense-thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: all .3s ease;
  cursor: pointer;
}

.expense-thumb img {
  width: 100%;
  display: block;
}

.expense-thumb:hover {
  transform: translateY(-3px);
}

.expense-thumb.active {
  border-color: var(--core-expense);
  box-shadow: 0 0 0 3px color-mix(in srgb,
      var(--core-expense),
      transparent 80%);
}

/* ========================================
   TABLET
======================================== */

@media (max-width: 991.98px) {

  .expense-gallery {
    margin-top: 20px;
  }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 767.98px) {

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

  .expense-gallery-main {
    border-radius: 18px;
  }
}


.gallery-arrow {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 42px;

  height: 42px;

  border-radius: 50%;

  border: none;

  background: #fff;

  color: var(--heading-color);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.2rem;

  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);

  z-index: 3;

  transition: .3s;

}


.gallery-arrow:hover {

  background: var(--accent-color);

  color: #fff;

}


.gallery-prev {

  left: 18px;

}


.gallery-next {

  right: 18px;

}



@media(max-width:575px) {

  .gallery-arrow {

    width: 36px;

    height: 36px;

    font-size: 1rem;

  }


  .gallery-prev {

    left: 10px;

  }


  .gallery-next {

    right: 10px;

  }

}

/* ==================================================
   PASO 3 - VALIDACIÓN AUTOMÁTICA
================================================== */

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

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem;
  border-radius: 50px;
  background: color-mix(in srgb, var(--core-expense), transparent 88%);
  color: var(--core-expense);
  font-weight: 700;
  font-size: .9rem;
}

.section-title {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

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


.expense-validation-box {
  background: color-mix(in srgb, var(--core-expense) 6%, white);
  border: 1px solid color-mix(in srgb, var(--core-expense) 15%, white);
  border-radius: 16px;
  padding: 1.5rem;
  height: fit-content;
}

.expense-validation-title {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.expense-validation-title::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--core-expense);
  flex-shrink: 0;
}

.expense-validation-box .step-feature-list {
  margin-bottom: 0;
}

.expense-validation-box .step-feature-list li {
  margin-bottom: 1rem;
}

.expense-validation-box .step-feature-list li:last-child {
  margin-bottom: 0;
}

.expense-validation-box .step-feature-list i {
  color: var(--core-expense);
}

@media (max-width: 991px) {
  .expense-validation-box {
    margin-bottom: 1rem;
  }
}

.timeline-expense-report {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
}

.timeline-expense-report .timeline-line {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: color-mix(in srgb,
      var(--core-expense),
      transparent 75%);
  z-index: 0;
}

.timeline-expense-report .timeline-step {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: center;
}

.timeline-expense-report .timeline-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--core-expense);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.timeline-expense-report .timeline-step h4 {
  color: var(--heading-color);
  font-size: 1.05rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.timeline-expense-report .timeline-step p {
  font-size: .95rem;
  margin-bottom: 12px;
}

.timeline-expense-report .timeline-step ul {
  text-align: left;
  padding-left: 18px;
  margin: 0;
}

.timeline-expense-report .timeline-step li {
  margin-bottom: 6px;
  font-size: .9rem;
}

/* Tablet */

@media (max-width: 991px) {

  .timeline-expense-report {
    flex-direction: column;
    gap: 40px;
  }

  .timeline-expense-report .timeline-line {
    left: 39px;
    top: 0;
    bottom: 0;
    width: 3px;
    height: auto;
    right: auto;
  }

  .timeline-expense-report .timeline-step {
    text-align: left;
    padding-left: 100px;
  }

  .timeline-expense-report .timeline-circle {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
  }

}

/* Mobile */

@media (max-width: 576px) {

  .timeline-expense-report .timeline-circle {
    width: 65px;
    height: 65px;
    font-size: 1.4rem;
  }

  .timeline-expense-report .timeline-step {
    padding-left: 85px;
  }

}

/* ==================================================
   FAQ CORE EXPENSE
================================================== */

.faq-section {
  position: relative;
}

/* ==================================================
   ÍNDICE DE PREGUNTAS
================================================== */

.faq-index {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--core-expense), white 85%);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}


.faq-index-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.faq-index-title i {
  color: var(--core-expense);
  font-size: 1.4rem;
}

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

.faq-index-list li {
  margin-bottom: .75rem;
}

.faq-index-list a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .3rem 1rem;
  text-decoration: none;
  border-radius: 12px;
  color: var(--default-color);
  transition: all .3s ease;
  border: 1px solid transparent;
}

.faq-index-list a::before {
  content: "";
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  background: var(--core-expense);
}

.faq-index-list a:hover,
.faq-index-list a.active {
  background: color-mix(in srgb, var(--core-expense), white 94%);
  border-color: color-mix(in srgb, var(--core-expense), white 80%);
  color: var(--heading-color);
  transform: translateX(5px);
}

/* ==================================================
   ACORDEÓN
================================================== */

.faq-accordion {
  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;
}

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

.faq-accordion .accordion-button {
  background: #fff;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.3rem 1.5rem;
  box-shadow: none !important;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: color-mix(in srgb, var(--core-expense), white 92%);
  color: var(--heading-color);
}

.faq-accordion .accordion-button::after {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-size: .9rem;
  background-position: center;
  background-color: color-mix(in srgb, var(--core-expense), white 85%);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  background-color: var(--core-expense);
}

.faq-accordion .accordion-body {
  padding: 1.5rem;
  line-height: 1.8;
  color: var(--default-color);
}

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

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.faq-question-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--core-expense), white 85%);
  color: var(--core-expense);
  font-size: 1.1rem;
}

/* ==================================================
   DESTACADOS DENTRO DE RESPUESTAS
================================================== */

.faq-accordion .accordion-body strong {
  color: var(--core-expense);
}

.faq-accordion .accordion-body a {
  color: var(--core-expense);
  text-decoration: none;
  font-weight: 600;
}

.faq-accordion .accordion-body a:hover {
  color: var(--accent-color);
}

/* ==================================================
   CTA FINAL
================================================== */

.faq-cta {
  margin-top: 3rem;
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--core-expense), white 92%),
      #fff);
}

.faq-cta h3 {
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq-cta .btn {
  min-width: 220px;
}

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

@media (max-width: 991px) {

  .faq-index {
    padding: 1.5rem;
  }

  .faq-index-title {
    font-size: 1.15rem;
  }

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

  .faq-question-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: .95rem;
  }

}

/* ==================================================
   FAQ ACCORDION - CORE EXPENSE
================================================== */

.custom-accordion {
  margin-top: 2rem;
}

/* ITEM */

.custom-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #fff;
  box-shadow:
    0 4px 12px rgba(0, 0, 0, .04),
    0 12px 32px rgba(0, 0, 0, .05);
  transition: all .3s ease;
}

.custom-accordion .accordion-item:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, .06),
    0 20px 40px rgba(0, 0, 0, .08);
}

/* HEADER */

.custom-accordion .accordion-header {
  margin: 0;
}

/* BUTTON */

.custom-accordion .accordion-button {
  padding: 1.35rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--heading-color);
  background: #fff;
  box-shadow: none !important;
  border: none;
  gap: 1rem;
  line-height: 1.5;
}

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

/* ACTIVO */

.custom-accordion .accordion-button:not(.collapsed) {
  background:
    linear-gradient(90deg,
      color-mix(in srgb, var(--core-expense), white 92%),
      #fff);
  color: var(--heading-color);
}

/* ICONO */

.custom-accordion .faq-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;

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

  border-radius: 50%;

  font-size: 1rem;

  color: var(--core-expense);

  background:
    color-mix(in srgb,
      var(--core-expense),
      white 85%);

  transition: all .3s ease;
}

.custom-accordion .accordion-button:not(.collapsed) .faq-icon {
  background: var(--core-expense);
  color: #fff;
}

/* FLECHA */

.custom-accordion .accordion-button::after {

  width: 2rem;
  height: 2rem;

  border-radius: 50%;

  background-size: .9rem;

  background-position: center;

  background-color:
    color-mix(in srgb,
      var(--core-expense),
      white 85%);

  transition: all .3s ease;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  background-color: var(--core-expense);
}

/* BODY */

.custom-accordion .accordion-body {

  padding: 1.5rem 1.75rem;

  font-size: 1rem;
  line-height: 1.8;

  color: var(--default-color);

  border-top: 1px solid color-mix(in srgb,
      var(--core-expense),
      white 88%);
}

/* ENLACES */

.custom-accordion .accordion-body a {

  color: var(--core-expense);

  text-decoration: none;

  font-weight: 600;

  transition: .3s;
}

.custom-accordion .accordion-body a:hover {

  color: var(--accent-color);

}

/* NEGRITAS */

.custom-accordion .accordion-body strong {

  color: var(--heading-color);

  font-weight: 700;

}

/* ANIMACIÓN */

.custom-accordion .accordion-collapse {

  transition: all .3s ease;

}

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

@media (max-width: 991px) {

  .custom-accordion .accordion-button {

    padding: 1rem 1.15rem;

    font-size: .98rem;

  }

  .custom-accordion .faq-icon {

    width: 36px;
    height: 36px;
    min-width: 36px;

    font-size: .9rem;

  }

  .custom-accordion .accordion-body {

    padding: 1.25rem;

    font-size: .95rem;

    line-height: 1.7;

  }

}

@media (max-width: 575px) {

  .custom-accordion .accordion-button {

    align-items: flex-start;

    gap: .75rem;

  }

  .custom-accordion .accordion-button::after {

    margin-top: .25rem;

  }

}

/*--------------------------------------------------------------
# Comprobación de Gastos
--------------------------------------------------------------*/

.expense-feature-section {
  background: var(--background-color);
  color: var(--default-color);
}


.expense-feature-section h1,
.expense-feature-section h2,
.expense-feature-section h3 {
  color: var(--heading-color);
  font-weight: 700;
}


.expense-title {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
}


.expense-lead {
  font-size: 22px;
  line-height: 1.5;
  color: var(--default-color);
  max-width: 520px;
}


.expense-image-wrapper {
  position: relative;
  padding: 20px;
}


.expense-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}


/* Bloques de contenido */

.expense-block,
.expense-solution,
.expense-benefits,
.expense-differentiator {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}


.expense-block h2,
.expense-solution h3,
.expense-benefits h3,
.expense-differentiator h3 {
  font-size: 28px;
  margin-bottom: 20px;
}


.expense-block p,
.expense-solution p,
.expense-differentiator p {
  font-size: 17px;
  line-height: 1.75;
}


/* Solución destacada */

.expense-solution {
  border-left: 6px solid var(--core-expense);
}


/* Beneficios */

.expense-list {
  list-style: none;
  padding: 0;
  margin: 0;
}


.expense-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  font-size: 17px;
}


.expense-list li::before {
  content: "\f26e";
  font-family: "Bootstrap-icons";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--core-expense);
  font-size: 20px;
}


/* Diferenciador */

.expense-differentiator {
  background: linear-gradient(135deg,
      #1a6a9c,
      #0e4e75);
  color: var(--contrast-color);
}


.expense-differentiator h3 {
  color: var(--contrast-color);
}


.expense-differentiator p {
  color: var(--contrast-color);
}



/* Responsive */

@media (max-width: 991px) {

  .expense-feature-section {
    padding: 60px 0;
  }


  .expense-title {
    font-size: 34px;
  }


  .expense-lead {
    font-size: 20px;
  }


  .expense-image-wrapper {
    margin-top: 30px;
  }


  .expense-block,
  .expense-solution,
  .expense-benefits,
  .expense-differentiator {
    padding: 30px;
  }

}


@media (max-width: 575px) {

  .expense-title {
    font-size: 30px;
  }


  .expense-lead {
    font-size: 18px;
  }


  .expense-block h2,
  .expense-solution h3,
  .expense-benefits h3,
  .expense-differentiator h3 {
    font-size: 24px;
  }


  .expense-block,
  .expense-solution,
  .expense-benefits,
  .expense-differentiator {
    padding: 25px;
  }

}

.expense-problem,
.expense-solution {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}


/*--------------------------------------------------------------
# Problema
--------------------------------------------------------------*/

.expense-problem {
  position: relative;
  padding: 45px 50px;
  margin-bottom: 45px;
  border-left: 5px solid var(--core-expense);
  background: linear-gradient(90deg,
      rgba(249, 146, 5, .08),
      transparent);
}


.section-label {
  display: inline-block;
  color: var(--core-expense);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}


.expense-problem h2 {
  color: var(--heading-color);
  font-size: 32px;
  line-height: 1.25;
  max-width: 750px;
  margin-bottom: 25px;
}


.expense-problem p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 850px;
}



/*--------------------------------------------------------------
# Solución Core Expense
--------------------------------------------------------------*/

.expense-solution {

  position: relative;
  padding: 50px;
  margin-bottom: 50px;

  background: var(--surface-color);

  border: 1px solid rgba(87, 183, 212, .25);

  overflow: hidden;

}


.expense-solution::before {

  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  right: -70px;
  top: -70px;

  background: rgba(249, 146, 5, .12);

  border-radius: 50%;

}



.solution-header {

  position: relative;

  display: inline-flex;

  align-items: center;

  margin-bottom: 20px;

}


.solution-header h3 {

  background: var(--core-expense);

  color: var(--contrast-color);

  padding: 8px 18px;

  border-radius: 30px;

  font-size: 14px;

  font-weight: 700;

}




.expense-solution p {

  position: relative;

  font-size: 17px;

  line-height: 1.8;

  max-width: 850px;

}



/*--------------------------------------------------------------
# Beneficios
--------------------------------------------------------------*/

.expense-benefits {

  padding: 40px 0;

}


.expense-benefits h3 {

  color: var(--heading-color);

  margin-bottom: 25px;

}


.expense-list {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 18px;

  list-style: none;

  padding: 0;

}



.expense-list li {

  display: flex;

  align-items: center;

  gap: 12px;

  font-size: 16px;

}


.expense-list li::before {

  content: "✓";

  display: flex;

  align-items: center;

  justify-content: center;

  min-width: 28px;

  height: 28px;

  border-radius: 50%;

  background: var(--core-expense);

  color: white;

  font-weight: bold;

}



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

@media(max-width:991px) {

  .expense-problem,
  .expense-solution {

    padding: 35px 25px;

  }


  .expense-problem h2,
  .expense-solution h3 {

    font-size: 26px;

  }


  .expense-list {

    grid-template-columns: 1fr;

  }

}


@media(max-width:575px) {

  .expense-problem,
  .expense-solution {

    padding: 25px 20px;

  }


  .expense-problem h2,
  .expense-solution h3 {

    font-size: 23px;

  }

}