<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Website Guide Section Styles */
.website-guide {
    background-color: var(--white);
    position: relative;
    padding: var(--section-padding);
    padding-top: 5rem;
}

.website-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Siempre 4 columnas en desktop */
    gap: 20px; /* Reducimos el gap para asegurar que entren */
    margin-top: var(--spacing-lg);
    padding-bottom: 20px;
}

.website-type-card {
    background-color: var(--light-gray);
    border-radius: var(--border-radius-md);
    padding: 20px; /* Reducimos el padding para que entre mejor el contenido */
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.website-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.website-type-icon {
    width: 60px; /* Reducimos ligeramente el tamaÃ±o */
    height: 60px;
    background-color: rgba(44, 122, 231, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.website-type-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.website-type-card h3 {
    font-size: 1.2rem; /* Reducimos el tamaÃ±o de fuente */
    margin-bottom: 10px;
    color: var(--text-color);
}

.website-type-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem; /* Reducimos el tamaÃ±o de fuente */
}

.website-type-ideal {
    background-color: rgba(44, 122, 231, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    margin-bottom: 15px;
    flex-grow: 1;
}

.website-type-ideal h4 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.website-type-ideal ul {
    padding-left: 18px;
    margin: 0;
}

.website-type-ideal li {
    color: var(--text-light);
    margin-bottom: 6px;
    font-size: 0.85rem; /* Reducimos el tamaÃ±o de fuente */
}

.website-type-ideal li:last-child {
    margin-bottom: 0;
}

.website-type-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.btn-sm {
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Responsive Styles - Mantenemos las 4 columnas hasta 1200px */
@media (max-width: 1200px) {
    .website-types-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* A partir de 992px cambiamos a 2 columnas */
@media (max-width: 992px) {
    .website-types-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .website-type-card {
        padding: var(--spacing-md); /* Volvemos al padding original */
    }
    
    .website-type-card h3 {
        font-size: 1.4rem; /* Volvemos al tamaÃ±o original */
    }
    
    .website-type-card p, 
    .website-type-ideal li {
        font-size: 0.95rem; /* Volvemos al tamaÃ±o original */
    }
}

@media (max-width: 768px) {
    .website-types-grid {
        grid-template-columns: 1fr;
    }
}
</pre></body></html>