 :root {
   --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
   --heading-font: "Nunito", sans-serif;
   --nav-font: "Inter", sans-serif;
   --dark-overlay-color: rgb(0 0 0);
   --light-overlay-color: rgb(212, 243, 253);
 }

 /* 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: #ccfcf4;
   /* Background color for the entire website, including individual sections */
   --default-color: #3d4348;
   /* Default color used for the majority of the text content across the entire website */
   --heading-color: #3e5055;
   /* Color for headings, subheadings and title throughout the website */
   --accent-color: #388da8;
   /* 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. */
 }

 /* 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: #d8d8d8;
   /* The default color of the main navmenu links */
   --nav-hover-color: #77b6ca;
   /* 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: #313336;
   /* Used for navigation links of the dropdown items in the navigation menu. */
   --nav-dropdown-hover-color: #77b6ca;
   /* 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: #f8fbfc;
   --surface-color: #ffffff;
 }

 .dark-background {
   --background-color: #060606;
   --default-color: #ffffff;
   --heading-color: #ffffff;
   --surface-color: #252525;
   --contrast-color: #ffffff;
 }

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

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

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

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

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

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

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

 @media (max-width: 480px) {
   .header .logo img {
     max-height: 2em;
   }

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

 .header .btn-getstarted,
 .header .btn-getstarted:focus {
   color: var(--contrast-color);
   background: var(--accent-color);
   font-size: 14px;
   padding: 8px 25px;
   margin: 0 0 0 30px;
   border-radius: 50px;
   transition: 0.3s;
 }

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

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

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

   .header .navmenu {
     order: 3;
   }
 }

 .scrolled .header {
   box-shadow: 0px 0 18px rgb(0, 0, 0);
 }

 /* Index Page Header
------------------------------*/
 .index-page .header {
   --background-color: rgb(51 51 51);

   .sitename {
     color: white;
   }
 }


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

 /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

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

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

   .navmenu li {
     position: relative;

   }

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

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

   .navmenu li: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;
     top: 130%;
     opacity: 0;
     transition: 0.3s;
     border-radius: 4px;
     z-index: 999999999999999999999999;
     box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
   }

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

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

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

   .navmenu .dropdown ul a:hover,
   .navmenu .dropdown ul .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 .megamenu {
     position: static;
   }

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

   .navmenu .megamenu ul li {
     flex: 1;
   }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

 .footer .footer-about .logo img {
   max-height: 40px;
   margin-right: 6px;
 }

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

 #preloader:before,
 #preloader:after {
   content: "";
   position: absolute;
   border: 4px solid var(--accent-color);
   border-radius: 50%;
   animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
 }

 #preloader:after {
   animation-delay: -0.5s;
 }

 @keyframes animate-preloader {
   0% {
     width: 10px;
     height: 10px;
     top: calc(50% - 5px);
     left: calc(50% - 5px);
     opacity: 1;
   }

   100% {
     width: 72px;
     height: 72px;
     top: calc(50% - 36px);
     left: calc(50% - 36px);
     opacity: 0;
   }
 }

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

 .scroll-telegram{
  width: 44px;
  position: fixed;
  bottom: 15px;
  z-index: 99;
  left: 15px;
  visibility: hidden;
  opacity: 0;
 }


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

 .scroll-telegram.active{
  width: 44px;
  position: fixed;
  bottom: 15px;
  z-index: 99;
  left: 15px;
  visibility: visible;
  opacity: 1;
 }

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

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

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

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

 .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: 20px 0;
   scroll-margin-top: 100px;
   overflow: clip;
 }

 @media (max-width: 1199px) {

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

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

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

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

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

 /*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
 .hero {
   width: 100%;
   min-height: 100vh;
   position: relative;
   padding: 120px 0 40px 0;
   display: flex;
   align-items: center;
   overflow: hidden;
 }

 .hero .hero-bg img {
   position: absolute;
   inset: 0;
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: 1;
 }

 .hero .hero-bg::before {
   content: "";
   background: color-mix(in srgb, var(--background-color), transparent 15%);
   position: absolute;
   inset: 0;
   z-index: 2;
 }

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

 .hero h1 {
   margin: 0;
   font-size: 48px;
   font-weight: 700;
   line-height: 56px;
 }

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

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

 @media (min-width: 768px) {
   .hero .hero-img {
     max-width: 600px;     
   }

 }

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

 .btn-get-started {
   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: 10px 28px;
   border-radius: 50px;
   transition: 0.5s;
   box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
   text-align: center;
 }

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

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

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

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

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

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

   .hero p {
     font-size: 18px;
     line-height: 24px; 
   }

   .btn-get-started,
   .btn-watch-video {
     font-size: 13px;
   }
 }

 /*--------------------------------------------------------------
# ANIMATION LOTTIE CELULAR
--------------------------------------------------------------*/
 .lottie-container {
   width: 100%;
   height: auto;
   padding: 90px 0 40px 0;
 }

 /*--------------------------------------------------------------
# ANIMATION Estrellita ninja
--------------------------------------------------------------*/
 .star-logo {
   display: block;
   margin: 0 auto;
   transform-origin: center;
   animation: spin 4s ease-out forwards;
   /* Inicia la animación */
 }

 /* Definición de la animación 'spin' */
 @keyframes spin {
   0% {
     transform: rotate(0deg);
   }

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

 /*--------------------------------------------------------------
# SPINNER
--------------------------------------------------------------*/

 .spinner-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100vw;
   height: 100vh;
   justify-content: center;
   align-items: center;
   background-color: var(--dark-overlay-color);
   z-index: 99999999999999999999999;
 }

 body[class="index-page dark-background"] .spinner-overlay {
   background-color: var(--dark-overlay-color);
 }

 body[class="index-page light-background"] .spinner-overlay {
   background-color: var(--light-overlay-color);
 }

 /* Estilo para el spinner */
 .spinner {
   width: 8rem;
   height: 8rem;
   animation: spin 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
 }

 /* Animación de giro */
 @keyframes spin {
   0% {
     transform: rotate(0deg);
   }

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


 /*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
 .pricing .pricing-item {
   background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
   padding: 40px 40px;
   height: auto;
   border-radius: 15px;
   margin-top: -6em;
 }

 .pricing h3 {
   font-weight: 600;
   margin-bottom: 15px;
   font-size: 2em;
   text-align: center;
 }

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

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

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

 .pricing .description {
   font-size: 14px;
 }

 .pricing .cta-btn {
   border: 1px solid var(--default-color);
   color: var(--default-color);
   display: block;
   text-align: center;
   padding: 10px 35px;
   border-radius: 5px;
   font-size: 16px;
   font-weight: 500;
   font-family: var(--heading-font);
   transition: 0.3s;
   margin-top: 20px;
   margin-bottom: 6px;
 }

 .pricing .cta-btn:hover {
   background: var(--accent-color);
   color: var(--contrast-color);
   border-color: var(--accent-color);
 }

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

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

 @media (min-width: 461px) {

   /* Estilos para pantallas mayores a 460px */
   .pricing ul li {
     justify-content: center;
   }
 }

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

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

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

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

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

 .pricing .featured {
   position: relative;
 }



 .pricing .featured .cta-btn {
   background: var(--accent-color);
   color: var(--contrast-color);
   border-color: var(--accent-color);

 }

 #classBtnI {
   justify-content: center;
 }

 #classBtnL {
   justify-content: center;
 }

 @media (max-width: 992px) {
   .pricing .box {
     max-width: 60%;
     margin: 0 auto 30px auto;
   }
 }

 @media (max-width: 767px) {
   .pricing .box {
     max-width: 80%;
     margin: 0 auto 30px auto;
   }
 }


 .container-pricing-wrapper {
   display: flex;
   flex-direction: column;
   /* Apilado vertical en pantallas pequeñas */
   gap: 20px;
   /* Espacio entre las secciones */
 }

 @media (max-width: 420px) {
   .pricing .box {
     max-width: 100%;
     margin: 0 auto 30px auto;
   }
 }

 @media (min-width: 501px) {
   .container-pricing-wrapper {
     flex-direction: row;
     /* Alineación horizontal */
     justify-content: space-between;
     /* Espacio entre las secciones */
   }

   /* Asegurar que las secciones tengan el mismo ancho en pantallas grandes */
   #pricingImpact,
   #pricingLite {
     flex: 1;
     /* Esto asegura que ambas secciones ocupen el mismo espacio disponible */
     margin-bottom: 0;
     /* Eliminar el espacio inferior en pantallas grandes */
   }

   .col-lg-4.aos-init.aos-animate {
     width: 100%;
   }

 }

 /*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
 .faq .section-title {
   padding-bottom: 20px;
 }

 .faq .faq-container .faq-item {
   position: relative;
   padding: 20px;
   margin-bottom: 15px;
   border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
   border-radius: 5px;
   overflow: hidden;
   max-height: 80px;
   transition: max-height 0.3s ease-out;
 }




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

 .faq .faq-container .faq-item h3 {
   font-weight: 600;
   font-size: 16px;
   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;
 }

 .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 {
   background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
   border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
   max-height: 1000px;
 }

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


 /* MODO OSCURO*/
 /* Ajustamos el tamaño de la wrapper */
 .wrapper {
   opacity: 0;
   height: 1.6em;
   /* Nuevo alto */
   width: 3.8em;
   /* Nuevo ancho */
   background: #3c4145;
   position: absolute;
   overflow: hidden;
   bottom: 0;
   left: 15%;
   transform: translate(-50%, -50%);
   border-radius: 2em;
   /* Redondeo proporcional */
   transition: all 0.35s ease;
   z-index: 9999999;
 }

 #wrapper {
   transition: opacity 0.3s ease;
 }

 .hidden {
   display: none;
 }

 @media (min-width: 1200px) {
   .wrapper {
    top: 10%;
    left: 3%;
    position: fixed;
   }
 }

 .wrapper:hover {
   cursor: pointer;
 }

 .wrapper.active {
   background: #09f;
 }

 .switch {
   position: absolute;
   z-index: 2;
   transition: all 0.35s ease;
   margin: 0.25em;
   height: 1.1em;
   width: 1.1em;
   left: 0;
   border-radius: 50%;
   /* Hacerlo circular */
   background: #ffffff;
   border: 0.2em solid #333;
   /* Borde reducido */
   box-sizing: border-box;
 }

 .switch.active {
   right: 13.4em;
 }



 .crater {
   position: absolute;
   border-radius: 50%;
   height: 25%;
   width: 25%;
   background: transparent;
   box-shadow: inset 0 0 0 4px #e3e7c7;
 }

 .active .crater {
   display: none;
 }

 .crater:nth-child(1) {
   top: 12%;
   left: 22%;
 }

 .crater:nth-child(2) {
   top: 49%;
   left: 10%;
   transform: scale(0.7);
 }

 .crater:nth-child(3) {
   top: 50%;
   left: 60%;
 }

 .switch {
   background: #ffffff;
   border-color: #e3e7c7;
 }

 .active .switch {
   background: #ffdf6d;
   border-color: #e1c448;
   left: 2.2em;
 }

 .clouds,
 .stars {
   position: absolute;
   height: 100%;
   width: 66%;
   z-index: 1;
   transition: all 0.35s ease;
 }

 .clouds {
   left: 0;
 }

 .stars {
   right: 0;
 }

 .clouds {
   opacity: 0;
 }

 .active .clouds {
   opacity: 1;
 }

 .stars {
   opacity: 1;
 }

 .active .stars {
   opacity: 0;
 }

 .stars {
   right: 0;
 }

 .active .stars {
   right: -10%;
 }

 .stars .star {
   position: absolute;
   height: 0;
   width: 6%;
   padding-bottom: 6%;
   border-radius: 50%;
   background: #fff;
 }

 .active .stars .star {
   transform: scale(0) !important;
   transition: all 0.7s ease;
 }

 .stars .star:nth-child(1) {
   top: 26%;
   left: 64%;
   transform: scale(0.6);
   transition-delay: 0.2s;
 }

 .stars .star:nth-child(2) {
   top: 20%;
   left: 34%;
   transform: scale(0.7);
   transition-delay: 0.4s;
 }

 .stars .star:nth-child(3) {
   top: 38%;
   left: 18%;
   transform: scale(0.4);
   transition-delay: 0.65s;
 }

 .stars .star:nth-child(4) {
   top: 67%;
   left: 30%;
   transform: scale(0.55);
   transition-delay: 0.85s;
 }

 .stars .star:nth-child(5) {
   top: 49%;
   left: 48%;
   transform: scale(0.7);
   transition-delay: 1s;
 }

 .stars .star:nth-child(6) {
   top: 68%;
   left: 72%;
   transform: scale(0.7);
   transition-delay: 1.05s;
 }

 .clouds {
   left: -10%;
 }

 .active .clouds {
   left: 0;
 }

 .clouds .cloud {
   position: absolute;
   background: #fff;
   border-radius: 999px;
 }

 .clouds .cloud:nth-child(1) {
   top: 45%;
   left: 25%;
   width: 50%;
   height: 25%;
   border-radius: 999px;
 }

 .clouds .cloud:nth-child(2) {
   top: 30%;
   left: 52%;
   width: 15%;
   padding-bottom: 15%;
   height: 0;
 }

 .clouds .cloud:nth-child(3) {
   top: 24%;
   left: 32%;
   width: 25%;
   padding-bottom: 25%;
   height: 0;
 }

 /*--------------------------------------------------------------
# PERFIL USUARIO LOGIN
--------------------------------------------------------------*/

 .btn-login {
   display: inline-block;
   background-color: var(--background-color);
   color: var(--default-color);
   font-size: 18px;
   font-weight: 600;
   padding: 14px 32px;
   border-radius: 50px;
   transition: all 0.3s ease;
   text-decoration: none;
   text-align: center; 
   border: 2px solid #fff;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
   z-index: 99999999999999999999999; 
   cursor: pointer;
   user-select: none;
 }

 .btn-login:hover {
   background-color: rgb(0, 255, 240);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   transform: scale(1.05);
 }

 .btn-login:active {
   background-color: rgb(0, 255, 240);
   transform: scale(1);
 }

 .btn-login:focus {
   outline: none;
   box-shadow: 0 0 15px rgb(0, 255, 240);
 }

 @media (max-width: 600px) {
  .btn-login {
    font-size: 16px;
    padding: 12px 28px; 
  }
}


 .user-profile {
   display: flex;
   flex-direction: column;
   align-items: center;
   /* Centra los elementos horizontalmente */
   justify-content: center;
   gap: 10px;
   /* Espacio entre la imagen, nombre y botón */
   margin-bottom: 30px;
   /* Separación de los elementos */
 }

 /* Estilo para la imagen del perfil */
 .user-profile img {
   width: 80px;
   /* Tamaño adecuado */
   height: 80px;
   border-radius: 50%;
   border: 4px solid var(--accent-color);
   /* Borde que destaca */
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   /* Sombra sutil */
   transition: transform 0.3s ease;
   /* Efecto de zoom */
 }

 .user-profile img:hover {
   transform: scale(1.1);
   /* Efecto de zoom al pasar el mouse */
 }

 /* Estilo para el nombre del usuario */
 .user-profile span {
   color: var(--heading-color);
   font-size: 18px;
   font-weight: 600;
   text-align: center;
   margin-top: 10px;
 }

 /* Estilo para el botón */
 .user-btn {
   padding: 12px 30px;
   background-color: var(--accent-color);
   color: #fff;
   border: none;
   border-radius: 30px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
   text-align: center;
   text-decoration: none;
   display: inline-block;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
   /* Sombra suave */
   transition: all 0.3s ease;
   position: relative;
   margin-top: 10px;
   width: auto;
 }

 /* Efectos de hover en el botón */
 .user-btn:hover {
   background-color: #ff4785;
   transform: translateY(-3px);
   /* Efecto de elevación */
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
   /* Más sombra al pasar el mouse */
 }

 .user-btn:active {
   background-color: #e04b74;
   transform: translateY(1px);
   /* Efecto de presión al hacer clic */
 }

 .user-btn a {
   color: #fff;
   text-decoration: none;
   display: block;
   /* Asegura que el enlace cubra todo el área del botón */
 }

 /* Estilo responsivo para pantallas pequeñas */
 @media (max-width: 768px) {
   .user-profile img {
     width: 70px;
     height: 70px;
   }

   .user-profile span {
     font-size: 14px;
   }

   .user-btn {
     padding: 10px 25px;
     font-size: 14px;
   }
 }



 /*MODALLL*/
 /* Estilos del modal */
 /* Estilos del modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}

.modal.show {
  display: block;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-overlay-color);
  opacity: 0.5;
}

.modal-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 1rem;
}

#modalContent{
  border-radius: 0.8em;
  margin-bottom: 1em;
}

.modal-content {
  position: relative;
  background-color: var(--surface-color);
  border-radius: 0.8rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 28rem;
  margin: auto;
  padding: 1.5rem;
  color: var(--default-color);
}

.modal-header {
  margin-bottom: 1.5rem;
  display: contents;
}

.modal-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.terms-content {
  overflow-y: auto;
  max-height: 400px;
  text-align: left;
  color: var(--default-color);
}

.checkbox-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.checkbox-label span {
  font-size: 0.875rem;
  color: var(--default-color);
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.btn {
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  border: none;
  font-family: var(--nav-font);
}

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

.btn-primary:hover {
  background-color: var(--nav-hover-color);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: var(--background-color);
  color: var(--default-color);
}

.btn-secondary:hover {
  background-color: var(--nav-hover-color);
  color: var(--contrast-color);
}

.btn-get-started {
  position: relative;
  cursor: pointer;
}

/* Ocultar el spinner por defecto */
.btn-get-started .spinner {
  display: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 3px solid var(--contrast-color);
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin2 1s linear infinite;
}

/* Clase para cuando el botón está en estado de loading */
.btn-get-started.loading {
  color: transparent !important;
  pointer-events: none;
}

.btn-get-started.loading .spinner {
  display: block;
}

/* Animación del spinner */
@keyframes spin2 {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
 /* Sección Starter - Otros estilos */
 .starter-section {
   /* Añade los estilos de tu sección aquí */
 }