  :root {
      /* Colores corporativos (ajusta si quieres) */
      --orange: #ff5e00;
      --orange-dark: #e04f00;
      --navy: #011d34;
      --white: #f4f4f4;
      --header-bg: #f3f3f3;
      --muted: #a5a5a5;
      --table-head: #cfcfcf;

      /* Tipografías / tamaños (según tus specs) */
      --h1: 1.5rem;
      /* 24px */
      --h2: 0.875rem;
      /* 14px */
      --text: 0.75rem;
      /* 12px */
      --small: 0.6875rem;
      /* 11px */

      --max-width: 1200px;
  }

  /* Reset muy sencillo */
  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
  }

  html,
  body {
      height: 100%
  }

  body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--navy);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.4;
  }

  /* Top info bar */
  .topbar {
      position: fixed;
      z-index: 1000;
      width: 100%;
      height: 100px;
      background: var(--navy);
      color: var(--white);
      font-size: 0.75rem;
      padding: 0.45rem 1rem;
  }

  .topbar .container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
  }

  .topbar .left,
  .topbar .right {
      display: flex;
      align-items: center;
      gap: 1rem
  }

  .topbar .icon {
      opacity: 0.9;
      font-size: 0.95rem
  }

  .socials {
      width: 20px;
      cursor: pointer;
      display: flex;
      gap: .6rem;
      align-items: center;

  }

  .socials .circle {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 750;
      color: var(--white);
  }

  /* Header / nav */
  header {
      position: fixed;
      z-index: 1000;
      width: 100%;
      top: 40px;
      background: var(--white);
      border-bottom: 1px solid rgba(1, 29, 52, 0.03);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);

  }

  .nav-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.05rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .logo img {
      height: 70px;
      width: auto;
      display: block
  }

  .nav {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      justify-content: center;
      flex: 1;
  }

  .nav a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 0.25rem 0.15rem;
      transition: color 0.3s ease;
  }

  .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--navy);
      transition: width 0.3s ease;
  }

  .nav a:hover {
      color: var(--orange);
      /* o el color que quieras destacar */
  }

  .nav a:hover::after {
      width: 100%;
  }

  .nav a.active {
  color: var(--orange); /* mismo color del hover */
  font-weight: 600; /* un poco más fuerte para destacar */
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* siempre visible */
  height: 2px;
  background: var(--orange);
}



  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      border: 0;
  }

  .btn-primary {
      background: var(--orange);
      color: (--navy);
      box-shadow: 0 6px 18px rgba(255, 94, 0, 0.16);
      transition: transform .18s ease, background .12s;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--orange-dark)
  }

  .btn-ghost {
      background: #011d34;
      border-radius: 6px;
      padding: 0.45rem 0.8rem;
      color: var(--navy);
      font-weight: 600;
  }




  .hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 20px;
    padding-top: 190px;
    padding-bottom: 80px;
    max-width: 1200px;
    margin: auto;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.logo-container {
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.logo-container img {
    height: 150px;
}

.logo-text {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-left: 10px;
}

.logo-subtitle {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
    align-self: flex-end;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #011d34;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.hero-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}

.demo-button {
    background-color: #ffb800;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.demo-button:hover {
    background-color: #c48d01;
    transform: translateY(-2px);
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container img {
    width: 120%;
    height: auto;
    max-width: 800px;
    border-radius: 8px;
}

/* Media Queries para diseño responsive */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        max-width: 100%;
    }

    .logo-container {
        justify-content: center;
        align-items: center;
    }
}





.benefits-section {
    background: linear-gradient(to right, #011d34, #ffb800);
    color: white;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
}

.benefits-header {
    margin-bottom: 50px;
}

.benefits-subtitle {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 10px;
    opacity: 0.8;
}

.benefits-title {
    font-size: 2.5em;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.benefit-icon i {
    color: white;
    font-size: 18px;
}

.benefit-content {
    flex-grow: 1;
}

.benefit-heading {
    font-size: 1.2em;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.benefit-text {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefits-title {
        font-size: 2em;
    }
}




.pricing-section {
    background: #f0f2f5;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-subtitle {
    font-size: 1em;
    font-weight: 500;
    color: #ffb800;
    margin: 0 0 10px 0;
}

.pricing-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.pricing-divider {
    width: 60px;
    height: 3px;
    background-color: #ffb800;
    margin: 15px auto 0;
}

.pricing-cards-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.pricing-card {
    background: linear-gradient(to bottom, #011d34, #ffb800);
    color: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-width: 320px;
    width: 100%;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.card-plan {
    font-size: 1.5em;
    font-weight: bold;
    padding: 25px 0 10px 0;
}

.card-plan-description {
    font-size: 0.9em;
    opacity: 0.8;
    padding: 0 20px 20px 20px;
}

.card-price-container {
    padding-bottom: 20px;
}

.card-price-main {
    font-size: 2.5em;
    font-weight: bold;
}

.card-price-period {
    font-size: 0.7em;
    font-weight: normal;
    opacity: 0.8;
}

.card-price-note {
    font-size: 0.8em;
    font-style: italic;
    margin-top: 5px;
    opacity: 0.7;
}

.card-price-old {
    text-decoration: line-through;
    font-size: 0.9em;
    opacity: 0.6;
    margin-top: 10px;
}

.card-discount {
    background-color: #388e3c;
    font-size: 0.8em;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 5px;
}

.card-price-total {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 10px;
}

.card-button {
    background-color: #f8f9fa;
    color: #333;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px auto;
}

.card-button:hover {
    background-color: #e2e6ea;
    transform: translateY(-2px);
}

.card-features-section,
.card-addons-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-top: 15px;
}

.card-features-title,
.card-addons-title {
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.card-features-list,
.card-addons-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features-list li,
.card-addons-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.card-features-list li i,
.card-addons-list li i {
    color: #4CAF50;
    font-size: 1.2em;
}

.pricing-footer-text {
    text-align: center;
    font-size: 1.1em;
    color: #555;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .pricing-cards-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        margin-bottom: 20px;
    }
}



.details-section {
    background-color: #f8f9fa;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.details-header {
    margin-bottom: 50px;
}

.details-subtitle {
    font-size: 1em;
    font-weight: 500;
    color:#ffb800;
    margin: 0 0 10px 0;
}

.details-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #011d34;
    line-height: 1.2;
    margin: 0;
}

.details-divider {
    width: 60px;
    height: 3px;
    background-color:#ffb800;
    margin: 15px auto 0;
}

.details-table-container {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.details-table-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

th,
td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

th {
    background-color: #f1f3f4;
    font-weight: bold;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9em;
}

td {
    color: #555;
    font-size: 0.9em;
}

td:first-child {
    font-weight: bold;
    text-align: left;
    color: #ffb800;
}

tr:hover {
    background-color: #f8f8f8;
}

i.fa-check {
    color: #4CAF50;
    font-size: 1.1em;
}

.details-footer {
    font-size: 1.2em;
    color: #555;
    margin-top: 40px;
}




.features-section {
    background-color: #f0f2f5;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
}

.features-header {
    margin-bottom: 50px;
}

.features-subtitle {
    font-size: 1em;
    font-weight: 500;
    color: #ffb800;
    margin: 0 0 10px 0;
}

.features-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #011d34;
    line-height: 1.2;
    margin: 0;
}

.features-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #011d34, #ffb800);
    margin: 15px auto 0;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 250px;
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f2f5;
    border-radius: 50%;
}

.feature-icon-container i {
    font-size: 2.5em;
    background: linear-gradient(to right, #011d34, #1e8182);
    -webkit-text-fill-color: transparent;
}

.icon-features{
    width: 40px;
}

.feature-heading {
    font-size: 1.2em;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.feature-description {
    font-size: 0.9em;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        margin-bottom: 20px;
    }
}









  .footer {
      background-color: #011d34;
      color: white;
      padding: 3rem 2rem 1rem;
      font-size: 0.9rem;
  }

  .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
  }

  .footer-logo {
      max-width: 180px;
      margin-bottom: 1rem;
  }

  .footer p {
      margin-bottom: 1rem;
      line-height: 1.5;
  }

  .footer-col h3 {
      margin-bottom: 1rem;
      font-size: 1.1rem;
      font-weight: bold;
  }

  .footer-col ul {
      list-style: none;
      padding: 0;
  }

  .footer-col ul li {
      margin-bottom: 0.5rem;
  }

  .footer-col ul li a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease, padding-left 0.3s ease;
  }

  .footer-col ul li a:hover {
      color: #ff5e00;
      padding-left: 5px;
  }

  /* Contact info */
  .footer-col p i {
      margin-right: 8px;
      color: #ff5e00;
  }

  /* Social icons */
  .footer-socials a {
      display: inline-block;
      margin-right: 12px;
      font-size: 1.2rem;
      color: white;
      transition: transform 0.3s ease, color 0.3s ease;
  }

  .footer-socials a:hover {
      color: #ff5e00;
      transform: scale(1.2);
  }

  /* Bottom */
  .footer-bottom {
      margin-top: 2rem;
      border-top: 1px solid #ff5e00;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
  }

  .footer-bottom a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-bottom a:hover {
      color: #ff5e00;
  }