/* Estilos para el recuadro de IA con borde multicolor */
.ai-card-rainbow {
    position: relative;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1;
}

.ai-card-rainbow:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2px; /* Reducido de 3px a 2px para un borde más fino */
    border-radius: 8px;
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    background-size: 300% 300%;
    animation: rainbow 3s ease-in-out infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.translate-x-25 {
    transform: translateX(25%);
}

@keyframes rainbow { 
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mantener los estilos actuales para el elemento ai-highlight */
.ai-highlight {
    position: relative;
    display: inline-block;
    padding: 0.3rem 0.8rem;
    margin: 0 0.2rem;
    border-radius: 4px;
    font-weight: 500;
    z-index: 1;
    color: #333;
    white-space: nowrap;
}

.ai-highlight:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    z-index: -1;
    background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
    background-size: 300% 300%;
    border-radius: 6px;
    animation: rainbow 3s ease-in-out infinite;
}

.ai-highlight:after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    z-index: -1;
    background: white;
    border-radius: 4px;
}

/* Estilos específicos para la página de pricing */
.pricing-banner {
    background: linear-gradient(135deg, #0056b3 0%, #007bff 100%);
}

.pricing-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-amount {
    color: #007bff;
    font-weight: bold;
}

/* Asegurar que el footer ocupe todo el ancho */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

footer {
    width: 100%;
    margin-top: auto;
}

