<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
/* Estilos para botones */
.btn-aloia-primary {
    background: linear-gradient(90deg, #FD6144, #FD3244);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    border: none;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-aloia-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 50, 68, 0.2);
}

.btn-aloia-outline {
    background: white;
    color: #FD3244;
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid #FD3244;
    width: 100%;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-aloia-outline:hover {
    background: rgba(253, 50, 68, 0.05);
}

/* Estilos para inputs */
.form-control {
    border: 1px solid #E5E7EB;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: #FD6144;
    box-shadow: 0 0 0 3px rgba(253, 97, 68, 0.1);
    outline: none;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

/* Estilos para el selector de color */
.color-picker {
    height: 40px;
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    cursor: pointer;
}

/* Estilos para el Ã¡rea de vista previa */
.preview-area {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    min-height: 200px;
    margin-bottom: 20px;
}

/* Estilos para las cards de caracterÃ­sticas */
.feature-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    height: 100%;
    background: white;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #FD6144;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(253, 97, 68, 0.1), rgba(174, 58, 141, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #FD3244;
}

/* Animaciones */
.animate-float {
    animation: float 6s ease-in-out infinite;
}

.shadow-aloia {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

/* Estilos para el header de la pÃ¡gina */
.signature-header {
    background: #161212; /* Color de fondo oscuro como en el hero */
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .signature-header {
        padding: 4rem 0;
    }
}

</pre></body></html>