:root {
  --default-font: "Open Sans", 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: "Raleway", 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: #000000;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #CD0C0C;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #CD0C0C;
  /* TINTO #893E3E #922B21; #e96b56;*/
  /* 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. */
  --secondary-color: #000000;
  --azul-general: #0000fe;
  --rojo-principal: #CD0C0C;
  --blanco-extra: #ffffff;
  --negro-terciario: #000000;
  --gris-complementario: #3c3c3c;
}

/* 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: #FFFFFF;
  /*#444444;*/
  /* The default color of the main navmenu links */
  --nav-hover-color: #f21212;
  /* #be6e6e #e96b56;*/
  /* 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: #000000;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #CD0C0C;
  /* #893E3E #e96b56;*/
  /* 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: #f9f9f9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #CD0C0C;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #565656;
  --contrast-color: #ffffff;
}


: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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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




/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: var(--gris-complementario);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--default-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
  color: var(--default-color);
}

.header .topbar .contact-info i a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--accent-color);
}

.header .branding {
  padding: 10px 0;
}

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

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

.header .logo h1 {
  font-size: 26px;
  padding: 0 0 0 8px;
  margin: 11px 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-left: 8px solid var(--accent-color);
}

/*--------------------------------------------------------------
# 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 15px;
    font-size: 14px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    /*display: contents;*/
    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:last-child a {
    padding-right: 0;
  }

  .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;*/
    left: -55px;
    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 .btn-registro,
  .nav .dropdown-menu .btn-registro {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
  }

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

  .navmenu .dropdown ul a,
  .navmenu .dropdown ul div {
    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 .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 .contdiv {
    display: block;
    text-align: center;
  }
}

/* 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;
    position: absolute;
    inset: 90px 20px 20px 20px;
    padding: 20px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    line-height: 3;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 20px 20px;
    font-family: var(--nav-font);
    font-size: 19px;
    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(360deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0 0;
    margin: 5px 15px;
    /*margin: 10px 20px;*/
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
    line-height: 2;
  }

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

  .navmenu .dropdown .btn-registro,
  .nav .dropdown-menu .btn-registro {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 5px;
    transition: 0.5s;
    margin-top: 10px;
  }

  .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: #ff0000;
    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;
  }

  .navmenu .contdiv {
    /*display: inline-block; O inline-grid; PONE EL MISMO FORMATO COMO EN LA COMPU*/
    display: inline-flex;
    text-align: center;
    /*align-content: center;*/
  }

  .navmenu .icon-mov {
    margin-right: 12px;
  }
}






/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--gris-complementario) !important;
  font-size: 14px;

}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 10px 0 !important;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.noh4 {
  font-size: 24px;
  padding: 50px 0;
  font-weight: bold;
  margin-top: 0%;
  text-align: center !important;

}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--background-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

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

.footer .footer-links ul i {
  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: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

.footer .credits {
  margin-top: 3px;
  font-size: 8px;
}

.footer .btn-registro {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
}


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

/*--------------------------------------------------------------
# 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: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  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: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

.titl {
  font-size: 48px !important;
  white-space: nowrap;
  margin-bottom: 10px;
  padding-bottom: 10px;
  margin-right: 50%;
}


.large {
  font-size: 48px !important;
  margin-bottom: 10px;

}

.titl2 {
  font-size: 35px !important;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.precs {
  font-size: 17px;
}

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding-top: 5px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 90% 10%, color-mix(in srgb, var(--accent-color), transparent 92%), transparent 40%);
  pointer-events: none;
}

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

.hero .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1.specs {
  font-size: 2.5rem;
  color: var(--accent-color) !important;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero .hero-content h1 .accent-text {
  color: var(--accent-color);
}

@media (max-width: 992px) {
  .hero .hero-content {
    text-align: center;
    margin-bottom: 3rem;
  }

  .hero .hero-content h1 {
    font-size: 2.5rem;
  }

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

@media (max-width: 575px) {
  .hero .hero-content h1 {
    font-size: 2rem;
  }
}

.hero .company-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  color: var(--accent-color);
  font-weight: 500;
}

.hero .company-badge i {
  font-size: 1.25rem;
}

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

.hero .btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
}

.hero .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-color: #2D465E;
  border-radius: 50px;
}

.hero .btn-link:hover {
  color: #000000;
  border-color: var(--accent-color);

}

.hero .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}




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

.features .btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
}

.features .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-color: #2D465E;
  border-radius: 50px;
}

.features .btn-link:hover {
  color: #000000;
  border-color: var(--accent-color);

}

.features .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}


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

.about .btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
}

.about .btn-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-color: #2D465E;
  border-radius: 50px;
}

.about .btn-link:hover {
  color: #000000;
  border-color: var(--accent-color);
}

.about .btn-link i {
  font-size: 1.5rem;
  vertical-align: middle;
}








.hero .hero-image {
  position: relative;
  text-align: center;
  z-index: 1;
}

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

.hero .customers-badge {
  position: absolute;
  bottom: 10px;
  right: 30px;
  background-color: var(--surface-color);
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  animation: float-badge 3s ease-in-out infinite;
  will-change: transform;
}

.hero .customers-badge .customer-avatars {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.hero .customers-badge .avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 2px solid var(--surface-color);
  margin-left: -8px;
}

.hero .customers-badge .avatar:first-child {
  margin-left: 0;
}

.hero .customers-badge .avatar.more {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.hero .customers-badge p {
  font-size: 2rem;
  color: black;
}

@media (max-width: 992px) {
  .hero .customers-badge {
    position: static;
    margin: 1rem auto;
    max-width: 250px;
  }
}

/* ////////////////////////////////////////////// implementacion del recuadro como estaba /////////////////////////////////////////////////////// */

/* 
.hero .stats-row {
  position: relative;
  z-index: 1;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stats-rows {
  position: relative;
  z-index: 1;
  width: 500px;
  margin-top: 5rem;
  background-color: var(--surface-color);
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding-bottom: 2rem;
}

.hero .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  margin: 1rem 0.25rem;
  text-align: center;
}

.hero .stat-item .stat-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 50px;
  transition: 0.3s;
}

.hero .stat-item .stat-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon {
  background-color: var(--accent-color);
}

.hero .stat-item:hover .stat-icon i {
  color: var(--contrast-color);
}

.hero .stat-item .stat-content {
  flex-grow: 1;
}

.hero .stat-item .stat-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.hero .stat-item .stat-content p {
  font-size: 0.875rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

@media (max-width: 575px) {
  .hero .stat-item {
    padding: 1.5rem;
  }
} */
/* ////////////////////////////////////////////// implementacion del recuadro como estaba /////////////////////////////////////////////////////// */

@keyframes float-badge {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 992px) {
  .about .about-title {
    font-size: 2rem;
  }
}

.about .about-description {
  margin-bottom: 2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

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

.about .feature-list li {
  display: block;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  margin-left: 2rem !important;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-right: 0.5rem;
  /* Esto agrega el espacio */
}


.about .profile .profile-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}

.about .contact-info {
  padding: 0.5rem 2.5rem;
  background-color: var(--surface-color);
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  /* Más notorio */

  width: 220px;
}

.about .contact-info i {
  color: var(--accent-color);
  font-size: 1.4rem;
}

.about .contact-info p {
  color: #000000;
  text-align: center !important;
  font-size: 1.3rem;
}

.semiboldis {
  color: #000000;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
}

.resaltados2 {
  color: #000000 !important;
  font-weight: bold !important;
  text-align: left !important;
  font-size: 22px !important;
}

.semiboldis4 {
  color: #000000 !important;
  font-weight: bold !important;
  text-align: left !important;
  font-size: 32px !important;
}

.semiboldis3 {
  color: #000000;
  font-weight: bold;
  text-align: center;
  font-size: 22px;
  text-align: justify;
}

.semiboldiss {
  color: #000000;
  font-weight: bold;
  text-align: center;
}

.about .contact-info .contact-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.875rem;
  margin: 0;
}

.largos {
  font-size: 10px !important;
}

.about .contact-info .contact-number {
  font-weight: 600;
  margin: 0;
}

.about .image-wrapper {
  position: relative;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: 0;
  }
}

.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
  }
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
  }
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .image-wrapper {
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
  }
}

.about .image-wrapper * {
  border-radius: 0 !important;
}


@keyframes experience-float {
  0% {
    transform: translateY(0);
  }

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

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

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 6px;
  width: auto;
}

.features .nav-item {
  margin: 0;
  padding: 0 5px 0 0;
}

.features .nav-item:last-child {
  padding-right: 0;
}

.features .nav-link {
  background-color: none;
  color: var(--heading-color);
  padding: 10px 30px;
  transition: 0.3s;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  margin: 0;
}

@media (max-width: 468px) {
  .features .nav-link {
    padding: 8px 20px;
  }
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link p.hs {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.features .nav-link:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.features .nav-link:hover p.hs {
  color: var(--accent-color);
}

.features .nav-link.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.features .nav-link.active p.hs {
  color: var(--contrast-color);
}

.features .tab-content {
  margin-top: 10px;
}

.features .tab-pane h3 {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.features .tab-pane span {
  color: var(--heading-color);
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane span:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

#cfdi-nomina-title {
  position: relative;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  font-size: 32px;
}

#cfdi-nomina-title::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}


.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

.features.section {
  padding-top: 20px;
  padding-bottom: 20px;
  margin-bottom: 0;
}

.features .tab-content {
  margin-top: 10px;
}

.features .tab-pane h3 {
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.botonesCTA {
  margin-top: 10px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.features-cards {
  --default-color: #555;
  --heading-color: #333;
}

.features-cards .feature-box {
  height: 100%;
  padding: 40px 30px;
  border-radius: 10px;
}

.features-cards .feature-box i {
  font-size: 44px;
  display: flex;
  /* Cambio importante */
  justify-content: center;
  align-items: center;
  color: var(--accent-color);
  margin-bottom: 20px;
  width: 100%;
  /* Asegura que tenga espacio para centrarse */
}


.features-cards .feature-box p.dp {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}

.features-cards .feature-box p {
  font-size: 15px;
  margin-bottom: 0;
}

.features-cards .feature-box.orange {
  background-color: #fff3e2;
}

.features-cards .feature-box.orange i {
  color: #edb86e;
}

.features-cards .feature-box.blue {
  background-color: #deedfd;
}

.features-cards .feature-box.blue i {
  color: #20a5f8;
}

.features-cards .feature-box.green {
  background-color: #d5f1e4;
}

.features-cards .feature-box.green i {
  color: #48c88a;
}

.features-cards .feature-box.red {
  background-color: #fdeded;
}

.features-cards .feature-box.red i {
  color: #f28484;
}

/*--------------------------------------------------------------
# Features 2 Section
--------------------------------------------------------------*/
.features-2 .feature-item .feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.features-2 .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.features-2 .feature-item .feature-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.features-2 .feature-item .feature-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  margin-bottom: 0;
}

.features-2 .phone-mockup {
  position: relative;
  padding: 30px 0;
}

.features-2 .phone-mockup img {
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

@media (max-width: 991.98px) {
  .features-2 .feature-item {
    text-align: center !important;
    margin-bottom: 2rem;
  }

  .features-2 .feature-item .d-flex {
    flex-direction: column;
    text-align: center;
    justify-content: center !important;
  }

  .features-2 .phone-mockup {
    margin: 3rem 0;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action .container {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  padding: 2rem 2rem;
}

.call-to-action .content h2,
.call-to-action .content p {
  color: var(--contrast-color);
  position: relative;
  z-index: 2;
}

.call-to-action .btn-cta {
  background-color: color-mix(in srgb, var(--contrast-color) 15%, transparent);
  color: var(--contrast-color);
  padding: 12px 40px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid var(--contrast-color);
  position: relative;
  z-index: 2;
}

.btn-cta2 {
  background-color: #ffffff;
  color: #234880;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  font-size: 30px;
  font-weight: bolder;
  line-height: 1.5;
  /* Puedes ajustar entre 1.2 y 1.5 si se ve raro */
}


.CTA2 {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;

  /* tu borde estaba incompleto */
  border-radius: 50px;

  /* Añadir para centrar texto */
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 24px;
  /* asegúrate de dar espacio */
  font-size: 18px;
  /* más proporcional */
  line-height: 1.2;
}


.CTA2:hover {
  color: #ffffff;
  background-color: #2888ee;
  border-color: #2888ee;
}

.centrados {
  text-align: center;
  font-size: 20px;
}

.call-to-action .btn-cta:hover {
  background-color: var(--contrast-color);
  color: var(--accent-color);
}

.call-to-action .shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.call-to-action .shape svg {
  width: 100%;
  height: 100%;
}

.call-to-action .shape svg path {
  fill: color-mix(in srgb, var(--contrast-color) 50%, transparent);
}

.call-to-action .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
  opacity: 0.1;
  transform: rotate(45deg);
  animation: shapes-float 3s ease-in-out infinite;
}

.call-to-action .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  opacity: 0.15;
  transform: rotate(-15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .shape-3 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 15%;
  opacity: 0.08;
  transform: rotate(15deg);
}

.call-to-action .dots {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  color: var(--contrast-color);
}

.call-to-action .dots svg {
  width: 100%;
  height: 100%;
}

.call-to-action .dots-1 {
  width: 200px;
  height: 200px;
  top: -30px;
  left: 10%;
  opacity: 0.1;
  transform: rotate(15deg);
  animation: shapes-float 4s ease-in-out infinite;
}

.call-to-action .dots-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  right: 15%;
  opacity: 0.15;
  transform: rotate(-10deg);
}

@keyframes shapes-float {

  0%,
  100% {
    transform: scale(0.8) rotate(45deg) translateY(0);
  }

  50% {
    transform: scale(0.8) rotate(45deg) translateY(-20px);
  }
}

@media (max-width: 992px) {
  .call-to-action .container {
    padding: 3rem 1.5rem;
  }

  .call-to-action .shape-1 {
    width: 200px;
    height: 200px;
  }

  .call-to-action .shape-2 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .shape-3 {
    width: 100px;
    height: 100px;
  }

  .call-to-action .dots-1 {
    width: 150px;
    height: 150px;
  }

  .call-to-action .dots-2 {
    width: 120px;
    height: 120px;
  }

  .call-to-action .dots-3 {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 575px) {
  .call-to-action .container {
    border-radius: 0;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  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);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* Alineación a la izquierda */
  justify-content: space-between;
  box-sizing: border-box;
  max-width: 100%;
  height: 100%;
  text-align: left;
  /* Alineación de texto */
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}

.testimonials .testimonial-item p.on {
  font-size: 15px;

  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item p.ot {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  position: relative;
  left: -5px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}


.testimonials .testimonial-item p.text {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials .testimonial-item {
    padding: 20px;
  }

  .testimonials .testimonial-item h3 {
    font-size: 18px;
  }

  .testimonials .testimonial-item p.on,
  .testimonials .testimonial-item p.text {
    font-size: 14px;
  }

  .testimonials .testimonial-item .quote-icon-left,
  .testimonials .testimonial-item .quote-icon-right {
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

.containerStats {
  background-color: #f5f9ff;
}

.stats {
  background-color: #f5f9ff;
  width: auto;
  max-width: 2000px;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-card {
  height: 100%;
  padding: 30px;
  background: var(--surface-color);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.services .service-card:hover {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

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

.services .service-card:hover .read-more {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

.services .service-card .icon {
  width: 60px;
  height: 60px;
  margin-right: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 28px;
  transition: all 0.3s ease;
  line-height: 1;
}

.services .service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.services .service-card p {
  margin-bottom: 25px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
}

.services .service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 500;
  transition: all 0.3s ease;
}

.services .service-card .read-more i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.services .service-card .read-more:hover i {
  transform: translateX(5px);
}


.pricing {
  padding: 0px;
}

.pricing .section-title {
  margin-bottom: 80px !important;
}

/* Reduce el espacio horizontal entre tarjetas */
.pricing .row.g-4>[class*="col-"] {
  padding-left: 5px;
  padding-right: 5px;
}

/* Ajustes generales de las tarjetas */
.pricing .pricing-item {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 80px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pricing .pricing-item h3 {
  color: #000000;
}

.pricing-item ul {
  flex-grow: 1;
  padding: 0;
}

.pricing-item .text-center {
  margin-top: 0;
}

.pricing .pricing-list {
  background-color: var(--surface-color);
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  padding: 20px;
  height: 100%;
  position: relative;
  border-radius: 15px;
}

.pricing-item h3,
.pricing-item p,
.pricing-item ul,
.pricing-item div {
  margin: 0;
  padding: 0;
}

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

@media (max-width: 768px) {
  .pricing .section-title {
    margin-bottom: 40px !important;
  }

  .pricing .row.g-4>[class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }

  .pricing .pricing-item {
    padding: 16px;
    border-radius: 30px;
  }

  .pricing .pricing-list {
    padding: 16px;
    border-radius: 12px;
  }

  .pricing .pricing-item h3 {
    font-size: 20px;
  }

  .pricing .pricing-item p {
    font-size: 16px;
  }

  .pricing-item ul {
    font-size: 15px;
  }
}



.benefit-card h2 {
  color: #CD0C0C;
  font-weight: bold;
}

.benefit-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  background: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out;
}

.benefit-card p {
  margin-top: 5px;
  /* Reduce espacio entre elementos */
}


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

.benefit-icon {
  font-size: 28px;
  color: #0000fe;
  margin-right: 10px;
  vertical-align: top;
}

.benefit-title {
  color: #079cff;
  font-size: 18px !important;
  vertical-align: middle;

  margin: 0;
  /* Elimina márgenes predeterminados */
  padding: 0;
  /* Asegura que no haya relleno adicional */


  padding-left: 1px;
}

.benefit-container {
  padding-top: 0 !important;
  display: flex;
  align-items: center;
  /* Alinea verticalmente */
  gap: 8px;
  /* Espacio entre el ícono y el texto */

}

.benefit-icon {
  font-size: 24px;
  /* Ajusta el tamaño del ícono */
}

.benefit-title {
  margin: 0;
  /* Evita márgenes adicionales */
}






.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #0000FE;
  font-size: 35px;
  text-align: center;
  text-decoration-line: none;
  text-decoration-style: solid;
}

.pricing .icon {
  margin: 30px auto 20px auto;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  transform-style: preserve-3d;
}

.pricing .icon i {
  color: var(--background-color);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  line-height: 0;
}

.pricing .icon::before {
  position: absolute;
  content: "";
  height: 86px;
  width: 86px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

.pricing .icon::after {
  position: absolute;
  content: "";
  height: 102px;
  width: 102px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-2px);
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  text-align: center;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 22px;
  font-weight: 500;
}

/*MR*/
.pricing h5 {
  color: color-mix(in srgb, var(--default-color), transparent 5%);
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}

.amount p {
  color: #CD0C0C !important;
  /* Rojo */
  font-family: var(--heading-font);
  font-size: 48px;
  font-weight: bold;
  text-align: center;

}

.pricing p {
  color: var(--gris-complementario);
  text-align: center;
}

.price p {
  color: var(--gris-complementario);
  text-align: center;
  font-size: 13px;
}

.precios p {
  color: var(--default-color);
  text-align: center;
  font-size: 20px;

}

.PPT p {
  color: var(--rojo-principal);
  text-align: center !important;
  font-size: 20px;
  font-weight: bolder';

}





/*MR*/

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-align: left;
  line-height: 20px;
}

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

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  background-color: var(--rojo-principal);
  color: var(--blanco-extra);
  color: color-mix(in srgb, var(--blanco-extra), transparent 0%);
  display: inline-block;
  padding: 8px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background-color: var(--azul-general);
  color: var(--blanco-extra);
}


.buy-button {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: inline-block;
  padding: 10px 40px 10px 40px;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: none;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.buy-button:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Variante adicional */
.buy-button.secondary {
  background-color: var(--rojo-principal);
  color: var(--blanco-extra);
  border: 1px solid color-mix(in srgb, var(--secondary-color), transparent 80%);
}

.buy-button.secondary:hover {
  background-color: var(--azul-general);
  color: var(--blanco-extra);
}

.pricing .featured {
  z-index: 10;
  border: 3px solid var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured {
    transform: scale(1.15);
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.faq .faq-description {
  font-size: 1rem;
  color: var(--default-color);
  margin-bottom: 2rem;
}

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

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  width: 650px !important;
  max-width: 100%;
  box-sizing: border-box;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

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

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
  font-size: 16px;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

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


/* ===================== */
/* RESPONSIVE CELULARES */
/* ===================== */
@media (max-width: 768px) {
  .faq .faq-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .faq .faq-description {
    font-size: 0.95rem;
    text-align: center;
  }

  .faq .faq-container .faq-item {
    width: 100% !important;
    padding: 16px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 18px;
    margin-right: 20px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    top: 16px;
    right: 16px;
    font-size: 14px;
  }

  .faq .faq-container .faq-item .faq-content p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Call To Action 2 Section
--------------------------------------------------------------*/
.call-to-action-2 {
  padding: 40px 0;
}

.call-to-action-2 .container {
  position: relative;
  z-index: 3;
}

.call-to-action-2 h3,
.call-to-action-2 span {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action-2 p {
  color: var(--default-color);
}

.call-to-action-2 .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid color-mix(in srgb, var(--contrast-color), transparent 30%);
  background-color: #ffffff;
  text-decoration: none;
  color: #000000;
}

.call-to-action-2 .cta-btn:hover {
  background: var(--accent-color);
  color: #ffffff;
  border: none;
}

/*--------------------------------------------------------------
# Responsive for Mobile
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .call-to-action-2 {
    padding: 30px 15px;
    text-align: center;
  }

  .call-to-action-2 h3,
  .call-to-action-2 span {
    font-size: 22px;
  }

  .call-to-action-2 .cta-btn {
    font-size: 18px;
    padding: 10px 25px;
    margin: 8px auto;
    display: block;
    width: fit-content;
  }
}








.cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px auto;
  /* centrado */
  border: none;
  background: var(--accent-color);
  text-decoration: none;
  color: #ffffff;
  display: block;
  /* para centrar en pantallas pequeñas */
  text-align: center;
  max-width: max-content;
}

.cta-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 30%);
}

/* Responsivo para teléfonos */
@media (max-width: 768px) {
  .cta-btn {
    font-size: 18px;
    padding: 10px 30px;
    margin-left: auto;
    margin-right: auto;
  }
}






.call-to-action-2 .cta-btn2 {
  font-family: var(--heading-font);
  font-weight: bolder;
  font-size: 28px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #234880;
  background-color: #CD0C0C;
}

.call-to-action-2 .cta-btn2:hover {
  background-color: #CD0C0C;
  color: #ffffff;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
}

.contact .info-box h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .contact .info-box h3 {
    font-size: 1.75rem;
  }
}

.contact .info-box p {
  opacity: 0.8;
  margin-bottom: 2rem;
}

.contact .info-box a {
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .contact .info-box {
    padding: 1.5rem;
  }
}

.contact .info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  background-color: #3c3c3c;
}

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

.contact .info-item .icon-box {
  width: 3.5rem;
  height: 3.5rem;
  background-color: color-mix(in srgb, var(--contrast-color), transparent 85%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-box i {
  font-size: 1.5rem;
  color: #3c3c3c;
}

.contact .info-item:hover .icon-box {
  background-color: #3c3c3c;
}

.contact .info-item .content h4 {
  color: var(--contrast-color);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact .info-item .content p {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.contact .info-item .content p:last-child {
  margin-bottom: 0;
}


.contact .contact-form {
  background-color: var(--surface-color);
  padding: 3rem;
  border-radius: 1rem;
  height: 100%;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
  .contact .contact-form {
    padding: 1.5rem;
  }
}

.contact .contact-form h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact .contact-form h3 {
    font-size: 1.75rem;
  }
}

.contact .contact-form p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;
}

.contact .contact-form .form-control,
.contact .contact-form .form-select {
  padding: 0.875rem 1.25rem;
  border-color: color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 0.5rem;
  background-color: #3c3c3c;
  color: var(--default-color);
}

.contact .contact-form .form-control:focus,
.contact .contact-form .form-select:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.contact .contact-form .form-control::placeholder,
.contact .contact-form .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact .contact-form .btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1rem 2rem;
  border-radius: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: 0.3s;
}

.contact .contact-form .btn i {
  font-size: 1.25rem;
}

.contact .contact-form .btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), var(--contrast-color) 20%);
}

@media (max-width: 768px) {
  .info-wrapper .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }

  .info-wrapper .semiboldis {
    order: 1;
    width: 100%;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .info-wrapper .col-lg-6 {
    order: 2;
    width: 48%;
    padding: 0;
    margin: 0;
  }

  .info-wrapper .contact-info {
    width: 100%;
  }

  .info-wrapper .contact-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 0;
    border-radius: 10px;
    text-decoration: none;
    color: #CD0C0C;
    font-weight: 600;
    font-size: 16px;
    background-color: #3c3c3c;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .info-wrapper .contact-info a:hover {
    background-color: #3c3c3c;
  }

  .info-wrapper .contact-info i {
    font-size: 18px;
    color: inherit;
  }

  .info-wrapper p.contact-number {
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box+.service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resalt {
  font-weight: bold;
  text-align: center;
}



.ima-head {
  transform: scale(2);
  margin-left: 50%;
  margin-bottom: 20%;
}



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

.bprimary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 20%);
  border-color: color-mix(in srgb, var(--accent-color), black 20%);
}

.blink {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.blink:hover {
  color: var(--accent-color);
}

.blink i {
  font-size: 1.5rem;
  vertical-align: middle;
}

.recus {
  margin-top: 0% !important;
  padding-top: 0% !important
}

.oculto {
  display: none;
}




/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.noh4 {
  font-size: 24px;
  padding: 50px 0;
  font-weight: bold;
  margin-top: 0%;
  text-align: center !important;

}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--background-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

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

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

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

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

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

.footer .footer-links ul i {
  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: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

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

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

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

.footer .credits {
  margin-top: 3px;
  font-size: 8px;
}

.footer .bnregistro {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  margin: 10px;
}

.contact-form {
  padding: 0;
  /* Elimina espacios interiores si no son necesarios */
  background: transparent;
  /* Si tiene fondo blanco que quieras quitar */
  box-shadow: none;
  /* Opcional si no quieres sombra */
  border-radius: 0;
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 12px;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.resalt {
  font-weight: bold;
  text-align: center !important;
}

.margens {
  margin-top: 100px !important;

}

.margen {
  margin-top: 75px !important;
}

.btn-registro {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
}


.p.lst {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.subgenerales {
  font-size: 1.75rem !important;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 700;
}

.subgenerales2 {
  font-size: 1.75rem !important;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 700;
  color: #CD0C0C;
}

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

.msn {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 1.1rem;
  font-family: var(--default-font);
}

.msn2 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 2rem;
  font-family: var(--default-font);
  text-align: center !important;
}




.msn3 {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 0%;
  display: inline-block;
  font-size: 2rem;
  font-family: var(--default-font);
  text-align: center !important;
}

.p-msn3 {
  margin-top: 0%;
}

.stats-box {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}

.stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

.stat-item {
  flex: 0 0 calc(50% - 2rem);
  display: flex;
  gap: 1rem;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 123, 255, 0.1);
  /* azul claro */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 1.25rem;
  color: #CD0C0C;
  /* azul */
}

.stat-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
  font-weight: 600;
}

.stat-content p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .stat-item {
    flex: 0 0 100%;
  }
}

.botonesCTA {
  margin-left: 5% !important;
}

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

.CTA1:hover {
  color: #CD0C0C;
  background-color: #ffffff;
  border-color: #CD0C0C;
}





.mi-stats-box {
  display: inline-block;
  /* Se adapta al tamaño del contenido */
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 1.5rem 2rem;
  /* puedes ajustar según tus necesidades */
  margin-top: 3rem;
}


.mi-stats-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 4rem;
}

.mi-stat-item {
  flex: 0 0 calc(50% - 2rem);
  display: flex;
  gap: 1rem;
}

.mi-stat-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(0, 123, 255, 0.1);
  /* azul claro */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mi-stat-icon i {
  font-size: 1.25rem;
  color: #CD0C0C;
  /* azul */
}

.mi-stat-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
  font-weight: 600;
}

.mi-stat-content p {
  font-size: 0.875rem;
  color: #555;
  margin: 0;
}

@media (max-width: 768px) {
  .mi- stat-item {
    flex: 0 0 100%;
  }
}


.mi-card {
  display: inline-block;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem 1.5rem;
  margin: 1rem;
  max-width: 320px;
}

.mi-card-content {
  display: flex;
  gap: 1rem;
}

.mi-card-icon i {
  font-size: 2rem;
  color: #CD0C0C;
  /* color similar al de la imagen */
}

.mi-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: #001c54;
  /* azul oscuro */
}

.mi-card-description {
  font-size: 0.875rem;
  color: #6c757d;
  /* gris suave */
  margin: 0.25rem 0 0 0;
}


.rrousel-container {
  overflow: hidden;
  width: 100%;
  /* o el ancho que necesitas */
}


.rrousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}

.rrousel-card {
  flex: 0 0 calc(100% / 3);
  /* 3 cards visible */
  padding: 1rem;
  box-sizing: border-box;
}

.rrousel-card-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: start;
}

.rrousel-card-content i {
  font-size: 2rem;
  color: #CD0C0C;
}

.rrousel-card-content h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #001c54;
}

.rrousel-card-content p {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #6c757d;
}

/* Dots */
.rrousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.rrousel-dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.rrousel-dot.active {
  background: #4a90e2;
}


.sctn {
  background-color: #F4F6F7;
}

.ctner {

  max-width: 900px;
  margin: auto;
  padding: 20px;
  font-family: 'Arial', sans-serif;
}

.paso-titulo {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
}

.paso-titulo span {
  color: #1e60ac;
  text-decoration: underline;
}

.paso-subtitulo {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}

.paso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0px !important;
  gap: 10px;
  flex-wrap: wrap;
}


.paso-img {
  width: 200px;
  height: auto;
}

.paso-texto {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  margin-bottom: 0%;
  margin-top: 0%;
}

.paso-numero {
  background-color: #BBBBBB;
  color: var(--accent-color);
  font-size: 55px;
  font-weight: bold;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  /* ← igual al width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.paso-numeros {
  background-color: #BBBBBB;
  color: var(--accent-color);
  font-size: 55px;
  font-weight: bold;
  border-radius: 50%;
  width: 95px;
  height: 65px;
  /* ← igual al width */
  display: flex;
  justify-content: center;
  align-items: center;
}


.paso-contenido h3 {
  color: var(--accent-color);
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: bold;
}

.paso-contenido p {
  font-size: 15px;
  margin: 0;
}

.pleft {
  text-align: left !important;
}

.pright {
  text-align: right !important;
}

/* FORZAR la dirección normal */
.paso.alterno {
  flex-direction: row !important;
}

/* FORZAR la dirección invertida */
.paso.alterno.invertido {
  flex-direction: row-reverse !important;
}


.validez-contenido {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.validez-img {
  width: 400px;
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}

.validez-texto {
  flex: 1;
  min-width: 280px;
}

.validez-titulo {
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1e60ac;
  text-align: center;
}

.validez-texto p {
  margin-bottom: 10px;
  font-size: 18px;
}

.validez-texto ul {
  padding-left: 20px;
  margin-bottom: 10px;
}

.validez-texto ul li {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.2;
}


.validez-nota {
  font-style: italic;
  color: #444;
  font-size: 14px;
}

.RVideo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
}

.RVideo-texto {
  max-width: 400px;
}

.RVideo-texto h2 {
  font-size: 1.6rem;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
}

.RVideo-texto p {
  font-size: 1rem;
  color: #333;
  margin: 0.3rem 0;
}

.RVideo-flecha {
  margin: 1.5rem auto;
  text-align: center;
}

.RVideo-flecha-svg {
  display: block;
  margin: 0 auto;
}

/* Ocultar completamente en pantallas pequeñas */
@media (max-width: 768px) {
  .RVideo-flecha {
    display: none;
  }
}

.RVideo-imagen {
  position: relative;
  width: 600px;
  /* tamaño mayor */
  max-width: 100%;
  cursor: pointer;
}


.RVideo-imagen img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.RVideo-imagen img:hover {
  transform: scale(1.03);
}

.RVideo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.remarcs {
  color: #000000;
  font-weight: bolder;
  display: inline-block !important;
}

.RVideo-container2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 100%;
  text-align: center;
  font-family: Arial, sans-serif;
}

.RVideo-texto2 {
  max-width: 400px;
}

.RVideo-texto2 h2 {
  font-size: 2.2rem;
  color: #1e1e1e;
  margin-bottom: 0.5rem;
  text-align: center !important;
}

.RVideo-texto2 p {
  font-size: 16px;
  color: #000000;
  margin: 0.3rem 0;
  text-align: left;
}

.RVideo-texto2 span {
  display: block;
  /* ← Esto es lo clave */
  font-size: 22px;
  font-weight: bolder;
  color: #000000;
  margin-bottom: 2rem;
  /* Aumenta el espacio con lo que sigue */
  text-align: left;
}


.RVideo-lista {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  color: #000;
}

.RVideo-lista div {
  display: flex;
  align-items: center;
  font-size: 16px;
}

.RVideo-lista i {
  color: #CD0C0C;
  margin-right: 0.5rem;
  font-size: 1.1rem;
}


.HSUB {
  font-size: 2.2rem;
  color: #1e1e1e;
  margin-bottom: 2;
  text-align: center !important;
}


/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.desplegables {
  background-color: #CD0C0C !important;
  max-width: 800px;
}

.how-we-work .process-container {
  max-width: 800px;
  margin: 0 auto;

  padding: 2rem 0;
}

.how-we-work .process-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 2.5rem;
}

.how-we-work .process-item:last-child {
  padding-bottom: 0;
}

.how-we-work .process-item .content {
  width: 100%;
  position: relative;
  background: linear-gradient(145deg, color-mix(in srgb, var(--accent-color), transparent 95%), var(--surface-color));
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-we-work .process-item .content:hover {
  transform: translateX(10px);
  box-shadow: -8px 8px 25px rgba(0, 0, 0, 0.1);
}

.how-we-work .process-item .content:hover .step-icon {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 15%), var(--accent-color));
  transform: rotate(10deg);
}

.how-we-work .process-item .content:hover .step-number {
  transform: translateX(-5px);
  opacity: 1;
}

.how-we-work .process-item .step-number {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: var(--heading-font);
  line-height: 1;
  opacity: 0.2;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.how-we-work .process-item .card-body {
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.how-we-work .process-item .step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.how-we-work .process-item .step-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.how-we-work .process-item .step-content h3 {
  color: #CD0C0C;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.how-we-work .process-item .step-content p {
  color: #000000;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.h3s {
  font-size: 48px !important;
}

.ps {
  font-size: 20px !important;
}

.ps4 {
  font-size: 18px !important;
}

.how-we-work .process-item .arrow {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  margin: 1rem 0;
  width: 100px;
  height: 100px;
  opacity: 0.7;
}

@media (max-width: 767.98px) {
  .how-we-work .process-container {
    padding: 1rem 0;
  }

  .how-we-work .process-item {
    padding-bottom: 2rem;
  }

  .how-we-work .process-item .content {
    border-width: 1px;
  }

  .how-we-work .process-item .content:hover {
    transform: translateY(-5px);
  }

  .how-we-work .process-item .step-number {
    font-size: 3rem;
    left: 50%;
    top: -1.5rem;
    transform: translateX(-50%);
  }

  .how-we-work .process-item .step-number:hover {
    transform: translateX(-50%);
  }

  .how-we-work .process-item .card-body {
    padding: 2rem 1.5rem 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .how-we-work .process-item .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .how-we-work .process-item .step-icon i {
    font-size: 1.75rem;
  }

  .how-we-work .process-item .step-content h3 {
    font-size: 1.25rem;
  }

  .how-we-work .process-item .arrow {
    height: 60px;
    margin: 0.5rem 0;
  }
}






.cfdi-darrows {
  padding: 40px 0;
  background: #ffffff;
  color: #fff;
  text-align: center;
}

.cfdi-darrows h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.cfdi-darrows .description {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #000000;
}

.darrows {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.darrow {
  position: relative;
  background: #CD0C0C;
  color: #fff;
  padding: 20px;
  width: 280px;
  min-height: 140px;
  text-align: left;
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%, 10% 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.darrow .number {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.darrow .text {
  font-size: 1rem;
}

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

.cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: #111;
}

.cta-buttons .btn-secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #000000;
}

.cta-buttons .btn-primary:hover {
  background: #ffffff !important;
  color: #000000 !important;
  border: none !important;
}

.cta-buttons .btn-secondary:hover {
  background: #CD0C0C;
  color: #ffffff;
}

@media (max-width: 768px) {
  .darrow {
    width: 100%;
    clip-path: none;
    border-left: 5px solid #CD0C0C;
    border-radius: 10px;
  }

  .darrow .number {
    font-size: 2rem;
  }

  .darrow .text {
    font-size: 0.95rem;
  }
}



.contenedor-cfdi h2 {
  font-size: 32px;
  color: #2c3e50;
  border-bottom: 2px solid #CD0C0C;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 10px;
}

.subtitulo {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.grid-cfdi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* ← esta línea cambia */
  gap: 35px;
  justify-content: center;
}


.contenedor-cfdi {
  text-align: center;
  font-family: Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  font-size: 24px;
}

.box {
  padding: 20px 20px;
  border-radius: 12px;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;

}

.nota-final {
  font-size: 20px;
  margin-top: 30px;
  color: #444;
  line-height: 1.5;
}


.col3 {
  width: 320px;
}

.gris {
  background-color: #ccc;
  color: #CD0C0C;
}

.azul {
  background-color: #e9f2ff;
  color: #CD0C0C;
}

.azul-claro {
  background-color: #f2f6fc;
  color: #CD0C0C;
}

.azul-oscuro {
  background-color: #aacce6;
  color: #CD0C0C;
}

.nota-final strong {
  color: #CD0C0C;
}

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

  .col3 {
    width: auto;
  }
}






.benefits-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.benefit {
  text-align: left;
}

.benefit img {
  width: 40px;
  margin-bottom: 1rem;
}

.benefit h3 {
  color: #1a4dd4;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.benefit p {
  margin: 0;
  color: #444;
}

.pcent {
  text-align: center !important;
  font-size: 32px;
}



.estadisticas-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.contenedor-estadisticas {
  max-width: 1200px;
  margin: 0 auto;
}

.fila-estadisticas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centrado horizontal */
  gap: 20px;
}

.bloque-estadistica {
  width: 100%;
  max-width: 260px;
  /* ancho fijo controlado */
  background: #ffffff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.bloque-estadistica:hover {
  transform: translateY(-5px);
}

.bloque-estadistica span {
  display: block;
  font-size: 2.5rem;
  font-weight: bold;
  color: #007bff;
}

.bloque-estadistica p {
  margin-top: 10px;
  font-size: 1rem;
  color: #333;
}


.bolds {
  font-size: 18px !important;
  text-align: center;
}

.icons {
  color: var(--accent-color);
  font-size: 35px;
}

.HFact {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}

.H3Fact {
  font-size: 56px !important;
  font-weight: bold;
}

.H3Factu {
  font-size: 47px !important;
  font-weight: bold;
}

/*--------------------------------------------------------------
# Features Cards Section
--------------------------------------------------------------*/
.tarjetas {
  --default-color: #E5E8EC;
  --heading-color: #E5E8EC;
}

.tarjetas .feature-box {
  width: 100%;
  min-height: 200px;
  padding: 20px;
  border-radius: 20px;
  background-color: #E5E8EC !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  gap: 10px;
}

.tarjetas .feature-box.gray {
  background-color: #d8d8d9;
}

.tarjetas .feature-box i {
  font-size: 40px;
  color: var(--accent-color);
}

.tarjetas .feature-box p {
  font-size: 22px;
  margin: 0;
  color: #111;
}

.tarjetas .feature-box p strong {
  display: block;
  font-weight: 700;
}

.tarjetas .feature-box p.dp {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: center;
}

/*--------------------------------------------------------------
# Article Button
--------------------------------------------------------------*/
.article {
  background-color: #0000fe !important;
  border-radius: 50px;
  border-color: #0000fe !important;
}

/*--------------------------------------------------------------
# Responsive (Mobile <768px)
--------------------------------------------------------------*/
@media (max-width: 767.98px) {
  .tarjetas .ocultar-en-movil {
    display: none !important;
  }

  .tarjetas .feature-box {
    padding: 15px;
  }

  .tarjetas .feature-box p {
    font-size: 18px;
  }
}


/* Control de ancho del contenido */
.tarjetas .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* En móviles, permitir que use más espacio */
@media (max-width: 767.98px) {
  .tarjetas .container {
    max-width: 100% !important;
    padding: 0 10px;
  }
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.page-title {
  background-color: #f5f5f5;
  padding: 20px 0;
}

.container-full {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-8 {
  flex: 0 0 66.6666%;
  max-width: 66.6666%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

@media (max-width: 768px) {

  .col-8,
  .col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}







/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 30px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  min-height: 45em;
  max-height: 60em;
  overflow-y: auto;
}



.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

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

@media (max-width: 768px) {
  .sidebar {
    display: none !important;
  }
}


.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}


/* .recent-posts-widget {

  height: 5000px !important;

} */

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
  text-decoration: none;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}








.tags-widget {
  margin-bottom: -10px;
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

.contenedor-tarjetas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

.tarjetas-largas {
  display: flex;
  align-items: center;
  background-color: #e9edf1;
  border-radius: 1rem;
  height: 80px;
  width: 490px;
  font-size: 1.1rem;
  padding: 0 1rem;
  gap: 0.4rem;
}

/* 🔽 RESPONSIVO para celulares */
@media (max-width: 768px) {
  .tarjetas-largas {
    width: 100%;
    font-size: 1rem;
    height: auto;
    padding: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .contenedor-tarjetas {
    padding: 0 1rem;
  }
}


.tarjetas-largas .icon {
  font-size: 1.8rem;
  color: #c40000;
  margin: 0;
}

.titulares {
  margin-left: 25% !important;
}

.fst-italic {
  font-size: 22px;
  color: #000;
  text-align: justify;
}

.pie-pagina {
  font-size: 13px;
  font-style: italic;
  padding: 0;
  margin: 0;
  line-height: 1.1;
}

.h2-centrados {
  text-align: center;
  font-weight: bold;
}

/* Tabla original */
.tablaPrecios {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Segoe UI', sans-serif;
  margin: 1em 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tablaPrecios th,
.tablaPrecios td {
  padding: 1rem;
  text-align: center;
}

.tablaPrecios thead {
  background-color: #f4f6f8;
}

.tablaPrecios th {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #333;
  border-bottom: 2px solid #ddd;
}

.tablaPrecios td {
  background-color: #fff;
  border-bottom: 1px solid #eee;
  font-weight: 500;
}

.tablaPrecios tr:hover td {
  background-color: #f0f9ff;
}

.tablaPrecios .plan-nombre {
  text-align: left;
  font-weight: bold;
  color: #2a2a2a;
}

.tablaPrecios .precio {
  color: var(--accent-color);
  font-weight: bold;
  font-size: 20px;
}

.tablaPrecios .si {
  color: #10b981;
  font-weight: bold;
}

/* Responsivo para celular */
@media (max-width: 767px) {
  .tablaPrecios {
    border: 0;
    box-shadow: none;
  }

  .tablaPrecios thead {
    display: none;
  }

  .tablaPrecios tr {
    display: block;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .tablaPrecios td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  .tablaPrecios td::before {
    content: attr(data-label);
    font-weight: bold;
    color: #555;
    flex: 1;
    margin-right: 1rem;
  }

  .tablaPrecios td:last-child {
    border-bottom: none;
  }
}



/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-subtitle {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
}

.blog-posts {
  padding-top: 30px;
}

.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: var(--color-negro);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.btn-descargar {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content .sub-title {
  color: var(--heading-color);
  font-size: 25px;
  font-weight: 700;
  padding: 0;
  margin: 10px 0;
}

.blog-details .content .sub-titles {
  color: var(--color-negro);
  font-size: 25px;
  font-weight: 700;
  padding: 0;
  margin: 10px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-negro);
}

.blog-details .meta-top a {
  color: var(--color-negro);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Author Section
--------------------------------------------------------------*/
.blog-author {
  padding: 10px 0 40px 0;
}

.blog-author .author-container {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog-author h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog-author .social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  margin-right: 5px;
}

.blog-author p {
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}