
.layout-v2-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .layout-v2-header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
  }

  .layout-v2-wrapper {
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 10px;
    padding: 10px;
    min-height: 450px;
    width: 100%;
  }

  .layout-v2-content-area {
    display: flex;
    gap: 5px;
    /* Reducido para minimizar el espacio entre los elementos */
    width: 100%;
    height: auto;
  }

  .layout-v2-main {
    flex: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }

  .layout-v2-sidebar {
    flex: 3;
    display: flex;
    flex-direction: column;
    padding: 10px;
  }

  .layout-v2-sidebar-top {
    display: flex;
    gap: 5px;
    /* Reducido para minimizar el espacio entre las cajas */
    height: auto;
  }

  .layout-v2-sidebar-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    max-width: 100%;
    flex-grow: 1;
    flex-shrink: 1;
    margin-bottom: 5px;
    /* Reducido para menor separación */
  }

  .layout-v2-sidebar-box img {
    max-width: 90%;
    /* Aumentado a 90% para ser más grandes */
    max-height: 90%;
    /* Aumentado a 90% para ser más grandes */
    object-fit: contain;
    display: block;
  }

  .layout-v2-sidebar-bottom {
    height: auto;
    /* Cambiado a auto para adaptarse al contenido */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Eliminado padding para acercar la imagen */
    margin: 0;
    /* Eliminado margen para más cercanía */
  }

  .layout-v2-footer {
    height: auto;
    /* Cambiado a auto para ajustarse al contenido */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    /* Ajustar padding superior e inferior */
  }

  .layout-v2-header img,
  .layout-v2-main img,
  .layout-v2-sidebar-box img,
  .layout-v2-sidebar-bottom img,
  .layout-v2-footer img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }

  /* Estilo específico para la imagen del main content */
  .layout-v2-main img {
    width: 100%;
    /* Aseguramos que ocupe todo el ancho disponible */
    max-height: 250px;
    /* Aumentar la altura máxima en pantallas pequeñas */
  }

  /* Ajuste específico para la imagen del footer */
  .layout-v2-footer img {
    width: 80%;
    /* Ancho ajustado para ser más grande */
    max-height: 100px;
    /* Limitar la altura para no exceder el contenedor */
  }

  @media (max-width: 768px) {
    .layout-v2-wrapper {
      padding: 5px;
      gap: 5px;
    }

    .layout-v2-content-area {
      flex-direction: row;
      /* Mantener el diseño en fila en pantallas pequeñas */
      height: auto;
      gap: 5px;
      /* Reducido para minimizar el espacio entre los elementos */
    }

    .layout-v2-main,
    .layout-v2-sidebar {
      width: 100%;
      height: auto;
      display: flex;
      justify-content: center;
      /* Centra el contenido */
    }

    .layout-v2-sidebar {
      padding: 5px;
      flex-direction: column;
    }

    .layout-v2-sidebar-top {
      flex-direction: row;
      height: auto;
      gap: 5px;
      /* Reducido para minimizar el espacio entre los elementos superiores */
    }

    .layout-v2-sidebar-box {
      height: auto;
      /* Altura automática para adaptarse al contenido */
      width: 100%;
      padding: 0;
      display: flex;
      /* Asegura que el contenido interno esté centrado */
      justify-content: center;
      /* Centra el contenido dentro de cada caja */
      align-items: center;
      /* Centra el contenido verticalmente */
      margin-bottom: 5px;
      /* Reducido para menor separación */
    }

    .layout-v2-header,
    .layout-v2-footer,
    .layout-v2-sidebar-bottom {
      height: 40px;
      /* Altura ajustada a 40px para ser más pequeña */
      padding: 0;
      /* Ajustado para eliminar espacio extra */
    }

    .layout-v2-main {
      height: auto;
      /* Altura automática para la sección principal */
      padding: 5px;
      justify-content: center;
      /* Centra la imagen principal */
    }

    /* Ajuste de la imagen principal en pantallas pequeñas */
    .layout-v2-main img {
      width: 100%;
      /* Cambiado a 100% para ser más grandes en pantallas pequeñas */
      max-height: 250px;
      /* Limitar la altura para no exceder el contenedor */
    }

    /* Ajuste de la imagen del footer en pantallas pequeñas */
    .layout-v2-footer img {
      width: 100%;
      /* Cambiado a 100% para ser más grandes en pantallas pequeñas */
      max-height: 100px;
      /* Limitar la altura para no exceder el contenedor */
    }
  }

  
.hosting-info {
    color: black;
    /* Configura el texto principal en negro */
}

.hosting-info .original-price,
.hosting-info .original-price .desde,
.hosting-info .original-price .old-price {
    color: black;
    /* Asegura el color negro solo para estos elementos */
}

.hosting-info .cta-button {
    color: white;
    /* Mantiene el botón en blanco */
}


.promo-section {
    position: relative;
    padding: 2rem;
    background:
        linear-gradient(to bottom,
            rgba(240, 244, 255, 0.8) 0%,
            rgba(240, 244, 255, 0.8) 80%,
            transparent 100%),
        url('../media/img/descarga.png');
    background-size: cover;
    background-position: center;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: white;
}

/* Desvanecimiento hacia el color #f5f7ff */
.promo-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(245, 247, 255, 1) 100%);
    pointer-events: none;
}

/* Estilos lado izquierdo */
.hosting-info {
    flex: 0 0 50%;
    padding-right: 2rem;
}

.hosting-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    /* Reducido de 2rem */
    line-height: 1;
    /* Agregado para reducir espacio */
}

.features-list {
    margin-bottom: 1rem;
    /* Reducido de 2rem */
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    /* Reducido de 1rem */
    line-height: 1.2;
    /* Agregado para reducir espacio */
}

.check-icon {
    color: #32CD32;
    margin-right: 0.5rem;
    /* Reducido de 1rem */
    font-size: 1.2rem;
}

.feature-text {
    font-size: 1.2rem;
}

/* Estilos de precios actualizados */
.pricing-info {
    margin-top: 1rem;
    /* Reducido de 3rem */
}

.original-price {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    /* Reducido de 0.5rem */
    line-height: 1;
}

.desde {
    color: white;
    margin-right: 0.3rem;
}

.old-price {
    text-decoration: line-through;
    color: #ccc;
}

.current-price {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    margin: 0.2rem 0;
    /* Reducido de 1rem */
}

.currency {
    font-size: 3rem;
}

.main-price {
    font-size: 5rem;
}

.decimals {
    font-size: 3rem;
    vertical-align: super;
}

.period {
    font-size: 2rem;
}

.currency-note {
    margin: 0.2rem 0 1rem;
    /* Reducido de 0.5rem 0 1.5rem */
    font-size: 1.5rem;
}

.cta-button {
    display: inline-block;
    background: #539bf7;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2e8afe;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ajusta la imagen al contenedor sin distorsionarla */
}

/* Estilos lado derecho - Contenedores para imágenes */
.discount-banner {
    flex: 0 0 55%;
    position: relative;
    height: 460px;
    margin-top: -40px;
    /* Ajusta el valor según sea necesario */
}


.banner-container {
    position: relative;
    height: 100%;
    min-height: 600px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.image-container {
    position: absolute;

}

/* Posicionamiento de los elementos */
.hasta-container {
    top: 5%;
    left: 5%;
    width: 20%;
    height: 15%;
}

.number-container {
    top: 20%;
    left: 5%;
    width: 50%;
    height: 45%;
}

.percent-container {
    top: 20%;
    left: 53%;
    /* Alineado justo a la derecha del "50" */
    width: 15%;
    /* Aumentado el tamaño del % */
    height: 30%;
    /* Más grande para el símbolo de % */
}

.off-container {
    top: 45%;
    /* Alineado debajo del porcentaje */
    left: 55%;
    /* Alineado a la derecha también */
    width: 30%;
    /* Más grande para el texto "OFF" */
    height: 20%;
}

.clock-container {
    top: 18%;
    /* Alineado verticalmente con el % */
    left: 55%;
    /* Alineado al lado del % */
    width: 50%;
    /* Mismo tamaño que el % */
    height: 30%;
    /* Mismo tamaño que el % */
}

.limited-offer-container {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Cambiado de hidden a visible */
    z-index: 10; /* Asegura que el contenedor esté al frente */
}

.limited-offer-icon {
    width: 100%;
    height: auto;
    margin-top: -185px;
    position: relative;
    z-index: 11; /* Un número mayor que el contenedor */
}

/* Ajustes para pantallas pequeñas */
@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
    }

    .hosting-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .discount-banner {
        height: 500px;

    }

    .banner-container {
        min-height: 500px;
    }
}


        .layout-v2-container {
          width: 100%;
          max-width: 1200px;
          margin: 0 auto;
        }

        .layout-v2-header {
          height: 60px;
          display: flex;
          align-items: center;
          justify-content: flex-start;
          padding: 5px;
        }

        .layout-v2-wrapper {
          display: grid;
          grid-template-rows: auto 1fr auto;
          gap: 10px;
          padding: 10px;
          min-height: 450px;
          width: 100%;
        }

        .layout-v2-content-area {
          display: flex;
          gap: 5px;
          /* Reducido para minimizar el espacio entre los elementos */
          width: 100%;
          height: auto;
        }

        .layout-v2-main {
          flex: 3;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 5px;
        }

        .layout-v2-sidebar {
          flex: 3;
          display: flex;
          flex-direction: column;
          padding: 10px;
        }

        .layout-v2-sidebar-top {
          display: flex;
          gap: 5px;
          /* Reducido para minimizar el espacio entre las cajas */
          height: auto;
        }

        .layout-v2-sidebar-box {
          flex: 1;
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          max-width: 100%;
          flex-grow: 1;
          flex-shrink: 1;
          margin-bottom: 5px;
          /* Reducido para menor separación */
        }

        .layout-v2-sidebar-box img {
          max-width: 90%;
          /* Aumentado a 90% para ser más grandes */
          max-height: 90%;
          /* Aumentado a 90% para ser más grandes */
          object-fit: contain;
          display: block;
        }

        .layout-v2-sidebar-bottom {
          height: auto;
          /* Cambiado a auto para adaptarse al contenido */
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          /* Eliminado padding para acercar la imagen */
          margin: 0;
          /* Eliminado margen para más cercanía */
        }

        .layout-v2-footer {
          height: auto;
          /* Cambiado a auto para ajustarse al contenido */
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 5px 0;
          /* Ajustar padding superior e inferior */
        }

        .layout-v2-header img,
        .layout-v2-main img,
        .layout-v2-sidebar-box img,
        .layout-v2-sidebar-bottom img,
        .layout-v2-footer img {
          max-width: 100%;
          max-height: 100%;
          width: auto;
          height: auto;
          object-fit: contain;
          display: block;
        }

        /* Estilo específico para la imagen del main content */
        .layout-v2-main img {
          width: 100%;
          /* Aseguramos que ocupe todo el ancho disponible */
          max-height: 250px;
          /* Aumentar la altura máxima en pantallas pequeñas */
        }

        /* Ajuste específico para la imagen del footer */
        .layout-v2-footer img {
          width: 80%;
          /* Ancho ajustado para ser más grande */
          max-height: 100px;
          /* Limitar la altura para no exceder el contenedor */
        }

        @media (max-width: 768px) {
          .layout-v2-wrapper {
            padding: 5px;
            gap: 5px;
          }

          .layout-v2-content-area {
            flex-direction: row;
            /* Mantener el diseño en fila en pantallas pequeñas */
            height: auto;
            gap: 5px;
            /* Reducido para minimizar el espacio entre los elementos */
          }

          .layout-v2-main,
          .layout-v2-sidebar {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
            /* Centra el contenido */
          }

          .layout-v2-sidebar {
            padding: 5px;
            flex-direction: column;
          }

          .layout-v2-sidebar-top {
            flex-direction: row;
            height: auto;
            gap: 5px;
            /* Reducido para minimizar el espacio entre los elementos superiores */
          }

          .layout-v2-sidebar-box {
            height: auto;
            /* Altura automática para adaptarse al contenido */
            width: 100%;
            padding: 0;
            display: flex;
            /* Asegura que el contenido interno esté centrado */
            justify-content: center;
            /* Centra el contenido dentro de cada caja */
            align-items: center;
            /* Centra el contenido verticalmente */
            margin-bottom: 5px;
            /* Reducido para menor separación */
          }

          .layout-v2-header,
          .layout-v2-footer,
          .layout-v2-sidebar-bottom {
            height: 40px;
            /* Altura ajustada a 40px para ser más pequeña */
            padding: 0;
            /* Ajustado para eliminar espacio extra */
          }

          .layout-v2-main {
            height: auto;
            /* Altura automática para la sección principal */
            padding: 5px;
            justify-content: center;
            /* Centra la imagen principal */
          }

          /* Ajuste de la imagen principal en pantallas pequeñas */
          .layout-v2-main img {
            width: 100%;
            /* Cambiado a 100% para ser más grandes en pantallas pequeñas */
            max-height: 250px;
            /* Limitar la altura para no exceder el contenedor */
          }

          /* Ajuste de la imagen del footer en pantallas pequeñas */
          .layout-v2-footer img {
            width: 100%;
            /* Cambiado a 100% para ser más grandes en pantallas pequeñas */
            max-height: 100px;
            /* Limitar la altura para no exceder el contenedor */
          }
        }


          
          /* Contenedor principal del contenido */
          .main-content {
            position: relative;
            display: flex;
            align-items: flex-start;
        }

        /* Nuevo fondo */
        .background-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg,
                    #ffffff 0%,
                    #deedfd 90%);

        }

        /* Contenedor principal */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            position: relative;
            padding-top: 5vh;
        }

        /* Sección de contenido */
        .content {
            flex: 1;
            padding-right: 2rem;
        }

        .subtitle {
            color: #666;
            margin-bottom: 1rem;
        }

        .title {
            font-size: 2.5rem;
            color: #333;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .description {
            color: #555;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        /* Botón de inicio */
        .start-button {
            background-color: #3e7fcf;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 15px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background-color 0.3s;
            display: inline-block;
            text-decoration: none;
            margin-bottom: 1.5rem;
        }

        .start-button:hover {
            background-color: #3b71c1;
        }

        /* Características adicionales */
        .features {
            color: #666;
            font-size: 0.9rem;
        }

        .features-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .features-item::before {
            content: "✓";
            color: #3e7fcf;
            margin-right: 0.5rem;
        }

        /* Sección de imagen */
        .image-section {
            flex: 1;
            position: relative;
        }

        .main-image {
            width: 100%;
            max-width: 500px;
            position: relative;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 1rem;
            }

            .main-content {
                padding-top: 60px;
                /* Altura reducida de la navbar en móvil */
            }

            .background-wrapper {
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }

            .container {
                flex-direction: column;
                text-align: center;
                padding: 1rem;
                padding-top: 3vh;
            }

            .content {
                padding-right: 0;
                margin-bottom: 2rem;
            }

            .title {
                font-size: 2rem;
            }

            .features-item {
                justify-content: center;
            }

            .image-section {
                width: 100%;
                max-width: 400px;
                margin: 0 auto;
            }

            .floating-tag {
                position: static;
                display: inline-block;
                margin: 0.5rem;
            }
        }

        /* Media query para pantallas muy altas */
        @media (min-height: 1000px) {
            .container {
                padding-top: 8vh;
            }
        }

        /* Media query para pantallas muy pequeñas */
        @media (max-height: 600px) {
            .container {
                padding-top: 2vh;
            }
        }

        /* - soporte - validos SUNAT  */
        .benefits-section {
            z-index: 1;
            display: flex;
            justify-content: center;
            /* Ajuste de centrado */
            align-items: center;
            padding: 40px 0;
            /* Subir la sección */
            margin-top: -75px;
            background-color: #ffffff;
        }

        .benefit-card {
            z-index: 2;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
            padding: 20px;
            text-align: center;
            width: 270px;
            /* Ancho */
            margin: 0 40px;
            /* Reducir espacio entre tarjetas */
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
        }

        .benefit-card .icon {
            font-size: 50px;
            /* Tamaño de los íconos de Font Awesome */
            color: #3b72ea;
            /* Color del ícono */
            margin-bottom: 15px;
        }

        .benefit-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
            color: #333;
        }

        .benefit-card p {
            font-size: 14px;
            color: #555;
        }

        @media (max-width: 768px) {
            .benefits-section {
                flex-direction: column;
                gap: 20px;
            }
        }

        /* Sección 02 */
        .subtem1 {
            text-align: center;
        }

        .alegra-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        /* Texto y contenido */
        .alegra-content {
            flex: 1;
            padding-right: 2rem;
            max-width: 600px;
        }

        .subtem1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .alegra-highlight {
            font-weight: bold;
            color: #184fae;
            /* Color oscuro */
        }

        .alegra-highlight-secondary {
            font-weight: bold;

            color: #184fae;
            /* Color más claro */
        }

        .alegra-description h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .alegra-description ul {
            list-style: none;
            margin-bottom: 1rem;
        }

        .alegra-description ul li {
            position: relative;
            margin-bottom: 0.5rem;
            padding-left: 1.5rem;
            font-size: 1rem;
        }

        .alegra-description ul li:before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #38b2ac;
            font-size: 1.2rem;
        }

        .alegra-description p {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .alegra-cta-button {
            background-color: #2b63c4;
            color: #fff;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: background-color 0.3s ease;
            font-size: 1rem;
        }

        .alegra-cta-button:hover {
            background-color: #295aae;
        }

        /* Imagen */
        .alegra-image-container {
            flex: 1;
            text-align: right;
        }

        .alegra-dashboard-image {
            max-width: 100%;
            height: auto;
        }

        /* Responsividad */
        @media (max-width: 768px) {
            .alegra-section {
                flex-direction: column;
                text-align: center;
            }

            .alegra-content {
                padding-right: 0;
            }

            .alegra-image-container {
                margin-top: 2rem;
                text-align: center;
            }
        }

        /* Carrucel clientes */
        .clients-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Contenedor principal del carrusel */
        .carousel-container {
            width: 80%;
            margin: 0 auto;
            overflow: hidden;
            padding: 20px 0;
            position: relative;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
        }

        .carousel-container:active {
            cursor: grabbing;
        }

        /* Contenedor de los logos */
        .logo-track {
            display: flex;
            width: calc(200px * 26);
            position: relative;
            transition: transform 0.1s ease-out;
        }

        /* Contenedor individual de cada logo */
        .logo-slide {
            width: 200px;
            padding: 20px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            /* Centrar verticalmente */
            justify-content: center;
            /* Centrar horizontalmente */
        }

        /* Estilos de la imagen del logo */
        .logo-image {
            width: 100%;
            height: auto;
            object-fit: contain;
            pointer-events: none;
            -webkit-user-drag: none;
        }

        /* Estilos responsivos */
        @media (max-width: 768px) {
            .clients-section {
                padding: 10px;
            }

            .carousel-container {
                width: 90%;
            }

            .logo-slide {
                width: 150px;
            }

            .logo-track {
                width: calc(150px * 26);
            }
        }

        @media (max-width: 480px) {
            .carousel-container {
                width: 95%;
            }

            .logo-slide {
                width: 120px;
            }

            .logo-track {
                width: calc(120px * 26);
            }
        }

        /*! ===== Preguntas Frecuentes ===== */
        /* Variables globales */
        :root {
            --primario: #2962ff;
            --secundario: #0039cb;
            --gris-claro: #bfd2f3;
            --gris-oscuro: #424242;
            --sombra: 0 6px 12px rgba(0, 0, 0, 0.1);
            --transicion: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Contenedor principal de preguntas frecuentes */
        .pregunta-frecu {
            max-width: 1200px;
            width: 95%;
            margin: 3rem auto;
            padding: 2rem;
            background: #ffffff;
            border-radius: 1rem;
            box-shadow: var(--sombra);
        }

        /* Estilos del título */
        .subtem1 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            color: var(--gris-oscuro);
        }

        .alegra-highlight {
            color: var(--primario);
        }

        /* Grid de categorías */
        .categorias {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        /* Estilos de cada categoría */
        .categoria {
            cursor: pointer;
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.5rem;
            transition: var(--transicion);
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 2px solid transparent;
        }

        .categoria:hover {
            transform: translateY(-5px);
            box-shadow: var(--sombra);
        }

        .categoria svg {
            width: 3rem;
            height: 3rem;
            margin-bottom: 1rem;
            transition: var(--transicion);
        }

        .categoria path {
            fill: var(--gris-oscuro);
            transition: var(--transicion);
        }

        .categoria p {
            font-weight: 600;
            margin: 0;
            color: var(--gris-oscuro);
        }

        /* Estados activos */
        .categoria.activa {
            border-color: var(--primario);
            background: rgba(41, 98, 255, 0.05);
        }

        .categoria.activa path {
            fill: var(--primario);
        }

        .categoria.activa p {
            color: var(--primario);
        }

        /* Contenedor de preguntas y respuestas */
        .contenedor-preguntas {
            display: none;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .contenedor-preguntas.activo {
            display: grid;
        }

        /* Estilos de cada pregunta */
        .contenedor-pregunta {
            background: #ffffff;
            border-radius: 1rem;
            padding: 1.5rem;
            transition: var(--transicion);
            border: 1px solid var(--gris-claro);
        }

        .contenedor-pregunta:hover {
            box-shadow: var(--sombra);
        }

        .contenedor-pregunta.activa {
            border-color: var(--primario);
        }

        /* Estilos del texto de pregunta */
        .pregunta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--gris-oscuro);
            margin: 0;
            padding: 0;
        }

        .pregunta img {
            width: 1rem;
            height: 1rem;
            transition: var(--transicion);
        }

        /* Estilos de la respuesta */
        .respuesta {
            height: 0;
            overflow: hidden;
            opacity: 0;
            transition: var(--transicion);
            color: var(--gris-oscuro);
            line-height: 1.6;
            margin: 0;
        }

        .contenedor-pregunta.activa .respuesta {
            height: auto;
            opacity: 1;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--gris-claro);
        }

        .contenedor-pregunta.activa img {
            transform: rotate(45deg);
        }

        /* Diseño responsive */
        @media screen and (max-width: 992px) {
            .categorias {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media screen and (max-width: 768px) {
            .pregunta-frecu {
                width: 100%;
                padding: 1.5rem;
            }

            .categoria {
                flex-direction: row;
                justify-content: flex-start;
                padding: 1rem;
            }

            .categoria svg {
                width: 2rem;
                height: 2rem;
                margin: 0 1rem 0 0;
            }

            .contenedor-pregunta {
                padding: 1rem;
            }
        }

        @media screen and (max-width: 576px) {
            .categorias {
                grid-template-columns: 1fr;
            }

            .subtem1 {
                font-size: 2rem;
            }

            .pregunta {
                font-size: 1rem;
            }
        }

        /* Animaciones */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contenedor-preguntas.activo {
            animation: fadeIn 0.3s ease-in-out;
        }



        /* inicio hosting */

        /* Estilos adicionales para la sección de precios */
        .pricing-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .pricing-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .pricing-title h2 {
            font-size: 2.5em;
            color: #333;
            margin-bottom: 15px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .pricing-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 30px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.popular::before {
            content: "Popular";
            position: absolute;
            top: 20px;
            right: -35px;
            background: #0072ff;
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8em;
        }

        .plan-name {
            font-size: 1.5em;
            color: #333;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .plan-price {
            font-size: 2.5em;
            color: #0072ff;
            margin-bottom: 20px;
            font-weight: bold;
        }

        .plan-price span {
            font-size: 0.4em;
            color: #666;
        }

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

        .features-list li {
            padding: 10px 0;
            color: #666;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .features-list li::before {
            content: "✓";
            color: #0072ff;
            font-weight: bold;
        }

        .buy-button {
            display: block;
            width: 100%;
            padding: 15px;
            background: #0072ff;
            color: white;
            text-align: center;
            border-radius: 8px;
            margin-top: 30px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .buy-button:hover {
            background: #005ad1;
        }

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

        /* fin hosting */
