.accordion {
  margin-bottom: 100px;
}

.accordion .accordion-item {
  background: #f5f5f5;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 8px;
}

.accordion button {
  width: 100%;
  text-align: left;
  padding: 1em;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .accordion-content {
  display: none;  /* oculto al inicio */
  margin-top: 10px;
}


:root {
  --container-width: 1175px;
  --text-primary: #15161b;
  --text-on-primary-button: #fff;
  --text-accent: #0d3cf1;
  --text-accent-hover: #0a30c1;
  --text-secondary-01: #6b7192;
  --text-secondary-02: #898da8;
  --text-secondary-03: #c4c6d4;
  --text-on-color: #fff;
  --text-error: #ff497d;
  --text-warning: #f48b29;
  --text-success: #4bbe8d;
  --surface-accent: #0d3cf1;
  --surface-accent-hover: #0a30c1;
  --surface-secondary-01: #6b7192;
  --surface-secondary-02: #c4c6d4;
  --surface-secondary-03: #e2e3e9;
  --surface-secondary-04: #f4f5fb;
  --surface-secondary-05: #fff;
  --surface-territary: #1c1d20;
  --bg-card-01: #fff;
  --bg-card-02: #f4f5fb;
  --bg-card-03: #f2fafe;
  --bg-card-04: #e5f6ed;
  --bg-card-05: #fff0e2;
  --bg-card-06: #0d3cf1;
  --bg-card-07: #f4f5fb;
  --surface-error: #ff497d;
  --surface-warning: #f48b29;
  --surface-warning2: #f4e029;
  --surface-success: #4bbe8d;
  --surface-tab: #8ae0ff;
  --bg-primary: #fff;
  --bg-secondary: #fbfbfb;
  --lighten-surface-tab: color-mix(in oklab, var(--surface-tab), white 85%);
  --bg-primary-dblue: #15161b;
}

*, *::before, *::after {
  box-sizing: border-box;
}

.bg-primary-dblue {
  background: var(--bg-primary-dblue) !important;
}

.txt-white {
  color: var(--text-on-color) !important;
}

.txt-secundary {
  color: var(--text-secondary-03) !important;
}

.third-space {
  width: 33.33% !important;
}

.space-between {
  justify-content: space-between !important;
}

.container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.center {
  align-items: center;
}

.section-identifier {
  margin-bottom: 60px;
  text-align: center;
}
.section-identifier p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary-01);
  margin: 0 0 10px 0;
}
.section-identifier h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

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

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

.mt-36 {
  margin-top: 36px;
}

.mb-36 {
  margin-bottom: 36px;
}

.pb-36 {
  padding-bottom: 36px;
}

.grid {
  display: grid !important;
  gap: 15px;
}

.gap-36 {
  gap: 36px;
}

.col-2 {
  grid-template-columns: repeat(auto-fit, minmax(calc(var(--container-width) / 2 - 50px), 1fr)) !important;
}

.btn-login, .btn-register {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-primary-button);
  background: var(--surface-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-login:hover, .btn-register:hover {
  background: var(--surface-accent-hover);
}

.btn-login {
  background: var(--bg-card-07);
  color: var(--text-primary);
}
.btn-login:hover {
  background: var(--surface-secondary-03);
}

.a-link a {
  text-decoration: none;
  color: var(--text-secondary-01);
  font-size: 16px;
  font-weight: 600;
  margin: 0 15px;
  transition: color 0.3s ease;
}
.a-link a:hover {
  color: var(--text-accent);
}

.header-col-3 {
  grid-template-columns: 200px calc(100% - 500px) auto;
  justify-content: space-between !important;
}

.bg-surface-warning-light {
  background: color-mix(in oklab, var(--surface-warning2), white 90%) !important;
}

/** 
* @Body
*/
html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-secondary);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
  scroll-behavior: smooth;
}

/** 
* @Application Header
*/
#header, .app-header {
  width: 100%;
  min-height: 74px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  z-index: 10;
  position: sticky;
  top: 0;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .app-header .container {
    grid-template-columns: 1fr auto !important;
    gap: 0 !important;
  }
  .app-header .logo {
    justify-self: start;
  }
  .app-header .nav {
    display: none !important;
  }
  .app-header .header-action {
    justify-self: end;
    display: flex;
    gap: 8px;
  }
}
.shrink {
  min-height: 60px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/** 
* @Application Header
*/
#hero, .hero {
  width: 100%;
  min-height: 600px;
  border-radius: none;
  background: #ffffff;
  background: linear-gradient(162deg, rgb(255, 255, 255) 0%, rgb(245, 245, 245) 50%, rgb(216, 222, 227) 100%);
}
#hero .hero-content, .hero .hero-content {
  padding: 100px 0;
}
#hero .hero-info .hero-title h1, .hero .hero-info .hero-title h1 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
}
#hero .hero-info .hero-description p, .hero .hero-info .hero-description p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary-01);
  margin: 0 0 30px 0;
}
#hero .hero-info .hero-cta button, .hero .hero-info .hero-cta button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-primary-button);
  background: var(--surface-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#hero .hero-info .hero-cta button:hover, .hero .hero-info .hero-cta button:hover {
  background: var(--surface-accent-hover);
}
#hero .hero-info button, .hero .hero-info button {
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-primary-button);
  background: var(--surface-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#hero .hero-info button:hover, .hero .hero-info button:hover {
  background: var(--surface-accent-hover);
}
#hero .hero-list, .hero .hero-list {
  margin: 36px 0;
}
#hero .hero-list ul, .hero .hero-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#hero .hero-list ul li, .hero .hero-list ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}
#hero .hero-list ul li::before, .hero .hero-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--text-accent);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
#hero .hero-list ul li::after, .hero .hero-list ul li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--text-accent);
  border-bottom: 2px solid var(--text-accent);
}
#hero .hero-footer h1, #hero .hero-footer p, .hero .hero-footer h1, .hero .hero-footer p {
  margin: 0 !important;
  padding: 0 !important;
}

.features {
  padding: 100px 0;
}
.features .feature-box {
  width: 100%;
  min-height: 500px;
  background: var(--surface-secondary-04);
  padding: 32px;
  border-radius: 48px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  overflow: hidden;
  position: relative;
}
.features .feature-box:hover img {
  transform: scale(1.1);
}
.features .feature-box-title {
  width: 100%;
}
.features .feature-box-title span {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-accent);
  margin: 0 0 10px 0;
}
.features .feature-box-title h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 20px 0;
}
.features .feature-box-title p {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-secondary-01);
  margin: 0;
}
.features .feature-box-title button {
  margin-top: 20px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-on-primary-button);
  background: var(--surface-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.features .feature-box-title button:hover {
  background: var(--surface-accent-hover);
}
.features .img-right {
  position: relative;
}
.features .img-right img {
  position: absolute;
  right: -150px;
  width: 70%;
  height: auto;
  object-fit: contain;
  grid-column: span 2/auto;
  transition: transform 0.5s ease-in-out;
  transform: scale(1);
}
.features .img-botton-right img {
  width: 55% !important;
  bottom: -50px;
  right: -25px;
}

.services-content {
  padding: 100px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.services-content .service-box {
  background: var(--surface-secondary-04);
  border-radius: 24px;
  padding: 32px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.3s;
}
.services-content .service-box:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.services-content .service-box:hover img {
  transform: scale(1.08);
}
.services-content .service-box img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.3s;
}
.services-content .service-box .service-box-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}
.services-content .service-box p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary-01);
  margin: 0;
}

.footer-ribbon {
  padding: 50px 0;
  background: var(--bg-card-06);
  text-align: center;
}
.footer-ribbon h1,
.footer-ribbon p {
  margin: 0 !important;
  padding: 0 !important;
}
.footer-ribbon h2 {
  color: var(--text-on-color) !important;
}

#app-footer {
  width: 100%;
  background: color-mix(in oklab, var(--surface-accent), black 65%);
  padding-bottom: 32px;
  padding-top: 32px;
}
#app-footer .container {
  width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
#app-footer h1, #app-footer h2, #app-footer h3, #app-footer h4, #app-footer h5, #app-footer h6, #app-footer p {
  color: var(--text-on-color) !important;
}
#app-footer .footer-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-bottom: 36px;
  gap: 24px;
}
#app-footer .footer-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px 0;
}
#app-footer .footer-header p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary-01);
  margin: 0;
}
#app-footer .footer-header .txt-right {
  text-align: right;
}
#app-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(4, minmax(300px, 1fr));
  gap: 32px;
}
#app-footer .footer-content > div:first-child img {
  margin-bottom: 16px;
}
#app-footer .footer-content > div:first-child div {
  margin-bottom: 8px;
}
#app-footer .footer-content > div:first-child a {
  color: var(--text-secondary-01);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
#app-footer .footer-content > div:first-child a:hover {
  color: var(--text-accent);
}
#app-footer .footer-content > div h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}
#app-footer .footer-content > div ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#app-footer .footer-content > div ul li {
  margin-bottom: 10px;
}
#app-footer .footer-content > div ul li a {
  text-decoration: none;
  color: var(--text-secondary-01);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
#app-footer .footer-content > div ul li a:hover {
  color: var(--text-accent);
}

#posts {
  margin-bottom: 100px;
}
#posts .grid {
  display: grid;
  gap: 36px;
}
#posts .grid.col-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
#posts .grid.mt-36 {
  margin-top: 36px;
}
#posts .blog-post {
  background: var(--bg-card-02);
  border-radius: 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s;
}
#posts .blog-post:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
#posts .blog-post img {
  width: 100%;
  height: 200px;
  border-radius: 16px 16px 0 0;
  object-fit: cover;
  margin-bottom: 12px;
  margin-left: 0;
  margin-right: 0;
  margin-top: 0;
  display: block;
}
#posts .blog-post .blog-post-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 24px 24px 24px;
}
#posts .blog-post .blog-post-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}
#posts .blog-post .blog-post-content p {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary-01);
  margin: 0;
  flex-grow: 1;
}
#posts .blog-post .blog-post-content button {
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-on-primary-button);
  background: var(--surface-accent);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}
#posts .blog-post .blog-post-content button:hover {
  background: var(--surface-accent-hover);
}

.spectre {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.spectre.show {
  opacity: 1;
  transform: translateY(0);
}

/**
* @MEDIA QUERIS
*/
@media (max-width: 768px) and (max-width: 991.98px) {
  .container {
    width: 100% !important;
    padding-left: 12px;
    padding-right: 12px;
  }
  .mobile-feature-box {
    min-height: auto !important;
    padding: 48px 24px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-items: baseline !important;
    gap: 20px !important;
  }
  .mobile-feature-box .third-space {
    width: 100% !important;
  }
  .mobile-feature-box .img-right img {
    position: relative !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    grid-column: span 1/auto !important;
    transition: transform 0.5s ease-in-out;
    transform: scale(1) !important;
  }
  .footer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-header .txt-right {
    text-align: left;
  }
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .footer-content > div {
    margin-bottom: 24px;
  }
  .section-identifier {
    margin-bottom: 40px !important;
  }
  .section-identifier p {
    font-size: 16px !important;
    margin: 0 0 8px 0 !important;
  }
  .section-identifier h1 {
    font-size: 28px !important;
    margin: 0 !important;
  }
  .hero .hero-info .hero-title h1 {
    font-size: 28px !important;
    margin: 0 0 16px 0 !important;
  }
  .accordion-title {
    font-size: 16px !important;
  }
  .txt-right {
    text-align: left !important;
  }
  .hero .hero-content {
    padding: 50px 0 !important;
  }
  .hero .hero-content img {
    width: 100% !important;
  }
  .col-2 {
    grid-template-columns: 1fr !important;
  }
  .logo svg {
    width: 140px !important;
  }
}/*# sourceMappingURL=App.css.map */